CS2 YOLO - Object Detection
Collection
4 items
•
Updated
['CT', 'CT_head', 'T', 'T_head']
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
)
Base model
jameslahm/yolov10m