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
can you please tell me why did you used : TEST_SIZE = 30 in code
probabilities = model.predict_generator(test_generator, TEST_SIZE)
The text was updated successfully, but these errors were encountered:
Hi, @Kishore-Dev-bit, Basically test size is given when we have large dataset and we don't want to train our mode on all of our observation.
So, we use test_size to train our model quickly and see the loss and accuracy.
Sorry, something went wrong.
No branches or pull requests
can you please tell me why did you used : TEST_SIZE = 30 in code
probabilities = model.predict_generator(test_generator, TEST_SIZE)
The text was updated successfully, but these errors were encountered: