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
In notebook 3,
every model training process where .fit(train_data_augmented_shuffled, # we're fitting on augmented and shuffled data now epochs=5, steps_per_epoch=len(train_data_augmented_shuffled), validation_data=test_data, validation_steps=len(test_data) )
is giving issue
`AttributeError Traceback (most recent call last)
---> 32 mod_7 = model7.fit(train_data_augmented_shuffled, # we're fitting on augmented and shuffled data now
AttributeError: 'NoneType' object has no attribute 'items'`.
Reproducing issue:
just open and run the file in colab
The text was updated successfully, but these errors were encountered:
In notebook 3,
every model training process where
.fit(train_data_augmented_shuffled, # we're fitting on augmented and shuffled data now epochs=5, steps_per_epoch=len(train_data_augmented_shuffled), validation_data=test_data, validation_steps=len(test_data) )
is giving issue
`AttributeError Traceback (most recent call last)
---> 32 mod_7 = model7.fit(train_data_augmented_shuffled, # we're fitting on augmented and shuffled data now
AttributeError: 'NoneType' object has no attribute 'items'`.
Reproducing issue:
The text was updated successfully, but these errors were encountered: