From 137eae0b95ee5a0c4dcd137c3d1279301006c5ee Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Fri, 11 Mar 2022 14:41:55 +0800 Subject: [PATCH] Reduce max_factor to 0.01 --- egs/librispeech/ASR/conformer_ctc/subsampling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egs/librispeech/ASR/conformer_ctc/subsampling.py b/egs/librispeech/ASR/conformer_ctc/subsampling.py index d7be46f17..2e4eb754b 100644 --- a/egs/librispeech/ASR/conformer_ctc/subsampling.py +++ b/egs/librispeech/ASR/conformer_ctc/subsampling.py @@ -451,7 +451,7 @@ class DerivBalancer(torch.nn.Module): """ def __init__(self, channel_dim: int, threshold: float = 0.05, - max_factor: float = 0.02, + max_factor: float = 0.01, min_abs: float = 0.5): super(DerivBalancer, self).__init__() self.channel_dim = channel_dim