From 082a890635d882042e05edf17480df413587674e Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Thu, 9 Jun 2022 19:20:03 +0800 Subject: [PATCH] Fix apply_prob_decay to 500 --- egs/librispeech/ASR/pruned_transducer_stateless2/scaling.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/egs/librispeech/ASR/pruned_transducer_stateless2/scaling.py b/egs/librispeech/ASR/pruned_transducer_stateless2/scaling.py index 51d5bfb7f..76e50597c 100644 --- a/egs/librispeech/ASR/pruned_transducer_stateless2/scaling.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless2/scaling.py @@ -795,9 +795,9 @@ class Decorrelate(torch.nn.Module): def __init__(self, num_channels: int, scale: float = 0.1, - apply_prob_decay: int = 2000, + apply_prob_decay: int = 500, eps: float = 1.0e-05, - beta: float = 0.95, + beta: float = 0.9, channel_dim: int = -1): super(Decorrelate, self).__init__() self.scale = scale