From 17465143483a44dbb4d735e981c2105daacc91f4 Mon Sep 17 00:00:00 2001 From: Fangjun Kuang Date: Mon, 10 Apr 2023 12:29:08 +0800 Subject: [PATCH] fix typos --- icefall/shared/combine_lm.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/icefall/shared/combine_lm.py b/icefall/shared/combine_lm.py index 12038bf91..8e117a4ae 100755 --- a/icefall/shared/combine_lm.py +++ b/icefall/shared/combine_lm.py @@ -38,6 +38,7 @@ except ImportError: print("Please install kenlm first. You can use") print() print(" pip install https://github.com/kpu/kenlm/archive/master.zip") + print() print("to install it") import sys @@ -63,7 +64,7 @@ def get_args(): "--b", type=str, required=True, - help="Path to the second LM. Its order is usually lower than that of LM b", + help="Path to the second LM. Its order is usually lower than that of LM a", ) parser.add_argument( @@ -84,7 +85,7 @@ def get_args(): "--out", type=str, required=True, - help="Path to save the generate LM.", + help="Path to save the generated LM.", ), return parser.parse_args()