CoolFace
Datasetpublic

SAINetset/SAINetset_v8.0

SAINetset - Wildfire Smoke Detection Dataset Dataset of real-world images captured by SAI (Sistema de Alerta de Incendios / Fire Alert System) surveillance nodes for wildfire smoke detection in Cordoba, Argentina. Current version: v8.0 (January 2026) About SAI The SAI (Fire Alert System) is an open-source early wildfire detection platform developed by AlterMundi, a civil association in Argentina. The system uses distributed camera nodes with YOLO-based AI (powered… See the full description on the dataset page: https://huggingface.co/datasets/SAINetset/SAINetset_v8.0.

sourceHugging Facecc-by-4.0updated 8mo agoView on Hugging Face
0likes1.8kdownloads
Dataset Card

SAINetset - Wildfire Smoke Detection Dataset

Dataset of real-world images captured by SAI (Sistema de Alerta de Incendios / Fire Alert System) surveillance nodes for wildfire smoke detection in Cordoba, Argentina.

Current version: v8.0 (January 2026)

About SAI

The SAI (Fire Alert System) is an open-source early wildfire detection platform developed by AlterMundi, a civil association in Argentina. The system uses distributed camera nodes with YOLO-based AI (powered by Ultralytics) to detect smoke in real-time and alert local firefighters via Telegram.

In its first month of operation (September 2025), SAI successfully detected 6 real wildfires (including one at 32.8 km distance) with zero missed detections within the monitored area. Since then, the system has continued detecting fires regularly.

Dataset Description

This dataset contains only images from SAI nodes. It is released separately from third-party datasets for licensing clarity.

What's Included

SplitImagesPositivesNegativesPos:Neg Ratio
Train4,4622004,2621:21
Val1,134451,0891:24
Total5,5962455,3511:22

Content Types

  • True Positives (VP): Real smoke/fire detections from operating nodes
  • False Positives (FP): Hard negatives (urban lights, lens flare, atmospheric conditions)
  • Synthetic: AI-generated smoke added to real backgrounds (photorealistic)
  • Donated: Community-contributed images from the region

Classes

IDClass
0smoke

Label Format

Standard YOLO format (.txt files):

<class_id> <x_center> <y_center> <width> <height>

All coordinates are normalized (0-1). Empty .txt files indicate negative samples (background).

Full Training Dataset

To reproduce SAINet training, combine this dataset with:

  1. 1.D-Fire Dataset - GitHub
  2. 2.~21,000 images of fire and smoke
  3. 3.License: Check repository
  1. 1.Pyro-SDIS Dataset - Hugging Face
  2. 2.~33,000 images from French fire services
  3. 3.License: Check repository

Usage

With Ultralytics YOLO

python
from ultralytics import YOLO

# Train with this dataset
model = YOLO("yolo12m.pt")
model.train(data="path/to/sainetset/data.yaml", epochs=100)

# Or validate
model.val(data="path/to/sainetset/data.yaml")

With Hugging Face Datasets

python
from datasets import load_dataset

# Load the dataset
ds = load_dataset("SAINetset/SAINetset_v8.0")

# Access samples
sample = ds["train"][0]
print(sample)

Direct Download

bash
# Clone with Git LFS
git lfs install
git clone https://huggingface.co/datasets/SAINetset/SAINetset_v8.0

Structure

sainetset/
├── README.md
├── data.yaml
└── data/
    ├── train/
    │   ├── images/    # 4,462 images
    │   └── labels/    # 4,462 label files
    └── val/
        ├── images/    # 1,134 images
        └── labels/    # 1,134 label files

Related Resources

Citation

If you use this dataset, please cite:

bibtex
@misc{sainetset2026,
  title={SAINetset: Wildfire Smoke Detection Dataset from SAI Nodes},
  author={AlterMundi},
  year={2026},
  publisher={Hugging Face},
  url={https://huggingface.co/datasets/SAINetset/SAINetset_v8.0}
}

License

This dataset is released under CC BY 4.0.

You are free to:

  • Share - copy and redistribute the material
  • Adapt - remix, transform, and build upon the material

Under the following terms:

  • Attribution - You must give appropriate credit to AlterMundi

Contact

  • Organization: AlterMundi
  • Project: SAI - Sistema de Alerta de Incendios