From 08f31225a215b57d409dbb2495cb75f7f0cb7753 Mon Sep 17 00:00:00 2001 From: David Scripka Date: Tue, 21 Nov 2023 16:44:24 -0500 Subject: [PATCH] remove logging statement [skip ci] --- openwakeword/train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openwakeword/train.py b/openwakeword/train.py index b512cd0..6f1ed63 100755 --- a/openwakeword/train.py +++ b/openwakeword/train.py @@ -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],