Support recognition from URLs. (#194)

This commit is contained in:
Fangjun Kuang
2023-07-04 10:16:11 +08:00
committed by GitHub
parent 2c436606bd
commit 1f02f7c349
3 changed files with 188 additions and 1 deletions

View File

@@ -39,18 +39,21 @@ def get_args():
parser.add_argument(
"--tokens",
type=str,
required=True,
help="Path to tokens.txt",
)
parser.add_argument(
"--encoder",
type=str,
required=True,
help="Path to the encoder model",
)
parser.add_argument(
"--decoder",
type=str,
required=True,
help="Path to the decoder model",
)