--- license: cc-by-4.0 task_categories: - object-detection tags: - wildfire - smoke - fire-detection - yolo - computer-vision - environmental - early-warning language: - en - es pretty_name: SAINetset - Wildfire Smoke Detection Dataset size_categories: - 1K ``` 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. **D-Fire Dataset** - [GitHub](https://github.com/gaiasd/DFireDataset) - ~21,000 images of fire and smoke - License: Check repository 2. **Pyro-SDIS Dataset** - [Hugging Face](https://huggingface.co/datasets/pyronear/pyro-sdis) - ~33,000 images from French fire services - 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 - **SAINet Model:** [GitHub - sai-sainet-latest](https://github.com/AlterMundi/sai-sainet-latest) - **SAI Project:** [Website](https://sainet.info/) ## 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](https://creativecommons.org/licenses/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](https://sainet.info/) - **Project:** SAI - Sistema de Alerta de Incendios