Skip to content
Discussion options

You must be logged in to vote

Hi, this is because of early stopping. The performance of the model on the validation set is being computed after each epoch, and once the performance stops improving, training will be stopped. This prevents overfitting and reduces the training time. Early stopping can be configured from the config.yaml. The parameters are:

  • patience: How many epochs without an improvement before early stopping will be triggered.
  • metric: Which performance metric should be monitored as stopping criterion.
  • mode [min/max]: Specifies if the monitored metric should be minimized or maximized.

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@chenmo2
Comment options

Answer selected by samet-akcay
Comment options

You must be logged in to vote
1 reply
@chenmo2
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #316 on May 16, 2022 11:32.