From 0b645662f9cb45dc2fdeee93cd87f66cc3d6b2d6 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Sat, 28 May 2022 12:12:34 +0800 Subject: [PATCH] Increase learning rates. --- egs/librispeech/ASR/pruned_transducer_stateless4/train.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/egs/librispeech/ASR/pruned_transducer_stateless4/train.py b/egs/librispeech/ASR/pruned_transducer_stateless4/train.py index ac7da8468..9138b86a7 100755 --- a/egs/librispeech/ASR/pruned_transducer_stateless4/train.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless4/train.py @@ -168,7 +168,7 @@ def get_parser(): parser.add_argument( "--lr-batches", type=float, - default=3000, + default=2000, help="""Number of steps that affects how rapidly the learning rate decreases. We suggest not to change this.""", ) @@ -176,7 +176,7 @@ def get_parser(): parser.add_argument( "--lr-epochs", type=float, - default=4, + default=3, help="""Number of epochs that affects how rapidly the learning rate decreases. """, )