8000 GitHub - Shohruh72/YOLOv11: YOLOv11 Next-Gen Object Detection using Pytorch
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Shohruh72/YOLOv11

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YOLOv11 Next-Gen Object Detection using PyTorch

Achieve SOTA results with just 1 line of code!

🚀 Demo

output1_1.mp4
output2_1.mp4

⚡ Installation (30 Seconds Setup)

conda create -n YOLO python=3.9
conda activate YOLO
pip install thop
pip install tqdm
pip install PyYAML
pip install opencv-python
conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-lts

🏋 Train

  • Configure your dataset path in main.py for training
  • Run bash main.sh $ --train for training, $ is number of GPUs

🧪 Test/Validate

  • Configure your dataset path in main.py for testing
  • Run python main.py --Validate for validation

🔍 Inference (Webcam or Video)

  • Run python main.py --inference for inference

📊 Performance Metrics & Pretrained Checkpoints

Model mAPval
50-95
mAPval
50
params
(M)
FLOPs
@640 (B)
YOLOv11n 39.5 54.8 2.6 6.5
YOLOv11s 47.0 63.5 9.4 21.5
YOLOv11m 51.5 68.1 20.1 68.0
YOLOv11l 53.4 69.7 25.3 86.9
YOLOv11x 54.9 71.3 56.9 194.9

📈 Additional Metrics

📂 Dataset structure

├── COCO 
    ├── images
        ├── train2017
            ├── 1111.jpg
            ├── 2222.jpg
        ├── val2017
            ├── 1111.jpg
            ├── 2222.jpg
    ├── labels
        ├── train2017
            ├── 1111.txt
            ├── 2222.txt
        ├── val2017
            ├── 1111.txt
            ├── 2222.txt

⭐ Star the Repo!

If you find this project helpful, give us a star ⭐

🔗 Reference

YOLOv11

About

YOLOv11 Next-Gen Object Detection using Pytorch

Resources

Stars

Watchers

Forks

Packages

No packages published
0