Add paper link, GitHub repository, and sample usage to dataset card

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +46 -35
README.md CHANGED
@@ -1,53 +1,52 @@
1
  ---
2
- license: other
3
- pretty_name: WildfireIA Anonymous Benchmark Release
 
4
  task_categories:
5
  - tabular-classification
6
  - tabular-regression
7
  - image-classification
8
  - other
 
9
  tags:
10
  - wildfire
11
  - benchmark
12
  - geospatial
13
  - multimodal
14
  - croissant
15
- size_categories:
16
- - 10K<n<100K
17
  ---
18
 
19
- # WildfireIA Anonymous Benchmark Release
20
 
21
- This anonymous release contains the WildfireIA benchmark data used for review.
22
- WildfireIA is an event-level benchmark for predicting whether a reported
23
- Natural wildfire escapes initial attack from public information available at
24
- fire discovery time.
25
 
26
- ## Contents
27
-
28
- - `data/canonical/raw_feature_tables/`: canonical benchmark tables. These are
29
- the primary dataset artifact. They contain event-level tables, source-level
30
- feature tables, patch-level canonical tables, labels, splits, and manifests.
31
- - Model-ready caches are not included in this compact release; regenerate
32
- them deterministically from the canonical tables with `code/dataloader.py`.
33
- - `code/`: anonymous copies of the cache generation, training, and summary
34
- scripts.
35
- - `metadata/`: release manifest and cache generation commands.
36
- - `croissant.json`: Croissant metadata with Responsible AI fields.
37
 
38
  ## Tasks
39
 
40
- Task 1 predicts initial attack failure. The sample unit is one FPA-FOD Natural
41
- wildfire event. Events with final size at most 10 ha are labeled 0, events with
42
- final size at least 50 ha are labeled 1, and intermediate-size events are
43
- excluded from the Task 1 supervised split.
44
 
45
- Task 2 predicts remaining time-to-containment as a regression target,
46
- `log(1 + containment_hours)`, using the same discovery-time input contract.
47
 
48
- ## Rebuilding Model-Ready Caches
49
 
50
- The canonical tables can regenerate all official model-ready caches:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
 
52
  ```bash
53
  python code/dataloader.py \
@@ -61,13 +60,25 @@ python code/dataloader.py \
61
  --overwrite
62
  ```
63
 
64
- Additional ablation caches are generated by changing `--input_protocol` and
65
- `--weather_days`; see `metadata/cache_generation_commands.md`.
 
 
 
 
66
 
67
  ## Responsible Use
68
 
69
- The benchmark is intended for reproducible scientific comparison and ablation
70
- analysis. It should not be used as a standalone operational dispatch system
71
- without agency validation. The data are public-source derived, but they include
72
- wildfire locations, fire-station locations, roads, population density, and other
73
- geospatial context.
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ size_categories:
4
+ - 10K<n<100K
5
  task_categories:
6
  - tabular-classification
7
  - tabular-regression
8
  - image-classification
9
  - other
10
+ pretty_name: WildfireIA
11
  tags:
12
  - wildfire
13
  - benchmark
14
  - geospatial
15
  - multimodal
16
  - croissant
 
 
17
  ---
18
 
19
+ # WildfireIA: A Nationwide Benchmark for Wildfire Initial Attack Failure Prediction
20
 
21
+ WildfireIA is an event-level benchmark for predicting whether a reported Natural wildfire escapes initial attack (IA) using public information available at fire discovery time. It aligns 38,128 naturally caused FPA-FOD wildfire events with FIRMS/VIIRS thermal detections, gridMET weather and fire-danger variables, LANDFIRE vegetation, fuel, and topography, OpenStreetMap access features, and WorldPop population density.
 
 
 
22
 
23
+ - **Paper:** [A Nationwide Benchmark for Wildfire Initial Attack Failure Prediction with Public Environmental Data](https://huggingface.co/papers/2606.15529)
24
+ - **Repository:** [https://github.com/LabRAI/WildfireIA](https://github.com/LabRAI/WildfireIA)
 
 
 
 
 
 
 
 
 
25
 
26
  ## Tasks
27
 
28
+ - **Task 1 (Initial Attack Failure):** Predicts whether a wildfire escapes early control. Events with final size at most 10 ha are labeled 0, while events with final size at least 50 ha are labeled 1.
29
+ - **Task 2 (Containment Duration):** Predicts the remaining time-to-containment as a regression target: `log(1 + containment_hours)`.
 
 
30
 
31
+ ## Sample Usage
 
32
 
33
+ ### 1. Download the canonical dataset
34
 
35
+ You can download the canonical tables using the `huggingface_hub` library:
36
+
37
+ ```python
38
+ from huggingface_hub import snapshot_download
39
+
40
+ snapshot_download(
41
+ repo_id="WildfireIA/Anonymous-WildfireIA",
42
+ repo_type="dataset",
43
+ local_dir="hf_data",
44
+ )
45
+ ```
46
+
47
+ ### 2. Rebuilding Model-Ready Caches
48
+
49
+ The canonical tables can regenerate all official model-ready caches (tabular, temporal, spatial, or spatiotemporal) using the provided `dataloader.py` script from the GitHub repository:
50
 
51
  ```bash
52
  python code/dataloader.py \
 
60
  --overwrite
61
  ```
62
 
63
+ ## Contents
64
+
65
+ - `data/canonical/raw_feature_tables/`: Canonical benchmark tables containing event-level tables, source-level feature tables, patch-level canonical tables, labels, and splits.
66
+ - `code/`: Scripts for cache generation, training, and summarization.
67
+ - `metadata/`: Release manifest and cache generation commands.
68
+ - `croissant.json`: Croissant metadata with Responsible AI fields.
69
 
70
  ## Responsible Use
71
 
72
+ The benchmark is intended for reproducible scientific comparison and ablation analysis. It should not be used as a standalone operational dispatch system without agency validation. The data are public-source derived, but they include wildfire locations, fire-station locations, roads, population density, and other geospatial context.
73
+
74
+ ## Citation
75
+
76
+ ```bibtex
77
+ @misc{xu2026wildfireia,
78
+ title={A Nationwide Benchmark for Wildfire Initial Attack Failure Prediction with Public Environmental Data},
79
+ author={Xu, Runyang and Cheng, Xueqi and Dong, Yushun},
80
+ year={2026},
81
+ note={Preprint},
82
+ url={https://github.com/LabRAI/WildfireIA}
83
+ }
84
+ ```