update vllm
This commit is contained in:
@@ -21,3 +21,6 @@
|
||||
- Qwen-7B_fastllm
|
||||
- ChatGLM-6B_fastllm
|
||||
- ChatGLM-6B_pytorch
|
||||
- Shanghai_AI_Laboratory/internlm-chat-7b
|
||||
- ZhipuAI/glm-4v-9b
|
||||
- ZhipuAI/GLM-4-9B-0414
|
||||
|
||||
8
enginex/GME-Qwen2-VL.md
Normal file
8
enginex/GME-Qwen2-VL.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# 运行方式
|
||||
|
||||
```python
|
||||
docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.4.1-ubuntu22.04-dtk25.04-py3.10
|
||||
docker run --shm-size 100g --network=host --name=gme --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
|
||||
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
9
enginex/MiniCPM3-4B.md
Normal file
9
enginex/MiniCPM3-4B.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# 运行方式
|
||||
|
||||
```python
|
||||
docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.1.0-ubuntu20.04-dtk24.04.1-py3.10
|
||||
# 为以上拉取的docker的镜像ID替换
|
||||
docker run -it --shm-size=32G -v $PWD/MiniCPM:/home/MiniCPM -v /opt/hyhal:/opt/hyhal --network=host --privileged=true --device=/dev/kfd --device=/dev/dri/ --group-add video --name minicpm bash
|
||||
cd /home/MiniCPM
|
||||
pip install -r finetune/requirements.txt # finetune/requirements.txt
|
||||
```
|
||||
5
enginex/Qwen3-Embedding-0.6B.md
Normal file
5
enginex/Qwen3-Embedding-0.6B.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# 运行方式
|
||||
|
||||
```python
|
||||
docker pull git.modelhub.org.cn:9443/enginex-hygon/
|
||||
```
|
||||
10
enginex/Yi-6B-Chat.md
Normal file
10
enginex/Yi-6B-Chat.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# 运行方式
|
||||
|
||||
```python
|
||||
docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.1.0-py3.10-dtk24.04.3-ubuntu20.04
|
||||
docker run -it --shm-size=1024G -v : -v /opt/hyhal:/opt/hyhal --privileged=true --device=/dev/kfd --device=/dev/dri/ --group-add video --name Yi-1.5 bash # 为以上拉取的docker的镜像ID替换
|
||||
cd /home/Yi-1.5-pytorch
|
||||
pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
|
||||
|
||||
pip uninstall vllm
|
||||
```
|
||||
7
enginex/baichuan-7B.md
Normal file
7
enginex/baichuan-7B.md
Normal file
@@ -0,0 +1,7 @@
|
||||
# 运行方式
|
||||
|
||||
```python
|
||||
docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.1.0-ubuntu20.04-dtk24.04.1-py3.10
|
||||
docker run -dit --network=host --name=baichuan -v /opt/hyhal:/opt/hyhal:ro --privileged --device=/dev/kfd --device=/dev/dri --ipc=host --shm-size=16G --group-add video --cap-add=SYS_PTRACE --security-opt seccomp=unconfined -u root --ulimit stack=-1:-1 --ulimit memlock=-1:-1 image.sourcefind.cn:5000/dcu/admin/base/pytorch:1.13.1-centos7.6-dtk-23.04-py38-latest /bin/bash
|
||||
docker exec -it baichuan /bin/bash
|
||||
```
|
||||
8
enginex/chatglm2-6b.md
Normal file
8
enginex/chatglm2-6b.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# 运行方式
|
||||
|
||||
```python
|
||||
docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.1.0-ubuntu20.04-dtk24.04.1-py3.10
|
||||
docker exec -it chatglm /bin/bash
|
||||
pip install transformers==4.28.0 -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
|
||||
pip install accelerate sentencepiece mdtex2html gradio rouge_chinese nltk jieba datasets==2.20.0 protobuf peft==0.5.0 pydantic==1.10.9 -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
|
||||
```
|
||||
9
enginex/glm-10b-chinese.md
Normal file
9
enginex/glm-10b-chinese.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# 运行方式
|
||||
|
||||
```python
|
||||
docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.1.0-ubuntu20.04-dtk24.04.1-py3.10
|
||||
# 为以上拉取的docker的镜像ID替换
|
||||
docker run -it --shm-size=32G -v $PWD/MiniCPM:/home/MiniCPM -v /opt/hyhal:/opt/hyhal --network=host --privileged=true --device=/dev/kfd --device=/dev/dri/ --group-add video --name minicpm bash
|
||||
cd /home/MiniCPM
|
||||
pip install -r finetune/requirements.txt # finetune/requirements.txt
|
||||
```
|
||||
13
enginex/glm-4v-9b.md
Normal file
13
enginex/glm-4v-9b.md
Normal file
@@ -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
|
||||
```
|
||||
9
enginex/internlm-chat-7b.md
Normal file
9
enginex/internlm-chat-7b.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# 运行方式
|
||||
|
||||
```python
|
||||
docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.1.0-ubuntu20.04-dtk24.04.1-py3.10(推荐)
|
||||
# <img id="">用上面拉取docker镜像的ID替换
|
||||
# 主机端路径
|
||||
# 容器映射路径
|
||||
docker run -it --name baichuan --shm-size=1024G --device=/dev/kfd --device=/dev/dri/ --cap-add=SYS_PTRACE --security-opt seccomp=unconfined -v /opt/hyhal:/opt/hyhal:ro --ulimit memlock=-1:-1 --ipc=host --network host --group-add video -v : <img id=""> /bin/bash
|
||||
```
|
||||
Reference in New Issue
Block a user