Choosing number of Steps per Epoch

前端 未结 3 607
天涯浪人
天涯浪人 2021-01-30 15:25

If I want to train a model with train_generator, is there a significant difference between choosing

  • 10 Epochs with 500 Steps each

and

  • 100
3条回答
  •  悲&欢浪女
    2021-01-30 15:36

    The Steps per epoch denote the number of batches to be selected for one epoch. If 500 steps are selected then the network will train for 500 batches to complete one epoch. If we select the large number of epochs it can be computational

提交回复
热议问题