Views
No views yet
imgsz=960:| metric | baseline | fine-tuned |
|---|---|---|
| mAP50 | 0.5878 | 0.8996 |
| mAP50-95 | 0.2212 | 0.4581 |
| precision | 0.633 | 0.925 |
| recall | 0.581 | 0.871 |
imgsz=640 letterboxes
it to ~5 px. Raising inference resolution to 960 took detection from 47% to
95.6% with no retraining at all. This 26M-parameter model then beat an
86M-parameter baseline, largely by being trained at the resolution it is served
at.1from ultralytics import YOLO
2model = YOLO("ball_finetuned.pt")
3results = model.predict(frame, imgsz=1600, conf=0.02)