Added commentaries to server code

This commit is contained in:
Radu C. Martin 2021-07-31 18:03:03 +02:00
parent f4e1c4f649
commit 6144c9cd56
2 changed files with 28 additions and 114 deletions

View file

@ -21,6 +21,13 @@ from controllers import *
from time import sleep
####################
# Define dict_cols #
####################
# dict_cols is used to compute the autoregressive lags that are passed to the GP
# model at training/evaluation.
t_cols = []
w_cols = ['SolRad', 'OutsideTemp']
u_cols = ['SimulatedHeat']