From fe27a6971c565f4c839dd417f97dc660977d0fa5 Mon Sep 17 00:00:00 2001 From: binbin Deng <108676127+plusbang@users.noreply.github.com> Date: Mon, 11 Mar 2024 16:18:27 +0800 Subject: [PATCH] LLM: update modelscope version (#10367) --- python/llm/example/CPU/ModelScope-Models/README.md | 3 ++- python/llm/example/GPU/ModelScope-Models/README.md | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/python/llm/example/CPU/ModelScope-Models/README.md b/python/llm/example/CPU/ModelScope-Models/README.md index 05c0e3b4..ba7b7a02 100644 --- a/python/llm/example/CPU/ModelScope-Models/README.md +++ b/python/llm/example/CPU/ModelScope-Models/README.md @@ -14,7 +14,8 @@ conda create -n llm python=3.9 conda activate llm pip install --pre --upgrade bigdl-llm[all] # install bigdl-llm with 'all' option -pip install modelscope +# Refer to https://github.com/modelscope/modelscope/issues/765, please make sure you are using 1.11.0 version +pip install modelscope==1.11.0 ``` ### 2. Run diff --git a/python/llm/example/GPU/ModelScope-Models/README.md b/python/llm/example/GPU/ModelScope-Models/README.md index 1ba31567..c32e3d37 100644 --- a/python/llm/example/GPU/ModelScope-Models/README.md +++ b/python/llm/example/GPU/ModelScope-Models/README.md @@ -15,7 +15,8 @@ conda create -n llm python=3.9 conda activate llm # below command will install intel_extension_for_pytorch==2.1.10+xpu as default pip install --pre --upgrade bigdl-llm[xpu] -f https://developer.intel.com/ipex-whl-stable-xpu -pip install modelscope +# Refer to https://github.com/modelscope/modelscope/issues/765, please make sure you are using 1.11.0 version +pip install modelscope==1.11.0 ``` #### 1.2 Installation on Windows