From 0406d0b0594f99c42cad56b0145918eeb051d739 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Sun, 23 Oct 2022 13:51:51 +0800 Subject: [PATCH] Increase max_abs in ActivationBalancer of conv module from 20 to 50 --- egs/librispeech/ASR/pruned_transducer_stateless7/conformer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egs/librispeech/ASR/pruned_transducer_stateless7/conformer.py b/egs/librispeech/ASR/pruned_transducer_stateless7/conformer.py index 8734f266e..039b88bb2 100644 --- a/egs/librispeech/ASR/pruned_transducer_stateless7/conformer.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless7/conformer.py @@ -1336,7 +1336,7 @@ class ConvolutionModule(nn.Module): self.deriv_balancer2 = ActivationBalancer( channels, channel_dim=1, min_positive=0.05, max_positive=1.0, - max_abs=20.0, + max_abs=50.0, ) self.activation = DoubleSwish()