From 5b9d166cb953d1ab4f9f99df1849d94408ea27f0 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Sun, 23 Oct 2022 13:56:25 +0800 Subject: [PATCH] --base-lr0.075->0.5; --lr-epochs 3->3.5 --- 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 763911765..1aa9d1fe3 100755 --- a/egs/librispeech/ASR/pruned_transducer_stateless7/train.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless7/train.py @@ -232,7 +232,7 @@ def get_parser(): parser.add_argument( "--base-lr", type=float, - default=0.075, + default=0.05, help="The base learning rate." ) @@ -247,7 +247,7 @@ def get_parser(): parser.add_argument( "--lr-epochs", type=float, - default=3, + default=3.5, help="""Number of epochs that affects how rapidly the learning rate decreases. """, )