Fix default value for --context-size in icefall. (#1538)

This commit is contained in:
Fangjun Kuang 2024-03-08 20:47:13 +08:00 committed by GitHub
parent ae61bd4090
commit 60986c3ac1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -250,7 +250,7 @@ def get_parser():
parser.add_argument(
"--context-size",
type=int,
default=1,
default=2,
help="The context size in the decoder. 1 means bigram; 2 means tri-gram",
)
parser.add_argument(