Skip to content
Advertisement

How to see the loss of the best epoch from early stopping in Keras?

I have managed to implement early stopping into my Keras model, but I am not sure how I can view the loss of the best epoch.

JavaScript

The way I have defined the loss score, means that the returned score comes from the final epoch, not the best epoch.

Example:

JavaScript

So in this example, I would like to see the loss at Epoch 00014 (which is 0.0124).

I also have a separate question: How can I set the decimal places for the val_out_soft_loss score?

Advertisement

Answer

Assign the fit() call in Keras to a variable so you can track the metrics through the epochs.

JavaScript

It will return a dictionary, access it like this:

JavaScript

And then get the min() to get the minimum loss, and argmin() to get the best epoch (zero-based).

JavaScript
Advertisement