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
Copy file name to clipboardExpand all lines: docs/sources/models.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ model = keras.models.Sequential()
12
12
- __optimizer__: str (name of optimizer) or optimizer object. See [optimizers](optimizers.md).
13
13
- __loss__: str (name of objective function) or objective function. See [objectives](objectives.md).
14
14
- __class_mode__: one of "categorical", "binary". This is only used for computing classification accuracy or using the predict_classes method.
15
+
- __theano_mode__: A `theano.compile.mode.Mode` instance controlling specifying compilation options.
15
16
-__fit__(X, y, batch_size=128, nb_epoch=100, verbose=1, validation_split=0., validation_data=None, shuffle=True, show_accuracy=False): Train a model for a fixed number of epochs.
0 commit comments