Update decode.py

This commit is contained in:
jinzr 2023-09-21 15:43:20 +08:00
parent 5047dd37ac
commit 826188dbe9

View File

@ -193,14 +193,14 @@ def get_parser():
parser.add_argument(
"--bpe-model",
type=str,
default="data/lang_bpe_2000/bpe.model",
default="data/lang_bbpe_2000/bbpe.model",
help="Path to the BPE model",
)
parser.add_argument(
"--lang-dir",
type=Path,
default="data/lang_bpe_2000",
default="data/lang_bbpe_2000",
help="The lang dir containing word table and LG graph",
)