Skip to content

Commit

Permalink
Add base choice to model_name argument for whisper model. (#1573)
Browse files Browse the repository at this point in the history
Co-authored-by: dadoou <[email protected]>
  • Loading branch information
Dadoou and dadoou authored Apr 2, 2024
1 parent 42de459 commit 6cbddaa
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion egs/aishell/ASR/whisper/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def get_parser():
"--model-name",
type=str,
default="large-v2",
choices=["large-v2", "large-v3", "medium", "small", "tiny"],
choices=["large-v2", "large-v3", "medium", "small", "base", "tiny"],
help="""The model name to use.
""",
)
Expand Down
2 changes: 1 addition & 1 deletion egs/aishell/ASR/whisper/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def get_parser():
"--model-name",
type=str,
default="large-v2",
choices=["large-v2", "large-v3", "medium", "small", "tiny"],
choices=["large-v2", "large-v3", "medium", "small", "base", "tiny"],
help="""The model name to use.
""",
)
Expand Down
2 changes: 1 addition & 1 deletion egs/multi_zh-hans/ASR/whisper/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def get_parser():
"--model-name",
type=str,
default="large-v2",
choices=["large-v2", "large-v3", "medium", "small", "tiny"],
choices=["large-v2", "large-v3", "medium", "small", "base", "tiny"],
help="""The model name to use.
""",
)
Expand Down
2 changes: 1 addition & 1 deletion egs/multi_zh-hans/ASR/whisper/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def get_parser():
"--model-name",
type=str,
default="large-v2",
choices=["large-v2", "large-v3", "medium", "small", "tiny"],
choices=["large-v2", "large-v3", "medium", "small", "base", "tiny"],
help="""The model name to use.
""",
)
Expand Down
2 changes: 1 addition & 1 deletion egs/speechio/ASR/whisper/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def get_parser():
"--model-name",
type=str,
default="large-v2",
choices=["large-v2", "large-v3", "medium", "small", "tiny"],
choices=["large-v2", "large-v3", "medium", "small", "base", "tiny"],
help="""The model name to use.
""",
)
Expand Down
2 changes: 1 addition & 1 deletion egs/wenetspeech/ASR/whisper/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def get_parser():
"--model-name",
type=str,
default="large-v2",
choices=["large-v2", "large-v3", "medium", "small", "tiny"],
choices=["large-v2", "large-v3", "medium", "small", "base", "tiny"],
help="""The model name to use.
""",
)
Expand Down
2 changes: 1 addition & 1 deletion egs/wenetspeech/ASR/whisper/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def get_parser():
"--model-name",
type=str,
default="large-v2",
choices=["large-v2", "large-v3", "medium", "small", "tiny"],
choices=["large-v2", "large-v3", "medium", "small", "base", "tiny"],
help="""The model name to use.
""",
)
Expand Down

0 comments on commit 6cbddaa

Please sign in to comment.