You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Its true we have to condiser about that
I ran the code with mnist 10000 rows without batch, and my mac was really stressful about that.
So we have to introduce batch size
But i think not now, we need to concentrate building whole project first
Using all train data or test data to run model can be heavy.
It can occurs resource error because of memory capability.
So, We need to use BATCH SIZE.
For example, the number of train data is 100000.
We can batch 100 times with BATCH_SIZE = 1000.
See https://github.com/taeguk/tensorflow-study/blob/master/MNIST/cnn.py#L159,L171
The text was updated successfully, but these errors were encountered: