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