From d9addb7c4361023fb39f70a5a0f245a6fa877ca2 Mon Sep 17 00:00:00 2001 From: Guanbo Wang Date: Wed, 6 Apr 2022 19:41:24 -0400 Subject: [PATCH] update params in decode.py --- egs/gigaspeech/ASR/conformer_ctc/decode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/egs/gigaspeech/ASR/conformer_ctc/decode.py b/egs/gigaspeech/ASR/conformer_ctc/decode.py index 3d98c200c..ec5854660 100755 --- a/egs/gigaspeech/ASR/conformer_ctc/decode.py +++ b/egs/gigaspeech/ASR/conformer_ctc/decode.py @@ -102,7 +102,7 @@ def get_parser(): parser.add_argument( "--num-paths", type=int, - default=100, + default=1000, help="""Number of paths for n-best based decoding method. Used only when "method" is one of the following values: nbest, nbest-rescoring, attention-decoder, and nbest-oracle @@ -131,7 +131,7 @@ def get_parser(): parser.add_argument( "--lang-dir", type=str, - default="data/lang_bpe_5000", + default="data/lang_bpe_500", help="The lang dir", )