image_classifier icon indicating copy to clipboard operation
image_classifier copied to clipboard

about TEST_SIZE = 30

Open Kishore-Dev-bit opened this issue 6 years ago • 1 comments

can you please tell me why did you used : TEST_SIZE = 30 in code

probabilities = model.predict_generator(test_generator, TEST_SIZE)

Kishore-Dev-bit avatar Jan 22 '20 13:01 Kishore-Dev-bit

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.

YASHGUPTA2611 avatar Jun 28 '21 05:06 YASHGUPTA2611