diff --git a/README.md b/README.md index 7cbeec4..48919a9 100644 --- a/README.md +++ b/README.md @@ -12,4 +12,6 @@ - AI-ModelScope/YOLOv8 - AIBS/yolov7 - AI-ModelScope/Yolov10 -- merve/yolov9 \ No newline at end of file +- merve/yolov9 +- AI-ModelScope/YOLO11 +- AI-ModelScope/GroundingDINO \ No newline at end of file diff --git a/enginex/GroundingDINO.md b/enginex/GroundingDINO.md new file mode 100644 index 0000000..ef9bcbe --- /dev/null +++ b/enginex/GroundingDINO.md @@ -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 +``` \ No newline at end of file diff --git a/enginex/YOLO11.md b/enginex/YOLO11.md new file mode 100644 index 0000000..c28167e --- /dev/null +++ b/enginex/YOLO11.md @@ -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 +``` \ No newline at end of file diff --git a/enginex/retinaface.md b/enginex/retinaface.md new file mode 100644 index 0000000..f35328b --- /dev/null +++ b/enginex/retinaface.md @@ -0,0 +1,5 @@ +# 运行方式 + +```python +docker pull git.modelhub.org.cn:9443/enginex-hygon/ +``` \ No newline at end of file