Valorant YOLO - Object Detection
Collection
2 items
β’
Updated
['Body', 'Head']
from ultralytics import YOLO
# Load a pretrained YOLO model
model = YOLO(r'weights\yolov10b_vlr.pt')
# Run inference on 'image.png' with arguments
model.predict(
'image.png',
save=True,
device=0
)
YOLOv10b summary (fused): 383 layers, 20,414,236 parameters, 0 gradients, 97.9 GFLOPs
Class Images Instances Box(P R mAP50 mAP50-95): 100%|ββββββββββ| 36/36 [00:06<00:00, 5.30it/s]
all 999 2016 0.959 0.886 0.925 0.631
Body 966 1029 0.969 0.914 0.955 0.76
Head 936 987 0.948 0.857 0.896 0.503
Unable to build the model tree, the base model loops to the model itself. Learn more.