Which model to choose during training?

What’s the correct way to choose the epoch with the best model? Do i have to choose the epoch when the model yielded the lower validation loss?

Thank you.

Typically you would select the epoch at which either the best validation loss occurred or when the model has converged. There’s no “has to”, but we do generally use the validation set to determine which model is best.