From 870d4d09ba66a0d703c8af5485042a80bbcbd01d Mon Sep 17 00:00:00 2001 From: Mingshuang Luo <37799481+luomingshuang@users.noreply.github.com> Date: Thu, 14 Oct 2021 19:15:47 +0800 Subject: [PATCH] Update pretrained.py --- egs/librispeech/ASR/conformer_ctc/pretrained.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/egs/librispeech/ASR/conformer_ctc/pretrained.py b/egs/librispeech/ASR/conformer_ctc/pretrained.py index eee8b94d4..d9b5bc130 100755 --- a/egs/librispeech/ASR/conformer_ctc/pretrained.py +++ b/egs/librispeech/ASR/conformer_ctc/pretrained.py @@ -57,19 +57,22 @@ def get_parser(): parser.add_argument( "--words-file", type=str, - help="Path to words.txt", + help="Path to words.txt " + "Used only when method is not ctc-decoding", ) parser.add_argument( "--HLG", type=str, - help="Path to HLG.pt.", + help="Path to HLG.pt. " + "Used only when method is not ctc-decoding", ) parser.add_argument( "--bpe-model", type=str, - help="Path to bpe.model.", + help="Path to bpe.model. " + "Used only when method is ctc-decoding.", ) parser.add_argument(