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/design2/design_`date +%Y%m%dT%H%M%S`
4
5 for model in neural neural_less neural_more; do
6     for values in {1..10}; do
7         ./test_design_2.py --file 1_data/xx00 --aggregate 15 --model-past $values --model-type $model --model-epochs 300 | grep RESULT >> $FILE
8     done
9 done