You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="If specified, text inverse normalization will be applied",
39
39
)
40
40
parser.add_argument("--language-code", default="en-US", help="Language code of the model to be used.")
41
-
parser.add_argument("--boosted-lm-words", action='append', help="Words to boost when decoding.")
41
+
parser.add_argument("--model-name", default="", help="Model name to be used.")
42
+
parser.add_argument("--boosted-lm-words", action='append', help="Words to boost when decoding. Can be used multiple times to boost multiple words.")
42
43
parser.add_argument(
43
-
"--boosted-lm-score", type=float, default=4.0, help="Value by which to boost words when decoding."
44
+
"--boosted-lm-score", type=float, default=4.0, help="Recommended range for the boost score is 20 to 100. The higher the boost score, the more biased the ASR engine is towards this word."
0 commit comments