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
In Keras-implemented neural net, to avoid recompile, initial weights after compilation is saved and used at the next beginning of training in cross validation. However, the initial weights are same in all fold-training. So initial weights should be changed at each training.
A possible solution is passing the argument of compilation (e.g., optimizer, loss, and metrics).
In binary_class.py,
In Keras-implemented neural net, to avoid recompile, initial weights after compilation is saved and used at the next beginning of training in cross validation. However, the initial weights are same in all fold-training. So initial weights should be changed at each training.
A possible solution is passing the argument of compilation (e.g., optimizer, loss, and metrics).
In binary_class.py,
In base.py,
But this approach leads memory consumption...
The text was updated successfully, but these errors were encountered: