Views
No views yet
0 — smoke1 — firebest.pt — fine-tuned weights (use this)last.pt — final-epoch weights| Metric | All | Smoke | Fire |
|---|---|---|---|
| mAP50 | 0.754 | — | — |
| mAP50-95 | 0.430 | 0.499 | 0.362 |
| Precision | 0.766 | — | — |
| Recall | 0.688 | — | — |
yolov8n.pt (COCO pretrained)1from huggingface_hub import hf_hub_download
2from ultralytics import YOLO
3
4ckpt = hf_hub_download(repo_id="rabahdev/fire-smoke-yolov8n", filename="best.pt")
5model = YOLO(ckpt)
6results = model("image.jpg")
7results[0].show()