提交 f428ec44 编写于 作者: H huangyuxin

change log of cli/asr/infer

上级 89e69ee1
...@@ -185,8 +185,9 @@ class ASRExecutor(BaseExecutor): ...@@ -185,8 +185,9 @@ class ASRExecutor(BaseExecutor):
""" """
Download and returns pretrained resources path of current task. Download and returns pretrained resources path of current task.
""" """
assert tag in pretrained_models, 'Can not find pretrained resources of {}.'.format( support_models = list(pretrained_models.keys())
tag) assert tag in pretrained_models, 'The model "{}" you want to use has not been supported, please choose other models.\nThe support models includes:\n\t\t{}\n'.format(
tag, '\n\t\t'.join(support_models))
res_path = os.path.join(MODEL_HOME, tag) res_path = os.path.join(MODEL_HOME, tag)
decompressed_path = download_and_decompress(pretrained_models[tag], decompressed_path = download_and_decompress(pretrained_models[tag],
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册