Views
No views yet
| Metric | Score |
|---|---|
| mAP@50 | 94.9% |
| mAP@50-95 | 68.0% |
| Precision | 89.6% |
| Recall | 88.8% |
| Parameter | Value |
|---|---|
| Base Model | YOLOv26-S |
| Epochs | 100 |
| Batch Size | 16 |
| Image Size | 640x640 |
| Optimizer | AdamW |
| Learning Rate | 0.01 |
pip install ultralytics1from ultralytics import YOLO
2
3# Load model
4model = YOLO("path/to/best.pt")
5
6# Run inference
7results = model.predict("image.jpg", conf=0.25)
8
9# Process results
10for result in results:
11 boxes = result.boxes
12 for box in boxes:
13 cls = int(box.cls[0])
14 conf = float(box.conf[0])
15 label = model.names[cls]
16 print(f"Detected: {label} ({conf:.2f})")1from ultralytics import YOLO
2
3model = YOLO("path/to/best.pt")
4results = model.predict("video.mp4", save=True, conf=0.25)1from ultralytics import YOLO
2
3model = YOLO("path/to/best.pt")
4results = model.predict(source=0, show=True, conf=0.25)

1@misc{yolov26-fire-detection,
2 author = {Salah AL-Haismawi},
3 title = {YOLOv26 Fire Detection},
4 year = {2026},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://huggingface.co/SalahALHaismawi/yolov26-fire-detection}}
7}