File size: 407 Bytes
74ac659 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
---
language:
- en
base_model: jameslahm/yolov10m
tags:
- object detection
- cs2
---
# Counter Strike 2 players detector
### Supported Labels
[ 'CT', 'T' ]
### models
YOLOv10m
## How to use
from ultralytics import YOLO
# Load a pretrained YOLO model
model = YOLO(r'weights\yolov10m_cs2.pt')
# Run inference on 'image.png' with arguments
model.predict(
'image.png',
save=True,
device=0
) |