Beehzod/yolov26-fire-smoke-detection
0206
yolov26-fire-smoke-detection
Fine-tuned from `yolov26-fire-detection` (YOLOv26-S) using Ultralytics.
Classes
FireSmoke
Dataset
- Images: 7673 train / 925 valid / 960 test
- Check the dataset page above for its license -- not necessarily the same as this repo's
licensefield, which reflects the base model's license.
Training
Results (held-out validation split)
Usage
from ultralytics import YOLO
model = YOLO("best.pt")
results = model.predict("image.jpg", conf=0.25)
for r in results:
for box in r.boxes:
print(model.names[int(box.cls[0])], float(box.conf[0]))