Files
gradio-webrtc/demo
freddyaboulton 4d184eabe7 formatting
2024-09-26 12:42:58 -04:00
..
2024-09-25 12:19:40 -04:00
2024-09-26 12:42:58 -04:00
2024-09-25 12:19:40 -04:00
2024-09-26 12:38:42 -04:00
2024-09-26 12:41:18 -04:00
2024-09-25 12:19:40 -04:00
2024-09-26 12:38:42 -04:00
2024-09-26 12:42:58 -04:00
2024-09-26 12:41:18 -04:00

license, tags, datasets, sdk, sdk_version
license tags datasets sdk sdk_version
mit
object-detection
computer-vision
yolov10
detection-datasets/coco
gradio 5.0.0b1

Model Description

YOLOv10: Real-Time End-to-End Object Detection

Installation

pip install supervision git+https://github.com/THU-MIG/yolov10.git

Yolov10 Inference

from ultralytics import YOLOv10
import supervision as sv
import cv2

IMAGE_PATH = 'dog.jpeg'

model = YOLOv10.from_pretrained('jameslahm/yolov10{n/s/m/b/l/x}')
model.predict(IMAGE_PATH, show=True)

BibTeX Entry and Citation Info

@article{wang2024yolov10,
 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}
}