jparedesDS
commited on
Commit
•
9f3e5aa
1
Parent(s):
f1f5d1b
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
- es
|
5 |
+
base_model: jameslahm/yolov10s
|
6 |
+
---
|
7 |
+
# Counter Strike 2 players detector
|
8 |
+
|
9 |
+
### Supported Labels
|
10 |
+
[ "none", "ct_body", "ct_head","t_body","t_head" ]
|
11 |
+
|
12 |
+
### models
|
13 |
+
YOLOv10s
|
14 |
+
|
15 |
+
## How to use
|
16 |
+
```
|
17 |
+
from ultralytics import YOLO
|
18 |
+
|
19 |
+
# Load a pretrained YOLO model
|
20 |
+
model = YOLO(r'weights\yolov10s_cs2.pt')
|
21 |
+
|
22 |
+
# Run inference on 'image.png' with arguments
|
23 |
+
model.predict(
|
24 |
+
'image.png',
|
25 |
+
save=True,
|
26 |
+
device=0
|
27 |
+
)
|
28 |
+
```
|
29 |
+
|
30 |
+
# Labels
|
31 |
+
![labels.jpg]()
|
32 |
+
# Results
|
33 |
+
![results.png]()
|
34 |
+
|
35 |
+
# Link YOLOv10m
|
36 |
+
https://huggingface.co/ChitoParedes/cs2-yolov10m
|