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
code train_CNN_RNN.py what do numbers 56021 and 3974 indicate ? Is it number of images?
for x,y in train_generator:
if batch == (56021/batch_size):
for x,y in validation_generator:
if batch == (3974/batch_size):
When I execute code train_CNN_RNN.py I receive error
File "train_CNN_RNN.py", line 53, in extract_features_and_store
if x_generator==None:
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
The text was updated successfully, but these errors were encountered:
for x,y in train_generator:
if batch == (56021/batch_size):
for x,y in validation_generator:
if batch == (3974/batch_size):
File "train_CNN_RNN.py", line 53, in extract_features_and_store
if x_generator==None:
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
The text was updated successfully, but these errors were encountered: