This commit is contained in:
zhousha
2025-11-28 18:29:47 +08:00
parent 881377139c
commit c90826ab9f
4 changed files with 28 additions and 1 deletions

View File

@@ -12,4 +12,6 @@
- AI-ModelScope/YOLOv8
- AIBS/yolov7
- AI-ModelScope/Yolov10
- merve/yolov9
- merve/yolov9
- AI-ModelScope/YOLO11
- AI-ModelScope/GroundingDINO

11
enginex/GroundingDINO.md Normal file
View File

@@ -0,0 +1,11 @@
# 运行方式
```python
docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.1.0-centos7.6-dtk24.04-py310
docker run -it -v /path/your_code_data/:/path/your_code_data/ -v /opt/hyhal/:/opt/hyhal/:ro --shm-size=80G --privileged=true --device=/dev/kfd --device=/dev/dri/ --group-add video --name docker_name imageID bash
cd /your_code_path/grounding_dino_mmcv
pip install mmdet -i https://mirrors.aliyun.com/pypi/simple/
pip install -r requirements/multimodal.txt -i https://mirrors.aliyun.com/pypi/simple/
export HF_ENDPOINT=https://hf-mirror.com
```

9
enginex/YOLO11.md Normal file
View File

@@ -0,0 +1,9 @@
# 运行方式
```python
docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.3.0-ubuntu22.04-dtk24.04.2-py3.10
# 为以上拉取的docker的镜像ID替换本镜像为83714c19d308
docker run -it --shm-size=64G -v $PWD/YOLO11:/home/YOLO11 -v /opt/hyhal:/opt/hyhal:ro --privileged=true --device=/dev/kfd --device=/dev/dri/ --group-add video --name yolo11 bash
cd /home/YOLO11
pip install -r requirements.txt # requirements.txt
```

5
enginex/retinaface.md Normal file
View File

@@ -0,0 +1,5 @@
# 运行方式
```python
docker pull git.modelhub.org.cn:9443/enginex-hygon/
```