stfpm model #319
-
hello,I would like to ask why my model is STFPM and MAX_EPOCH chooses 100, but the epoch will be random during training, sometimes ending in 13 epoch and sometimes 16 epoch? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
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
|
Beta Was this translation helpful? Give feedback.
-
Thank you very much for your help |
Beta Was this translation helpful? Give feedback.
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: