Could anyone explain what 60000 stands for in the following code?
training_images=training_images.reshape(60000, 28, 28, 1)
Could anyone explain what 60000 stands for in the following code?
training_images=training_images.reshape(60000, 28, 28, 1)
Hi @Zelin_Ren ,
it’s the batch size, the number of images in training_images.
Best
I see. Thanks a lot for the answer!