From 0ad4462632a63727bb3830bfdfbb3e82a2105ed3 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Wed, 19 Oct 2022 19:27:28 +0800 Subject: [PATCH] Reduce min_abs from 1e-03 to 1e-04 --- egs/librispeech/ASR/pruned_transducer_stateless7/scaling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egs/librispeech/ASR/pruned_transducer_stateless7/scaling.py b/egs/librispeech/ASR/pruned_transducer_stateless7/scaling.py index fed553183..773bab4e9 100644 --- a/egs/librispeech/ASR/pruned_transducer_stateless7/scaling.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless7/scaling.py @@ -196,7 +196,7 @@ def random_clamp(x: Tensor, def random_cast_to_half(x: Tensor, - min_abs: float = 1.0e-03) -> Tensor: + min_abs: float = 1.0e-04) -> Tensor: """ A randomized way of casting a floating point value to half precision. """