From 1d4382555c31f066a7ceeba93b459791c3131a5a Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Sat, 22 Oct 2022 15:04:08 +0800 Subject: [PATCH] Increase initial-lr from 0.06 to 0.075 and decrease lr-epochs from 3.5 to 3. --- egs/librispeech/ASR/pruned_transducer_stateless7/train.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/egs/librispeech/ASR/pruned_transducer_stateless7/train.py b/egs/librispeech/ASR/pruned_transducer_stateless7/train.py index 258457f98..e3053e3f6 100755 --- a/egs/librispeech/ASR/pruned_transducer_stateless7/train.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless7/train.py @@ -231,7 +231,7 @@ def get_parser(): parser.add_argument( "--initial-lr", type=float, - default=0.06, + default=0.075, help="The initial learning rate. This value should not need " "to be changed.", ) @@ -247,7 +247,7 @@ def get_parser(): parser.add_argument( "--lr-epochs", type=float, - default=3.5, + default=3, help="""Number of epochs that affects how rapidly the learning rate decreases. """, )