Hi,
I’m using PL V0.9, and I’m using pl.callbacks.ModelCheckpoint
to monitor a quantity named val_loss
, to save only the best models.
However, after updating my code base, there is no quantity named val_loss
in my validation loop, because I changed it’s name, but my callback still save checkpoints!
I want to know, in this case where the monitored quantity does not exist, which quantity is used by the callback to make the decision of saving?
Thank you in advance!