Open
Description
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