remove logging statement [skip ci]

This commit is contained in:
David Scripka 2023-11-21 16:44:24 -05:00
parent 2c3a4839a2
commit 08f31225a2

View file

@ -557,7 +557,7 @@ class Model(nn.Module):
if step_ndx in val_steps and step_ndx > 1:
if self.history["val_n_fp"][-1] <= np.percentile(self.history["val_n_fp"], 50) and \
self.history["val_recall"][-1] >= np.percentile(self.history["val_recall"], 5):
logging.info("Saving checkpoint with metrics >= to targets!")
# logging.info("Saving checkpoint with metrics >= to targets!")
self.best_models.append(copy.deepcopy(self.model))
self.best_model_scores.append({"training_step_ndx": step_ndx, "val_n_fp": self.history["val_n_fp"][-1],
"val_recall": self.history["val_recall"][-1],