You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it would be useful to include the is_best variable from train.train_model in the logs. Since log_info is passed to the epoch hook, the epoch hook function could then perform custom model checkpointing based on whether the current model is the best model so far.
For instance, I'm trying to checkpoint the classifier network itself (i.e. only AttackerModel.model, not the entire AttackerModel). This would be easier if an epoch hook had the information on whether the current model is best.
The text was updated successfully, but these errors were encountered:
I think it would be useful to include the
is_best
variable fromtrain.train_model
in the logs. Sincelog_info
is passed to the epoch hook, the epoch hook function could then perform custom model checkpointing based on whether the current model is the best model so far.For instance, I'm trying to checkpoint the classifier network itself (i.e. only
AttackerModel.model
, not the entireAttackerModel
). This would be easier if an epoch hook had the information on whether the current model is best.The text was updated successfully, but these errors were encountered: