dashboard
repositories
filestore
activity
search
login
projects
/
heating-controller
Heating controller with neural thermal model written in Python
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
Initial commit
Jacek Kowalski
2018-06-24
425bf71fc0b24b547006686d83404c54b983de0b
[projects/heating-controller]
/
test_design.sh
1
2
3
4
5
6
7
#!/bin/bash
FILE=results/design/design_`date +%Y%m%dT%H%M%S`
for model in neural neural_half neural_relu neural_hqh; do
./test_design.py --file 1_data/xx00 --weather 0_data/weather_export.json --aggregate 15 --model-past 10 --model-future 10 --model-type $model --model-epochs 300 | grep RESULT >> $FILE
done