From 14c6299c24e7ef91dd5d61c5a1c629706bb7083c Mon Sep 17 00:00:00 2001
From: 游雁 <zhifu.gzf@alibaba-inc.com>
Date: 星期三, 13 九月 2023 09:32:30 +0800
Subject: [PATCH] funasr-onnx 0.2.2

---
 funasr/runtime/python/onnxruntime/funasr_onnx/punc_bin.py |   16 ++++++++++++++--
 1 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/funasr/runtime/python/onnxruntime/funasr_onnx/punc_bin.py b/funasr/runtime/python/onnxruntime/funasr_onnx/punc_bin.py
index cc5daa8..6e289f6 100644
--- a/funasr/runtime/python/onnxruntime/funasr_onnx/punc_bin.py
+++ b/funasr/runtime/python/onnxruntime/funasr_onnx/punc_bin.py
@@ -29,7 +29,13 @@
                  ):
     
         if not Path(model_dir).exists():
-            from modelscope.hub.snapshot_download import snapshot_download
+            try:
+                from modelscope.hub.snapshot_download import snapshot_download
+            except:
+                raise "You are exporting model from modelscope, please install modelscope and try it again. To install modelscope, you could:\n" \
+                      "\npip3 install -U modelscope\n" \
+                      "For the users in China, you could install with the command:\n" \
+                      "\npip3 install -U modelscope -i https://mirror.sjtu.edu.cn/pypi/web/simple"
             try:
                 model_dir = snapshot_download(model_dir, cache_dir=cache_dir)
             except:
@@ -41,7 +47,13 @@
             model_file = os.path.join(model_dir, 'model_quant.onnx')
         if not os.path.exists(model_file):
             print(".onnx is not exist, begin to export onnx")
-            from funasr.export.export_model import ModelExport
+            try:
+                from funasr.export.export_model import ModelExport
+            except:
+                raise "You are exporting onnx, please install funasr and try it again. To install funasr, you could:\n" \
+                      "\npip3 install -U funasr\n" \
+                      "For the users in China, you could install with the command:\n" \
+                      "\npip3 install -U funasr -i https://mirror.sjtu.edu.cn/pypi/web/simple"
             export_model = ModelExport(
                 cache_dir=cache_dir,
                 onnx=True,

--
Gitblit v1.9.1