From 5a32472cd5cdf6ee7356e69a057fb2aa881098ea Mon Sep 17 00:00:00 2001 From: pycsq8k9h <1272574577@qq.com> Date: Wed, 30 Oct 2024 15:16:46 +0800 Subject: [PATCH] Update README.md --- README.md | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 308802a..e35200f 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,27 @@ + # 智能医疗系统 -本系统基于智谱大模型ChatGLM4-V-9B -官方模型地址:https://modelscope.cn/models/ZhipuAI/glm-4v-9b/summary + +本系统基于智谱大模型 ChatGLM4-V-9B +官方模型地址:[ChatGLM4-V-9B 模型](https://modelscope.cn/models/ZhipuAI/glm-4v-9b/summary) + ## 本地下载代码 -SDK下载 -’‘’bash + +### SDK 下载 +```bash from modelscope import snapshot_download model_dir = snapshot_download('ZhipuAI/glm-4v-9b') -‘’‘ -## git下载 -''' -# 确保安装了git +``` + +## Git 下载 +```bash +# 确保安装了 git git lfs install git clone https://www.modelscope.cn/ZhipuAI/glm-4v-9b.git -''' +``` + ## 命令行下载 -''' +```bash pip install modelscope -# 指定文件夹 --local_dir path +# 指定文件夹下载 --local_dir path modelscope download --model ZhipuAI/glm-4v-9b -''' \ No newline at end of file +```