You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting the model option in the json config file to LinReg, the program throws an error of self.train_y0 not being defined. This is because self.train_y0 is only defined when the model is set to CellBox, as the build function in CellBox instantiates self.train_y0. Otherwise, in other models, self.train_y0 is never instantiated. This also applies to self.monitor_y0 and self.eval_y0.
The text was updated successfully, but these errors were encountered:
When setting the
model
option in the json config file toLinReg
, the program throws an error ofself.train_y0
not being defined. This is becauseself.train_y0
is only defined when the model is set toCellBox
, as thebuild
function inCellBox
instantiatesself.train_y0
. Otherwise, in other models,self.train_y0
is never instantiated. This also applies toself.monitor_y0
andself.eval_y0
.The text was updated successfully, but these errors were encountered: