From 234366e51c450cb95e18acdcf9d6544d74155885 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Tue, 5 Apr 2022 00:18:36 +0800 Subject: [PATCH] Fix type of parameter --- egs/librispeech/ASR/pruned_transducer_stateless2/train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egs/librispeech/ASR/pruned_transducer_stateless2/train.py b/egs/librispeech/ASR/pruned_transducer_stateless2/train.py index 9f73c8fbc..83558a72b 100755 --- a/egs/librispeech/ASR/pruned_transducer_stateless2/train.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless2/train.py @@ -160,7 +160,7 @@ def get_parser(): parser.add_argument( "--num-lr-decays", - type=float, + type=int, default=4, help="The total number of times we decay (halve) the learning rate" )