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