CS2 YOLO - Object Detection
Collection
6 items • Updated
• 4
[ '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
If any of my repositories have been useful to you, saved you time, or inspired you in any way, you can support my work by buying me a coffee ☕ Your support helps me to:
Keep projects maintained and improved
Create new open source repositories
Spend more time documenting and explaining the code
👉 Buy me a coffee here:
Base model
Vombit/yolov9c_cs2