We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fit_generator
1 parent 2eb584a commit 486b05cCopy full SHA for 486b05c
README.rst
@@ -94,6 +94,8 @@ Simple training pipeline
94
model.compile('Adam', loss=bce_jaccard_loss, metrics=[iou_score])
95
96
# fit model
97
+ # if you use data generator use model.fit_generator(...) instead of model.fit(...)
98
+ # more about `fit_generator` here: https://keras.io/models/sequential/#fit_generator
99
model.fit(
100
x=x_train,
101
y=y_train,
0 commit comments