Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# YOLOv12-N
|
| 2 |
+
|
| 3 |
+
## Model Description
|
| 4 |
+
**YOLOv12-N** is a variant of the 12th-generation YOLO (You Only Look Once) real-time object detector.
|
| 5 |
+
It builds on prior YOLO models with improved backbone/neck architectures, updated training strategies, and optimizations for both high-performance GPUs and edge devices.
|
| 6 |
+
|
| 7 |
+
## Features
|
| 8 |
+
- **Real-time object detection** optimized for low-latency inference.
|
| 9 |
+
- **High accuracy** across diverse categories and challenging environments.
|
| 10 |
+
- **Lightweight variants** suitable for mobile and embedded deployment.
|
| 11 |
+
- **Scalable**: runs from smartphones to multi-GPU servers.
|
| 12 |
+
- **Extensible**: fine-tuning supported for domain-specific datasets.
|
| 13 |
+
|
| 14 |
+
## Use Cases
|
| 15 |
+
- Autonomous driving and ADAS (Advanced Driver Assistance Systems)
|
| 16 |
+
- Surveillance and security monitoring
|
| 17 |
+
- Industrial automation and defect detection
|
| 18 |
+
- Retail analytics and inventory monitoring
|
| 19 |
+
- Sports analytics and event detection
|
| 20 |
+
|
| 21 |
+
## Inputs and Outputs
|
| 22 |
+
**Input**:
|
| 23 |
+
- RGB images or video frames (any resolution; auto-resized during preprocessing).
|
| 24 |
+
|
| 25 |
+
**Output**:
|
| 26 |
+
- Bounding boxes `(x, y, w, h)`
|
| 27 |
+
- Class labels
|
| 28 |
+
- Confidence scores
|
| 29 |
+
|
| 30 |
+
## License
|
| 31 |
+
- Licensed under [AGPL-3.0](https://github.com/ultralytics/ultralytics?tab=AGPL-3.0-1-ov-file#readme) (same as Ultralytics YOLO).
|
| 32 |
+
|
| 33 |
+
## References
|
| 34 |
+
- Original repo: [https://github.com/sunsmarterjie/yolov12](https://github.com/sunsmarterjie/yolov12)
|
| 35 |
+
- Ultralytics YOLO family: [https://github.com/ultralytics/ultralytics](https://github.com/ultralytics/ultralytics)
|