From 4a5143e5484376ce73d11de7228fae3e90902891 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Fri, 10 Jun 2022 10:09:46 +0800 Subject: [PATCH] Increase decay to 1k --- egs/librispeech/ASR/pruned_transducer_stateless2/scaling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egs/librispeech/ASR/pruned_transducer_stateless2/scaling.py b/egs/librispeech/ASR/pruned_transducer_stateless2/scaling.py index 604491324..3403c291b 100644 --- a/egs/librispeech/ASR/pruned_transducer_stateless2/scaling.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless2/scaling.py @@ -847,7 +847,7 @@ class Decorrelate(torch.nn.Module): def __init__(self, num_channels: int, scale: float = 0.1, - apply_prob_decay: int = 500, + apply_prob_decay: int = 1000, eps: float = 1.0e-05, beta: float = 0.95, channel_dim: int = -1):