From ded1675adcc9cdb6decc43338892ba2b690b81cc Mon Sep 17 00:00:00 2001 From: zhousha <736730048@qq.com> Date: Thu, 27 Nov 2025 01:53:53 +0800 Subject: [PATCH] update --- README.md | 4 +++- enginex/Janus-Pro-7B.md | 10 ++++++++++ enginex/Qwen2.5-7B-Instruct.md | 2 +- enginex/glm-4v-9b.md | 13 +++++++++++++ 4 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 enginex/Janus-Pro-7B.md create mode 100644 enginex/glm-4v-9b.md diff --git a/README.md b/README.md index f3e61b8..1a95cfe 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,9 @@ 可在项目文件夹 `/enginex` 下查看具体可支持模型文件的运行方式。 支持模型列表: +- deepseek-ai/Janus-Pro-7B - PaddlePaddle/PaddleOCR-VL - deepseek-ai/DeepSeek-OCR - Qwen/Qwen2.5-7B-instruct -- Qwen/Qwen2-VL-2B-Instruct \ No newline at end of file +- Qwen/Qwen2-VL-2B-Instruct +- ZhipuAI/glm-4v-9b \ No newline at end of file diff --git a/enginex/Janus-Pro-7B.md b/enginex/Janus-Pro-7B.md new file mode 100644 index 0000000..3a7ab6d --- /dev/null +++ b/enginex/Janus-Pro-7B.md @@ -0,0 +1,10 @@ +# 运行方式 + +```python +docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.3.0-ubuntu22.04-dtk24.04.3-py3.10 + +docker run --shm-size 500g --network=host --name=Janus --privileged --device=/dev/kfd --device=/dev/dri --group-add video --cap-add=SYS_PTRACE --security-opt seccomp=unconfined -v 项目地址(绝对路径):/home/ -v /opt/hyhal:/opt/hyhal:ro -it bash + +cd ./code_path/ +pip install -r requirements.txt +``` diff --git a/enginex/Qwen2.5-7B-Instruct.md b/enginex/Qwen2.5-7B-Instruct.md index 94c465d..579a7b0 100644 --- a/enginex/Qwen2.5-7B-Instruct.md +++ b/enginex/Qwen2.5-7B-Instruct.md @@ -1,7 +1,7 @@ # 运行方式 ```python -docker pull git.modelhub.org.cn:9443/enginex-hygon/git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.1.0-ubuntu20.04-dtk24.04.2-py3.10 +docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.1.0-ubuntu20.04-dtk24.04.2-py3.10 docker run -it --shm-size=1024G -v /path/your_code_data/:/path/your_code_data/ -v /opt/hyhal:/opt/hyhal --privileged=true --device=/dev/kfd --device=/dev/dri/ --group-add video --name qwen2.5_72B_pytorch bash cd /path/your_code_data/ cd LLaMA-Factory diff --git a/enginex/glm-4v-9b.md b/enginex/glm-4v-9b.md new file mode 100644 index 0000000..61bfd10 --- /dev/null +++ b/enginex/glm-4v-9b.md @@ -0,0 +1,13 @@ +# 运行方式 + +```python +docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.1.0-ubuntu20.04-dtk24.04.1-py3.10 + +docker run -it -v /path/your_code_data/:/path/your_code_data/ -v /opt/hyhal/:/opt/hyhal/:ro --shm-size=64G --privileged=true --device=/dev/kfd --device=/dev/dri/ --group-add video --name glm-4v bash + +cd /path/your_code_data/ + +pip install -r requirements.txt -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com +#开发者社区下载bitsandbytes +pip install bitsandbytes-0.42.0+das1.1.gitce85679.abi1.dtk2404.torch2.1.0-py3-none-any.whl +```