Skip to content

Commit bfc6a25

Browse files
fuzzythecatfchollet
authored andcommitted
Remove batch_size when doing stepwise fit (keras-team#10144)
`batch_size` is always `None` , because `steps_per_epoch` and `batch_size` are mutually exclusive. Passing batch_size seems irrelevant as `None` is its default value in `test_loop`
1 parent ba6f494 commit bfc6a25

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

keras/engine/training_arrays.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ def fit_loop(model, f, ins,
157157

158158
if do_validation:
159159
val_outs = test_loop(model, val_f, val_ins,
160-
batch_size=batch_size,
161160
steps=validation_steps,
162161
verbose=0)
163162
if not isinstance(val_outs, list):

0 commit comments

Comments
 (0)