This commit is contained in:
zhousha
2025-11-28 10:42:38 +08:00
parent 80735e0d6a
commit 4fa2e44965
4 changed files with 31 additions and 1 deletions

9
enginex/Yolov10.md Normal file
View File

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