Views
No views yet
| Modelo | Descripción | Balón | Jugador | Árbitro | mAP50 | FPS |
|---|---|---|---|---|---|---|
| v1 | 152 img, 640px | 0.398 | 0.893 | 0.143 | 0.478 | 79 |
| v2 | 743 img, 640px | 0.445 | 0.949 | 0.516 | 0.637 | 84 |
| v3 | 743 img + augmentation, 640px | 0.466 | 0.929 | 0.566 | 0.654 | 57 |
| v4 | 743 img, 1280px | 0.574 | 0.962 | 0.581 | 0.706 | 31 |
1from ultralytics import YOLO
2from huggingface_hub import hf_hub_download
3
4model_path = hf_hub_download(repo_id="hugosanchezgallego/futbol-detector-v4", filename="best.pt")
5model = YOLO(model_path)
6
7results = model("ruta/al/video.mp4", imgsz=1280)