frcnn-from-scratch-with-keras icon indicating copy to clipboard operation
frcnn-from-scratch-with-keras copied to clipboard

CheckPoint option

Open QuandoSJ opened this issue 4 years ago • 1 comments

Is there a option for me to save checkpoint while training and then continue training from the checkpoint. Cause right now I cannot start from where I stopped but to start over again

QuandoSJ avatar Mar 08 '20 21:03 QuandoSJ

The model is saved at the end of each epoch if the total loss is less than the previous epoch total loss. This is done using a ModelCheckpoint callback. So to resume where you left off, you just have to use the load option the next time you want to initialize your training

magloiretouh avatar Mar 10 '20 16:03 magloiretouh