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
out = model.fit(x_train, y_train,
File ".../lib/python3.9/site-packages/keras/src/utils/traceback_utils.py", line 70, in error_handler
raise e.with_traceback(filtered_tb) from None
File ".../lib/python3.9/site-packages/keras/src/engine/data_adapter.py", line 275, in __init__
self._size = int(math.ceil(num_samples / batch_size))
TypeError: unsupported operand type(s) for /: 'int' and 'list'
0%| | 0/192 [00:00<?, ?it/s]
when model.fit(batch_size=params['batch_size']), then 'batch_size' param not support list, even latest keras version v3.3.3:
batch_size: Integer or `None`.
Number of samples per gradient update.
If unspecified, `batch_size` will default to 32.
Do not specify the `batch_size` if your data is in the
form of datasets, generators, or `keras.utils.PyDataset`
instances (since they generate batches).
Is there a problem with my configuration?
The text was updated successfully, but these errors were encountered:
1) Confirm the below
2) Include the output of:
talos.__version__
1.4
3) Explain what actually happened
keras version: 2.14.0
log:
when
model.fit(batch_size=params['batch_size'])
, then 'batch_size' param not support list, even latest keras version v3.3.3:Is there a problem with my configuration?
The text was updated successfully, but these errors were encountered: