Views
No views yet
| Model | Parameters | mAP50 | mAP50-95 | Latency (ms) | FPS |
|---|---|---|---|---|---|
| YOLOv9c | 25.3M | 0.792 | 0.485 | 36.3 | 27.6 |
| YOLOv12n | 2.56M | 0.785 | 0.463 | 13.9 | 72.1 |
| YOLOv8n | 3.01M | 0.782 | 0.465 | 6.9 | 144.7 |
| YOLOv11 | 2.58M | 0.779 | 0.460 | 9.3 | 107.0 |
| YOLOv8-FPN | 2.21M | 0.707 | 0.396 | 6.4 | 155.8 |
pip install ultralytics opencv-python1from ultralytics import YOLO
2
3# Load model
4model = YOLO("yolov9c.pt")
5
6# Run inference
7results = model("path/to/image.jpg")
8
9# Visualize results
10results[0].show()