Push model using huggingface_hub.
Browse files- README.md +62 -0
- config.json +86 -0
- model.safetensors +3 -0
README.md
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: agpl-3.0
|
3 |
+
library_name: ultralytics
|
4 |
+
tags:
|
5 |
+
- object-detection
|
6 |
+
- computer-vision
|
7 |
+
- yolov10
|
8 |
+
datasets:
|
9 |
+
- detection-datasets/coco
|
10 |
+
repo_url: https://github.com/THU-MIG/yolov10
|
11 |
+
inference: false
|
12 |
+
---
|
13 |
+
|
14 |
+
### Model Description
|
15 |
+
[YOLOv10: Real-Time End-to-End Object Detection](https://arxiv.org/abs/2405.14458v1)
|
16 |
+
|
17 |
+
- arXiv: https://arxiv.org/abs/2405.14458v1
|
18 |
+
- github: https://github.com/THU-MIG/yolov10
|
19 |
+
|
20 |
+
### Installation
|
21 |
+
```
|
22 |
+
pip install git+https://github.com/THU-MIG/yolov10.git
|
23 |
+
```
|
24 |
+
|
25 |
+
### Training and validation
|
26 |
+
```python
|
27 |
+
from ultralytics import YOLOv10
|
28 |
+
|
29 |
+
model = YOLOv10.from_pretrained('jameslahm/yolov10n')
|
30 |
+
# Training
|
31 |
+
model.train(...)
|
32 |
+
# after training, one can push to the hub
|
33 |
+
model.push_to_hub("your-hf-username/yolov10-finetuned")
|
34 |
+
|
35 |
+
# Validation
|
36 |
+
model.val(...)
|
37 |
+
```
|
38 |
+
|
39 |
+
### Inference
|
40 |
+
|
41 |
+
Here's an end-to-end example showcasing inference on a cats image:
|
42 |
+
|
43 |
+
```python
|
44 |
+
from ultralytics import YOLOv10
|
45 |
+
|
46 |
+
model = YOLOv10.from_pretrained('jameslahm/yolov10n')
|
47 |
+
source = 'http://images.cocodataset.org/val2017/000000039769.jpg'
|
48 |
+
model.predict(source=source, save=True)
|
49 |
+
```
|
50 |
+
which shows:
|
51 |
+
|
52 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/628ece6054698ce61d1e7be3/tBwAsKcQA_96HCYQp7BRr.png)
|
53 |
+
|
54 |
+
### BibTeX Entry and Citation Info
|
55 |
+
```
|
56 |
+
@article{wang2024yolov10,
|
57 |
+
title={YOLOv10: Real-Time End-to-End Object Detection},
|
58 |
+
author={Wang, Ao and Chen, Hui and Liu, Lihao and Chen, Kai and Lin, Zijia and Han, Jungong and Ding, Guiguang},
|
59 |
+
journal={arXiv preprint arXiv:2405.14458},
|
60 |
+
year={2024}
|
61 |
+
}
|
62 |
+
```
|
config.json
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model": "yolov10s.yaml",
|
3 |
+
"names": {
|
4 |
+
"0": "person",
|
5 |
+
"1": "bicycle",
|
6 |
+
"2": "car",
|
7 |
+
"3": "motorcycle",
|
8 |
+
"4": "airplane",
|
9 |
+
"5": "bus",
|
10 |
+
"6": "train",
|
11 |
+
"7": "truck",
|
12 |
+
"8": "boat",
|
13 |
+
"9": "traffic light",
|
14 |
+
"10": "fire hydrant",
|
15 |
+
"11": "stop sign",
|
16 |
+
"12": "parking meter",
|
17 |
+
"13": "bench",
|
18 |
+
"14": "bird",
|
19 |
+
"15": "cat",
|
20 |
+
"16": "dog",
|
21 |
+
"17": "horse",
|
22 |
+
"18": "sheep",
|
23 |
+
"19": "cow",
|
24 |
+
"20": "elephant",
|
25 |
+
"21": "bear",
|
26 |
+
"22": "zebra",
|
27 |
+
"23": "giraffe",
|
28 |
+
"24": "backpack",
|
29 |
+
"25": "umbrella",
|
30 |
+
"26": "handbag",
|
31 |
+
"27": "tie",
|
32 |
+
"28": "suitcase",
|
33 |
+
"29": "frisbee",
|
34 |
+
"30": "skis",
|
35 |
+
"31": "snowboard",
|
36 |
+
"32": "sports ball",
|
37 |
+
"33": "kite",
|
38 |
+
"34": "baseball bat",
|
39 |
+
"35": "baseball glove",
|
40 |
+
"36": "skateboard",
|
41 |
+
"37": "surfboard",
|
42 |
+
"38": "tennis racket",
|
43 |
+
"39": "bottle",
|
44 |
+
"40": "wine glass",
|
45 |
+
"41": "cup",
|
46 |
+
"42": "fork",
|
47 |
+
"43": "knife",
|
48 |
+
"44": "spoon",
|
49 |
+
"45": "bowl",
|
50 |
+
"46": "banana",
|
51 |
+
"47": "apple",
|
52 |
+
"48": "sandwich",
|
53 |
+
"49": "orange",
|
54 |
+
"50": "broccoli",
|
55 |
+
"51": "carrot",
|
56 |
+
"52": "hot dog",
|
57 |
+
"53": "pizza",
|
58 |
+
"54": "donut",
|
59 |
+
"55": "cake",
|
60 |
+
"56": "chair",
|
61 |
+
"57": "couch",
|
62 |
+
"58": "potted plant",
|
63 |
+
"59": "bed",
|
64 |
+
"60": "dining table",
|
65 |
+
"61": "toilet",
|
66 |
+
"62": "tv",
|
67 |
+
"63": "laptop",
|
68 |
+
"64": "mouse",
|
69 |
+
"65": "remote",
|
70 |
+
"66": "keyboard",
|
71 |
+
"67": "cell phone",
|
72 |
+
"68": "microwave",
|
73 |
+
"69": "oven",
|
74 |
+
"70": "toaster",
|
75 |
+
"71": "sink",
|
76 |
+
"72": "refrigerator",
|
77 |
+
"73": "book",
|
78 |
+
"74": "clock",
|
79 |
+
"75": "vase",
|
80 |
+
"76": "scissors",
|
81 |
+
"77": "teddy bear",
|
82 |
+
"78": "hair drier",
|
83 |
+
"79": "toothbrush"
|
84 |
+
},
|
85 |
+
"task": "detect"
|
86 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fed9933de8736a90a7a63f088504247018e15219b20bc414702e1ee7d61468e2
|
3 |
+
size 32746752
|