Reputation: 253
I'm loading the MNIST data into Google Colab, which I can see is about 60,000 samples
But for some reason it will only train on 1875 samples:
What is going on here?
Upvotes: 1
Views: 162
Reputation: 419
1875 is not the number of samples, it is number of steps.
Keras uses batches to train and default batch size is 32.
60000 / 32 = 1875
Upvotes: 1