From 679ba2ee5e0e04bc6bf7ed34aff02cd0b87104b9 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Thu, 20 Oct 2022 13:30:55 +0800 Subject: [PATCH] Remove debug print --- 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 f819bdf7c..a4e78f25c 100644 --- a/egs/librispeech/ASR/pruned_transducer_stateless7/scaling.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless7/scaling.py @@ -244,7 +244,6 @@ class SoftmaxFunction(torch.autograd.Function): def softmax(x: Tensor, dim: int): - logging.info(f"torch.is_autocast_enabled()={torch.is_autocast_enabled()}, x dtype={x.dtype}") return SoftmaxFunction.apply(x, dim)