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
I use sgd for training and I don't get the diagnostic messages of the trainer for some reason and I do not know what am I doing wrong:
e = Experiment(Regressor,
layers=(input_layer, hidden1, output_layer),
train_batches = 100,
optimize='sgd')
The text was updated successfully, but these errors were encountered:
Ah, you probably need to enable logging for your program. (By default the Python logging package does not show any output on stdout or stderr.) You can do this in any number of ways, but I think the easiest is:
import climate
climate.enable_default_logging()
The climate package is a small wrapper around the logging package; it should already be installed along with theanets. The above lines are in examples/utils.py, which is why the example scripts show the logging output.
I use sgd for training and I don't get the diagnostic messages of the trainer for some reason and I do not know what am I doing wrong:
e = Experiment(Regressor,
layers=(input_layer, hidden1, output_layer),
train_batches = 100,
optimize='sgd')
The text was updated successfully, but these errors were encountered: