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(