CS2 YOLO - Object Detection
Collection
6 items
•
Updated
•
2
[ 'c', 'ch', 't', 'th' ]
YOLOv9c
from ultralytics import YOLO
# Load a pretrained YOLO model
model = YOLO(r'weights\yolov9c_cs2.pt')
# Run inference on 'image.png' with arguments
model.predict(
'image.png',
save=True,
device=0
)
https://huggingface.co/ChitoParedes/cs2-yolov10m
Base model
Vombit/yolov9c_cs2