Heating controller with neural thermal model written in Python
Jacek Kowalski
2018-06-24 66a9fb40efe1311b34a3cee3f83f10c6990759af
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
 
FILE=results/extend/extend_`date +%Y%m%dT%H%M%S`
 
for values in 1 5 10 15; do
    for model_args in '--model-type linear' '--model-type neural --model-epochs 300'; do
        ./test_extend.py --file 1_data/xx00 --weather 0_data/weather_export.json --model-past $values --model-future $values $model_args | grep RESULT >> $FILE
 
        for aggregation in 5 15; do
            ./test_extend.py --file 1_data/xx00 --weather 0_data/weather_export.json --aggregate $aggregation --model-past $values --model-future $values $model_args | grep RESULT >> $FILE
        done
    done
done