image_classifier
image_classifier copied to clipboard
about TEST_SIZE = 30
can you please tell me why did you used : TEST_SIZE = 30 in code
probabilities = model.predict_generator(test_generator, TEST_SIZE)
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.