Comparison between Steps and Epochs in TensorFlow - Python for Integrated Circuits - - An Online Book - |
||||||||
Python for Integrated Circuits http://www.globalsino.com/ICs/ | ||||||||
Chapter/Index: Introduction | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | Appendix | ||||||||
================================================================================= Comparison between steps and epochs are: A training set is usually divided into N mini-batches. Therefore, each step goes through one batch and you will need N steps to complete a full epoch. In most models, there is a steps parameter indicating the number of steps to run over data. With a Keras model for training, the significance of the .fit() method is that it can define the number of epochs. ============================================
|
||||||||
================================================================================= | ||||||||
|
||||||||