We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unable to fit the CNN to training data
history_1 = model_1.fit(train_data,
coming up as error line in code. would appreciate any help you can give in solving this error.
Paul.
The text was updated successfully, but these errors were encountered:
SAME PROBLEM BUT NOT GETTING HEPL
Sorry, something went wrong.
In this line try to use validation_batch_size instead of validation_steps
model_1.fit(train_data, epochs=5, steps_per_epoch=len(train_data), validation_data=valid_data, validation_steps =len(valid_data))
validation_batch_size instead of validation_steps works! thanks Ivan & wantedskorp
No branches or pull requests
unable to fit the CNN to training data
Fit the model
history_1 = model_1.fit(train_data,
coming up as error line in code. would appreciate any help you can give in solving this error.
Paul.
The text was updated successfully, but these errors were encountered: