Update README.md
Browse files
README.md
CHANGED
@@ -1,9 +1,49 @@
|
|
1 |
---
|
|
|
2 |
tags:
|
3 |
-
-
|
4 |
-
-
|
|
|
|
|
|
|
5 |
---
|
6 |
|
7 |
-
|
8 |
-
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 Training/Validation/Prediction
|
23 |
+
```python
|
24 |
+
from ultralytics import YOLOv10
|
25 |
+
import cv2
|
26 |
+
IMAGE_PATH = 'dog.jpeg'
|
27 |
+
|
28 |
+
model = YOLOv10.from_pretrained('jameslahm/yolov10s')
|
29 |
+
# Training
|
30 |
+
model.train(...)
|
31 |
+
# after training, one can push to the hub
|
32 |
+
model.push_to_hub("your-hf-username/yolov10-finetuned")
|
33 |
+
|
34 |
+
# Validation
|
35 |
+
model.val(...)
|
36 |
+
|
37 |
+
# Prediction
|
38 |
+
model.predict(IMAGE_PATH, show=True)
|
39 |
+
```
|
40 |
+
|
41 |
+
### BibTeX Entry and Citation Info
|
42 |
+
```
|
43 |
+
@article{wang2024yolov10,
|
44 |
+
title={YOLOv10: Real-Time End-to-End Object Detection},
|
45 |
+
author={Wang, Ao and Chen, Hui and Liu, Lihao and Chen, Kai and Lin, Zijia and Han, Jungong and Ding, Guiguang},
|
46 |
+
journal={arXiv preprint arXiv:2405.14458},
|
47 |
+
year={2024}
|
48 |
+
}
|
49 |
+
```
|