End-To-End Tracking System
Collection
2 items โข Updated
A fine-tuned YOLO model for detecting fire and smoke in images and video streams, built for real-time safety monitoring.
| ID | Label |
|---|---|
| 0 | fire |
| 1 | smoke |
Fine-tuned on the Home Fire Dataset from Kaggle.
| Metric | Value |
|---|---|
| mAP@50 | 0.930 |
| mAP@50-95 | 0.626 |
| Precision | 0.913 |
| Recall | 0.891 |
from ultralytics import YOLO
model = YOLO("path/to/model.pt")
results = model("image.jpg")
Base model
Ultralytics/YOLO26