MCPcopy Index your code
hub / github.com/WongKinYiu/yolov9

github.com/WongKinYiu/yolov9 @v0.1 sqlite

repository ↗ · DeepWiki ↗ · release v0.1 ↗
1,041 symbols 4,316 edges 79 files 133 documented · 13%
README

YOLOv9

Implementation of paper - YOLOv9: Learning What You Want to Learn Using Programmable Gradient Information

<a href="https://github.com/WongKinYiu/yolov9/raw/v0.1/">
    <img src="https://github.com/WongKinYiu/yolov9/raw/v0.1/figure/performance.png" width="79%"/>
</a>

Performance

MS COCO

Model Test Size APval AP50val AP75val Param. FLOPs
YOLOv9-S 640 46.8% 63.4% 50.7% 7.2M 26.7G
YOLOv9-M 640 51.4% 68.1% 56.1% 20.1M 76.8G
YOLOv9-C 640 53.0% 70.2% 57.8% 25.5M 102.8G
YOLOv9-E 640 55.6% 72.8% 60.6% 58.1M 192.5G

Installation

Docker environment (recommended)

Expand

# create the docker container, you can change the share memory size if you have more.
nvidia-docker run --name yolov9 -it -v your_coco_path/:/coco/ -v your_code_path/:/yolov9 --shm-size=64g nvcr.io/nvidia/pytorch:21.11-py3

# apt install required packages
apt update
apt install -y zip htop screen libgl1-mesa-glx

# pip install required packages
pip install seaborn thop

# go to code folder
cd /yolov9

Evaluation

yolov9-c.pt yolov9-e.pt gelan-c.pt gelan-e.pt

# evaluate yolov9 models
python val_dual.py --data data/coco.yaml --img 640 --batch 32 --conf 0.001 --iou 0.7 --device 0 --weights './yolov9-c.pt' --save-json --name yolov9_c_640_val

# evaluate gelan models
# python val.py --data data/coco.yaml --img 640 --batch 32 --conf 0.001 --iou 0.7 --device 0 --weights './gelan-c.pt' --save-json --name gelan_c_640_val

You will get the results:

 Average Precision  (AP) @[ IoU=0.50:0.95 | area=   all | maxDets=100 ] = 0.530
 Average Precision  (AP) @[ IoU=0.50      | area=   all | maxDets=100 ] = 0.702
 Average Precision  (AP) @[ IoU=0.75      | area=   all | maxDets=100 ] = 0.578
 Average Precision  (AP) @[ IoU=0.50:0.95 | area= small | maxDets=100 ] = 0.362
 Average Precision  (AP) @[ IoU=0.50:0.95 | area=medium | maxDets=100 ] = 0.585
 Average Precision  (AP) @[ IoU=0.50:0.95 | area= large | maxDets=100 ] = 0.693
 Average Recall     (AR) @[ IoU=0.50:0.95 | area=   all | maxDets=  1 ] = 0.392
 Average Recall     (AR) @[ IoU=0.50:0.95 | area=   all | maxDets= 10 ] = 0.652
 Average Recall     (AR) @[ IoU=0.50:0.95 | area=   all | maxDets=100 ] = 0.702
 Average Recall     (AR) @[ IoU=0.50:0.95 | area= small | maxDets=100 ] = 0.541
 Average Recall     (AR) @[ IoU=0.50:0.95 | area=medium | maxDets=100 ] = 0.760
 Average Recall     (AR) @[ IoU=0.50:0.95 | area= large | maxDets=100 ] = 0.844

Training

Data preparation

bash scripts/get_coco.sh
  • Download MS COCO dataset images (train, val, test) and labels. If you have previously used a different version of YOLO, we strongly recommend that you delete train2017.cache and val2017.cache files, and redownload labels

Single GPU training

# train yolov9 models
python train_dual.py --workers 8 --device 0 --batch 16 --data data/coco.yaml --img 640 --cfg models/detect/yolov9-c.yaml --weights '' --name yolov9-c --hyp hyp.scratch-high.yaml --min-items 0 --epochs 500 --close-mosaic 15

# train gelan models
# python train.py --workers 8 --device 0 --batch 32 --data data/coco.yaml --img 640 --cfg models/detect/gelan-c.yaml --weights '' --name gelan-c --hyp hyp.scratch-high.yaml --min-items 0 --epochs 500 --close-mosaic 15

Multiple GPU training

# train yolov9 models
python -m torch.distributed.launch --nproc_per_node 8 --master_port 9527 train_dual.py --workers 8 --device 0,1,2,3,4,5,6,7 --sync-bn --batch 128 --data data/coco.yaml --img 640 --cfg models/detect/yolov9-c.yaml --weights '' --name yolov9-c --hyp hyp.scratch-high.yaml --min-items 0 --epochs 500 --close-mosaic 15

# train gelan models
# python -m torch.distributed.launch --nproc_per_node 4 --master_port 9527 train.py --workers 8 --device 0,1,2,3 --sync-bn --batch 128 --data data/coco.yaml --img 640 --cfg models/detect/gelan-c.yaml --weights '' --name gelan-c --hyp hyp.scratch-high.yaml --min-items 0 --epochs 500 --close-mosaic 15

Re-parameterization

Under construction.

Citation

@article{wang2024yolov9,
  title={{YOLOv9}: Learning What You Want to Learn Using Programmable Gradient Information},
  author={Wang, Chien-Yao  and Liao, Hong-Yuan Mark},
  booktitle={arXiv preprint},
  year={2024}
}
@article{chang2023yolor,
  title={{YOLOR}-Based Multi-Task Learning},
  author={Chang, Hung-Shuo and Wang, Chien-Yao and Wang, Richard Robert and Chou, Gene and Liao, Hong-Yuan Mark},
  journal={arXiv preprint arXiv:2309.16921},
  year={2023}
}

Teaser

Parts of code of YOLOR-Based Multi-Task Learning are released in the repository.

Acknowledgements

Expand

Core symbols most depended-on inside this repo

info
called by 258
models/yolo.py
colorstr
called by 77
utils/general.py
run
called by 72
utils/callbacks.py
tolist
called by 44
models/common.py
save
called by 37
models/common.py
time
called by 32
utils/general.py
de_parallel
called by 30
utils/torch_utils.py
check_requirements
called by 29
utils/general.py

Shape

Method 538
Function 343
Class 160

Languages

Python100%

Modules by API surface

models/common.py150 symbols
utils/general.py83 symbols
models/tf.py71 symbols
utils/dataloaders.py58 symbols
models/yolo.py50 symbols
utils/loggers/comet/__init__.py31 symbols
utils/torch_utils.py30 symbols
utils/segment/loss_tal_dual.py29 symbols
utils/plots.py29 symbols
utils/panoptic/metrics.py26 symbols
utils/loggers/__init__.py25 symbols
utils/augmentations.py25 symbols

Dependencies from manifests, versioned

Pillow7.1.2 · 1×
PyYAML5.3.1 · 1×
albumentations1.0.3 · 1×
matplotlib3.2.2 · 1×
numpy1.18.5 · 1×
opencv-python4.1.1 · 1×
pandas1.1.4 · 1×
pycocotools2.0 · 1×
requests2.23.0 · 1×
scipy1.4.1 · 1×
seaborn0.11.0 · 1×
tensorboard2.4.1 · 1×

For agents

$ claude mcp add yolov9 \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact