Epoch - AshokBhat/ml GitHub Wiki
Description
- An epoch is one pass through the training set by a machine learning algorithm.
- Each example will be seen only once
Relation to other parameters
- An epoch represents
(
N/
batch size)
training iterations - N is the total number of examples
- batch-size is the number of examples in one iteration.
FAQ
- What is epoch?
- What is the relation between epoch and batch size?
- How is epoch relevant to training?