YOLOv10: Real-Time End-to-End Object Detection
Paper
•
2405.14458
•
Published
•
6
YOLOv10 model trained from scratch on KITTI dataset for autonomous driving object detection.
This model was trained on the KITTI Object Detection dataset, which contains the following object classes:
car, pedestrian, cyclist
KITTI Object Detection Dataset:
This model can be used with the Ultralytics YOLOv10 framework:
from ultralytics import YOLO
# Load the model
model = YOLO('path/to/best.pt')
# Run inference
results = model('path/to/image.jpg')
# Process results
for result in results:
boxes = result.boxes.xyxy # bounding boxes
scores = result.boxes.conf # confidence scores
classes = result.boxes.cls # class predictions
This model was trained from scratch on the KITTI Object Detection dataset using YOLOv10 architecture.
If you use this model, please cite:
@article{yolov10,
title={YOLOv10: Real-Time End-to-End Object Detection},
author={Wang, Ao and Chen, Hui and Liu, Lihao and Chen, Kai and Lin, Zijia and Han, Jungong and Ding, Guiguang},
journal={arXiv preprint arXiv:2405.14458},
year={2024}
}
This model is released under the MIT License.
YOLOv10, Object Detection, Computer Vision, KITTI, Autonomous Driving, Deep Learning