In tensorflow get started code:
I know what batch_size means, but what do num_epochs and steps mean respectively when there are only 4 training examples? |
|||||||||||||||||
|
An epoch means using the whole data you have. A step means using a single batch data. So, According to https://www.tensorflow.org/api_docs/python/tf/contrib/learn/Trainable,
|