Views
No views yet
| Metric | Value |
|---|---|
| mAP50 | 0.9705 |
| mAP50-95 | 0.8377 |
| Precision | 0.9395 |
| Recall | 0.9416 |
| Inference Speed | 6.7ms (TensorRT/FP16) |


ultralytics library:1from ultralytics import YOLO
2
3# Load the model directly from Hugging Face
4model = YOLO("HLouy/yolov26m-sportsmot-football")
5
6# Run tracking on a football match video
7results = model.track(source="path/to/video.mp4", conf=0.3, iou=0.5, save=True)