From ae0067c3849fd1029c6fc51d502d73d5cc4eef89 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Sun, 16 Oct 2022 11:45:33 +0800 Subject: [PATCH] Change LR schedule to start off higher --- 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 44dbc95df..68b186dcd 100755 --- a/egs/librispeech/ASR/pruned_transducer_stateless7/train.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless7/train.py @@ -224,7 +224,7 @@ def get_parser(): parser.add_argument( "--initial-lr", type=float, - default=0.03, + default=0.04, help="The initial learning rate. This value should not need " "to be changed.", ) @@ -240,7 +240,7 @@ def get_parser(): parser.add_argument( "--lr-epochs", type=float, - default=6, + default=3.5, help="""Number of epochs that affects how rapidly the learning rate decreases. """, )