jameslahm commited on
Commit
6f058b6
1 Parent(s): da834cb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -9
README.md CHANGED
@@ -1,12 +1,42 @@
1
  ---
2
- title: YOLOv10
3
- emoji: 🔥
4
- colorFrom: purple
5
- colorTo: gray
6
- sdk: gradio
7
- sdk_version: 4.32.1
8
- app_file: app.py
9
- pinned: false
10
  ---
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: agpl-3.0
3
+ tags:
4
+ - object-detection
5
+ - computer-vision
6
+ - yolov10
7
+ datasets:
8
+ - detection-datasets/coco
 
9
  ---
10
 
11
+ ### Model Description
12
+ [YOLOv10: Real-Time End-to-End Object Detection](https://arxiv.org/abs/2405.14458v1)
13
+
14
+ - arXiv: https://arxiv.org/abs/2405.14458v1
15
+ - github: https://github.com/THU-MIG/yolov10
16
+
17
+ ### Installation
18
+ ```
19
+ pip install supervision git+https://github.com/THU-MIG/yolov10.git
20
+ ```
21
+
22
+ ### Yolov10 Inference
23
+ ```python
24
+ from ultralytics import YOLOv10
25
+ import supervision as sv
26
+ import cv2
27
+
28
+ IMAGE_PATH = 'dog.jpeg'
29
+
30
+ model = YOLOv10.from_pretrained('jameslahm/yolov10{n/s/m/b/l/x}')
31
+ model.predict(IMAGE_PATH, show=True)
32
+ ```
33
+
34
+ ### BibTeX Entry and Citation Info
35
+ ```
36
+ @article{wang2024yolov10,
37
+ title={YOLOv10: Real-Time End-to-End Object Detection},
38
+ author={Wang, Ao and Chen, Hui and Liu, Lihao and Chen, Kai and Lin, Zijia and Han, Jungong and Ding, Guiguang},
39
+ journal={arXiv preprint arXiv:2405.14458},
40
+ year={2024}
41
+ }
42
+ ```