From dfeafd6aa8e8d30e93ff1aed4617470a627f2976 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Sat, 17 Dec 2022 16:28:45 +0800 Subject: [PATCH] Remove print statement in CutoffEstimator --- egs/librispeech/ASR/pruned_transducer_stateless7/scaling.py | 1 - 1 file changed, 1 deletion(-) diff --git a/egs/librispeech/ASR/pruned_transducer_stateless7/scaling.py b/egs/librispeech/ASR/pruned_transducer_stateless7/scaling.py index 842233ef3..61171be00 100644 --- a/egs/librispeech/ASR/pruned_transducer_stateless7/scaling.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless7/scaling.py @@ -257,7 +257,6 @@ class CutoffEstimator: if ans: self.count_above += 1 cur_p = self.count_above / self.count - print(f"cur_p = {cur_p}, cutoff = {self.cutoff}") delta_p = cur_p - self.p if (delta_p > 0) == ans: q = abs(delta_p)