Skip to content
Advertisement

How to train keras models consecutively

I’m trying to train different models consecutively without needing to re-run my program or change my code all the time, so this way I can let my PC training different models.

I use a for loop while feeding different information from a dictionary for building different models each time, and so I can train a new model each time de function gets called, for testing the accuracy on different setups to understand which one is the best on each case.

JavaScript

and then

JavaScript

The problem is that when I start the first training session, it goes all good like this:

JavaScript

But when the second and so on model gets created, the loss start not on [inf] but at the last value of the prior training:

JavaScript

Even when using

JavaScript

It seems that I am loading some previous information about the last trained model. Does someone have an insight about this issue?

Advertisement

Answer

I assume from the training progress output you included that you are using Keras’s ModelCheckpoint callback. If you use the same ModelCheckpoint for multiple training runs, it will only save your new model if the loss of the new model is an improvement on the previous saved model.

To fix this issue, just generate the ModelCheckpoint object each time within your train_model function.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement