What is Epoch? in Machine Learning

An epoch is a pass through all of the batches (subsets) of your dataset so that you’ve run all your examples through the model once. So if you have a set of data that you want to pass through 5 total times (in batches or all at once), you would run 5 epochs.

:slight_smile: