yx21e commited on
Commit
d3bc17d
·
verified ·
1 Parent(s): 3b2f8c6

Polish WildFIRE-FM model card with final paper assets

Browse files
.gitattributes CHANGED
@@ -39,3 +39,7 @@ assets/task_rank_map_preview.png filter=lfs diff=lfs merge=lfs -text
39
  paper/manuscript_final.pdf filter=lfs diff=lfs merge=lfs -text
40
  paper_outputs/figures/fig_selection_regret_scatter.pdf filter=lfs diff=lfs merge=lfs -text
41
  paper_outputs/figures/overview_wildfire.pdf filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
39
  paper/manuscript_final.pdf filter=lfs diff=lfs merge=lfs -text
40
  paper_outputs/figures/fig_selection_regret_scatter.pdf filter=lfs diff=lfs merge=lfs -text
41
  paper_outputs/figures/overview_wildfire.pdf filter=lfs diff=lfs merge=lfs -text
42
+ assets/overview_final.png filter=lfs diff=lfs merge=lfs -text
43
+ assets/primary_rank_change_final.png filter=lfs diff=lfs merge=lfs -text
44
+ assets/selection_regret_final.png filter=lfs diff=lfs merge=lfs -text
45
+ assets/supporting_rank_map_final.png filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -15,62 +15,36 @@ pretty_name: WildFIRE-FM
15
 
16
  # WildFIRE-FM
17
 
18
- **WildFIRE-FM** is a wildfire-specialized regional reference backbone for gridded wildfire prediction and fixed-contract evaluation. It is trained on California regional weather, active-fire supervision, static fuel/canopy/exposure layers, and event-level wildfire resources used by supporting tasks in the paper.
19
 
20
- This repository is organized as a model release first, with paper artifacts included for reproducibility. It contains the released WildFIRE-FM checkpoints, model configuration metadata, final manuscript artifacts, and scripts used to rebuild the public paper figures/tables from compact summaries. Raw data are **not** redistributed here.
21
 
22
- ## What Is In This Release
23
 
24
- **Model weights.** Five seeded WildFIRE-FM occupancy checkpoints are provided under `models/wildfire_fm/checkpoints/seed_*/best_firms_prauc.pt`. The checkpoints are compact U-Net PyTorch state files trained for 12-hour wildfire occupancy on a 5 km EPSG:5070 grid.
25
 
26
- **Model metadata.** Training configs, run summaries, tile summaries, and checkpoint hashes are under `models/wildfire_fm/`.
27
 
28
- **Evaluation artifacts.** Final paper figures, tables, and compact result summaries are under `paper_outputs/` and `artifacts/results/`.
29
 
30
- **Data-source notes.** The data used by the study are public or provider-hosted, but must be obtained separately. See `data_sources/DATA_SOURCES.md`.
31
 
32
- ## Model At A Glance
33
 
34
- | Item | WildFIRE-FM release detail |
 
 
 
 
35
  |---|---|
36
  | Task | 12-hour gridded wildfire occupancy prediction |
37
- | Region/grid | California regional grid, 5 km, EPSG:5070 |
38
  | Inputs | 16 channels: weather fields, validity masks, static fuel/canopy/exposure layers |
39
- | Backbone | Compact U-Net with occupancy and auxiliary spatial-support heads |
40
  | Training split | June-August 2024 train, September 2024 validation, October 2024 test |
41
- | Seeds | 1, 7, 42, 99, 123 |
42
- | Raw data | Not bundled; source list and access notes are documented |
43
-
44
- ## Main Evaluation Results
45
-
46
- The paper evaluates WildFIRE-FM and ten Earth-FM baselines under fixed task contracts. Scores below are final-paper mean ± std values.
47
-
48
- | Contract | WildFIRE-FM | Best comparator | Reading |
49
- |---|---:|---:|---|
50
- | Occupancy union F1 (%) | 59.0656 ± 2.7372 | 60.1506 ± 7.5865, ClimaX | Matching rule changes the apparent winner. |
51
- | Fire-spread AP (%) | 30.0900 ± 1.2500 | 16.6221 ± 1.6965, Aurora | WildFIRE-FM leads the spread AP contract. |
52
- | Final burned-area log-RMSE | 1.1657 ± 0.0126 | 1.3070 ± 0.0980, DLWP | Lower is better; task form matters. |
53
- | Analog nDCG@10 | 0.5099 ± 0.0336 | 0.5086 ± 0.0440, AlphaEarth | Retrieval behaves differently from spatial decision tasks. |
54
- | Smoke PM2.5 RMSE | 4.4646 ± 0.0060 | 4.4403 ± 0.0488, AlphaEarth | Supporting tasks do not preserve one universal ranking. |
55
- | Extreme-heat RMSE-C | 0.2179 ± 0.0043 | 0.2194 ± 0.0039, AlphaEarth | Error metrics use a separate contract. |
56
-
57
- ## Visual Summary
58
-
59
- **Head-selection sensitivity under fixed features.** The plot shows selection regret when a head chosen by PR-AUC differs from the head chosen by the decision metric.
60
-
61
- ![Selection-regret preview](assets/selection_regret_preview.png)
62
-
63
- **Task-form rank changes.** The supporting-task rank map shows that backbone ordering changes when the task form and metric family change.
64
 
65
- ![Task-rank map preview](assets/task_rank_map_preview.png)
66
-
67
- **Primary-task rank changes.** The primary-task rank-change map summarizes how occupancy and spread rankings change across fixed matching rules.
68
-
69
- ![Primary-rank-change preview](assets/primary_rank_change_preview.png)
70
-
71
- ## Loading A Checkpoint
72
-
73
- The released weights are PyTorch checkpoints. The model architecture used by the checkpoints is documented in `models/wildfire_fm/modeling_unet.py` and mirrors the compact U-Net used in the paper.
74
 
75
  ```python
76
  import torch
@@ -93,46 +67,73 @@ model.load_state_dict(state)
93
  model.eval()
94
  ```
95
 
96
- The raw gridded inputs are not included. To run inference on new data, construct the same 16-channel grid described in `data_sources/DATA_SOURCES.md` and the paper's Section 2.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
 
98
- ## Data Used By The Study
99
 
100
- The study uses public or provider-hosted resources but does not redistribute the raw data:
 
 
 
 
 
 
 
 
 
 
 
 
101
 
102
  - NOAA HRRR fields for regional weather inputs.
103
  - NASA FIRMS active-fire detections for occupancy supervision.
104
  - LANDFIRE fuel and canopy layers for static landscape context.
105
  - Wildfire Risk to Communities housing density and LandScan population for exposure context.
106
- - WFIGS and MTBS event-level resources for supporting burned-area and analog tasks.
107
  - External Earth-FM/backbone assets for comparator features.
108
 
109
- See `data_sources/DATA_SOURCES.md` for source roles and access entry points.
110
-
111
- ## Repository Layout
112
-
113
- ```text
114
- models/wildfire_fm/ WildFIRE-FM configs, metrics, checkpoint manifest, and model code
115
- paper/manuscript_final.pdf final paper PDF from the current release bundle
116
- paper_outputs/ final paper figures and TeX table blocks
117
- artifacts/results/ compact CSV/JSON summaries used by paper outputs
118
- experiments/ sanitized rerun scripts and Slurm template
119
- data_sources/ data-source notes; no raw data included
120
- scripts/ paper-output rebuild and audit utilities
121
- ```
122
 
123
  ## Reproducing Released Paper Outputs
124
 
125
- The lightweight paper-output check uses compact released artifacts and does not require raw data or GPUs.
126
 
127
  ```bash
128
  python3 scripts/reproduce_paper_outputs.py
129
  ```
130
 
131
- This rebuilds selected figures, checks hashes, and audits the release for stale labels or placeholders. Full raw-data reruns require separately downloaded source data and local feature caches.
 
 
 
 
 
 
 
 
 
 
 
 
132
 
133
  ## Limitations
134
 
135
- This release is not a raw-data mirror and is not a general global wildfire forecasting product. WildFIRE-FM is a regional reference backbone trained for the study's fixed-contract comparisons. Use outside the California regional grid requires new preprocessing, validation, and contract-specific evaluation.
136
 
137
  ## Citation
138
 
 
15
 
16
  # WildFIRE-FM
17
 
18
+ ![WildFIRE-FM summary](assets/wildfire_fm_model_card.svg)
19
 
20
+ **WildFIRE-FM** is a wildfire-specialized regional reference backbone for 12-hour gridded wildfire occupancy prediction on a 5 km California grid. It is released with five seeded PyTorch checkpoints, model code, final-paper artifacts, and data-source notes. The raw data are **not** redistributed.
21
 
22
+ The model is intended as a reproducible reference backbone for fixed-contract wildfire evaluation, not as a general global wildfire forecasting product. It was trained with regional weather, active-fire supervision, static fuel/canopy/exposure layers, and event-level wildfire resources used by supporting tasks in the paper.
23
 
24
+ ## Release Contents
25
 
26
+ ![Release contents](assets/release_contents.svg)
27
 
28
+ **Weights.** Five seeded checkpoints are available at `models/wildfire_fm/checkpoints/seed_*/best_firms_prauc.pt`. Each file is listed with SHA-256 and byte size in `models/wildfire_fm/checkpoint_manifest.json`.
29
 
30
+ **Model code.** The compact U-Net definition is provided in `models/wildfire_fm/modeling_unet.py`, with a short loading example below.
31
 
32
+ **Paper artifacts.** The final manuscript PDF and the final paper figures/tables are included under `paper/` and `paper_outputs/`. Compact CSV/JSON summaries are under `artifacts/results/`.
33
 
34
+ **Data notes.** Data sources and access entry points are documented in `data_sources/DATA_SOURCES.md`; users must obtain source data from the original providers.
35
+
36
+ ## Model Details
37
+
38
+ | Field | Value |
39
  |---|---|
40
  | Task | 12-hour gridded wildfire occupancy prediction |
41
+ | Grid | California regional grid, 5 km, EPSG:5070 |
42
  | Inputs | 16 channels: weather fields, validity masks, static fuel/canopy/exposure layers |
43
+ | Architecture | Compact U-Net with occupancy and auxiliary spatial-support heads |
44
  | Training split | June-August 2024 train, September 2024 validation, October 2024 test |
45
+ | Released seeds | 1, 7, 42, 99, 123 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
 
47
+ ## Quick Load
 
 
 
 
 
 
 
 
48
 
49
  ```python
50
  import torch
 
67
  model.eval()
68
  ```
69
 
70
+ The checkpoint expects the same 16-channel gridded input described in the paper and in `data_sources/DATA_SOURCES.md`. This repository does not include raw HRRR, FIRMS, LANDFIRE, WRC, LandScan, WFIGS, MTBS, or comparator feature caches.
71
+
72
+ ## Evaluation Snapshot
73
+
74
+ The paper evaluates WildFIRE-FM and ten Earth-FM comparators under fixed task contracts. A few final-paper WildFIRE-FM values are:
75
+
76
+ - **Occupancy union F1:** `59.0656 ± 2.7372` percent.
77
+ - **Fire-spread AP:** `30.0900 ± 1.2500` percent.
78
+ - **Final burned-area log-RMSE:** `1.1657 ± 0.0126`, where lower is better.
79
+ - **Analog retrieval nDCG@10:** `0.5099 ± 0.0336`.
80
+ - **Smoke PM2.5 RMSE:** `4.4646 ± 0.0060`, where lower is better.
81
+ - **Extreme-heat RMSE-C:** `0.2179 ± 0.0043`, where lower is better.
82
+
83
+ The full final-paper tables are included as TeX blocks under `paper_outputs/tables/`.
84
+
85
+ ### Fixed-Contract Checks From The Final Paper
86
 
87
+ **Head-selection regret.** This final-paper figure shows that choosing a lightweight head by a ranking metric can lose decision performance under the same frozen features.
88
 
89
+ ![Head-selection regret](assets/selection_regret_final.png)
90
+
91
+ **Supporting-task rank map.** This final-paper figure shows that model ordering changes across burned area, analog retrieval, smoke PM2.5, and extreme heat task contracts.
92
+
93
+ ![Supporting task rank map](assets/supporting_rank_map_final.png)
94
+
95
+ **Primary-task rank changes.** This final-paper figure summarizes rank changes across fixed primary-task contracts.
96
+
97
+ ![Primary rank changes](assets/primary_rank_change_final.png)
98
+
99
+ ## Data Sources
100
+
101
+ The study uses public or provider-hosted resources, but the processed data are not bundled here:
102
 
103
  - NOAA HRRR fields for regional weather inputs.
104
  - NASA FIRMS active-fire detections for occupancy supervision.
105
  - LANDFIRE fuel and canopy layers for static landscape context.
106
  - Wildfire Risk to Communities housing density and LandScan population for exposure context.
107
+ - WFIGS and MTBS event-level resources for burned-area and analog tasks.
108
  - External Earth-FM/backbone assets for comparator features.
109
 
110
+ See `data_sources/DATA_SOURCES.md` for source roles and access links.
 
 
 
 
 
 
 
 
 
 
 
 
111
 
112
  ## Reproducing Released Paper Outputs
113
 
114
+ The lightweight check verifies the released final-paper artifacts from compact summaries. It does not require raw data or GPUs.
115
 
116
  ```bash
117
  python3 scripts/reproduce_paper_outputs.py
118
  ```
119
 
120
+ Full raw-data reruns require separately downloaded source data, local feature caches, and cluster-specific paths. Sanitized reference scripts and a Slurm template are provided under `experiments/`.
121
+
122
+ ## Repository Layout
123
+
124
+ ```text
125
+ models/wildfire_fm/ model code, manifests, and checkpoint metadata
126
+ paper/ final manuscript PDF and LaTeX source snapshot
127
+ paper_outputs/ final paper figures and TeX table blocks
128
+ artifacts/results/ compact CSV/JSON summaries for released outputs
129
+ experiments/ sanitized raw-rerun references and Slurm template
130
+ data_sources/ source-data roles and access notes
131
+ scripts/ artifact verification and figure/table rebuild helpers
132
+ ```
133
 
134
  ## Limitations
135
 
136
+ WildFIRE-FM is a regional reference model trained for the paper's fixed-contract comparisons. Use outside the California regional grid requires new preprocessing, validation, and contract-specific evaluation. The repository does not provide operational alerts, raw data, or third-party comparator weights.
137
 
138
  ## Citation
139
 
artifacts/manifests/paper_outputs.sha256 CHANGED
@@ -1,6 +1,9 @@
1
- d0f724c709d39f9655e6e0c74b2ef51e6d7fadec6fb9d272fa605660d9416ff5 assets/primary_rank_change_preview.png
2
- 44bd6782e56031510ebb2401f42983d625294ccc3573659277876be7c158a97a assets/selection_regret_preview.png
3
- a209caf6d8fa1d2c3be45086e397c534dbefe79176f87a8fa9b12c82b770e475 assets/task_rank_map_preview.png
 
 
 
4
  c342978b2f0f25cf6e430b860702895bbb3b512145c8c6e38aa2233b416d835e paper/manuscript_final.pdf
5
  b369d13e0419fa8272ccdc994b6642f3b141248a879c030218e387c583537eb2 paper_outputs/figures/fig_fireprone_contract_progression_compact.pdf
6
  e3110c70c3cf8ecb8671163a401a155920266e3f907f9c6baf08e27ec6e6c410 paper_outputs/figures/fig_primary_rank_change_map.pdf
 
1
+ 6db4f4aff90da8709edff97e4782aee9b4c5e8feefec7c7431a4ec8787cfe57c assets/overview_final.png
2
+ ca11c75c03078a9be26421b527ab5a49f5fc43ce8e5edd7da14af120a247b67c assets/primary_rank_change_final.png
3
+ 1f992d7245b55b8674c00753efbd0e25f4e3be658e736b353772624dea2b7a8f assets/release_contents.svg
4
+ 5552fb6cca6a0a683592e724b4bd562f923cf99c04e2abdb846546b1d67aecc4 assets/selection_regret_final.png
5
+ 34807e65ca71365a26a3b74cae70e6b40ae6f2151110e12c53e0efa9f8b726aa assets/supporting_rank_map_final.png
6
+ 024505248c8ba2bbb50d36d0b015d7fd7fbf5577b8b34faadda0efc972c6d3e8 assets/wildfire_fm_model_card.svg
7
  c342978b2f0f25cf6e430b860702895bbb3b512145c8c6e38aa2233b416d835e paper/manuscript_final.pdf
8
  b369d13e0419fa8272ccdc994b6642f3b141248a879c030218e387c583537eb2 paper_outputs/figures/fig_fireprone_contract_progression_compact.pdf
9
  e3110c70c3cf8ecb8671163a401a155920266e3f907f9c6baf08e27ec6e6c410 paper_outputs/figures/fig_primary_rank_change_map.pdf
artifacts/manifests/paper_outputs.yml CHANGED
@@ -1,60 +1,70 @@
1
- figures:
2
- fig:toy_occupancy_contract:
3
- output: paper_outputs/figures/matching.pdf
4
- type: static_vector
5
- fig:task_contract_tiles:
6
- output: paper_outputs/figures/fig_task_contract_tiles.pdf
7
- type: static_vector
8
- fig:selection_regret_diagnostic:
9
- output: paper_outputs/figures/fig_selection_regret_rq2.tikz
10
- builder: scripts/build_selection_regret_rq2_figure.py
11
- inputs:
12
- - artifacts/results/selection_regret_scope_sweep_20260505.csv
13
- fig:fireprone_contract_progression:
14
- output: paper_outputs/figures/fig_fireprone_contract_progression_compact.pdf
15
- builder: scripts/build_fireprone_contract_progression_figure.py
16
- inputs:
17
- - artifacts/results/fireprone_contract_progression_summary.json
18
- fig:task_comparator_normalized_map:
19
- output: paper_outputs/figures/fig_task_rank_map.pdf
20
- builder: scripts/build_task_rank_map.py
21
- inputs:
22
- - paper_outputs/tables/tab_primary_results.tex
23
- - paper_outputs/tables/tab_supporting_results.tex
24
- tables:
25
- tab:primary_results:
26
- output: paper_outputs/tables/tab_primary_results.tex
27
- tab:supporting_results:
28
- output: paper_outputs/tables/tab_supporting_results.tex
29
- tab:app_matching_rule_params:
30
- output: paper_outputs/tables/tab_app_matching_rule_params.tex
31
- tab:app_contract_params_full:
32
- output: paper_outputs/tables/tab_app_contract_params_full.tex
33
- tab:app_scope_params:
34
- output: paper_outputs/tables/tab_app_scope_params.tex
35
- tab:fireprone_contract_progression:
36
- output: paper_outputs/tables/tab_fireprone_contract_progression.tex
37
- inputs:
38
- - artifacts/results/fireprone_contract_progression_summary.json
39
- tab:appendix_selection_regret_tolerance:
40
- output: paper_outputs/tables/tab_appendix_selection_regret_tolerance.tex
41
- inputs:
42
- - artifacts/results/selection_regret_all_backbones_20260504.csv
43
- tab:app_occupancy_ppr_scope:
44
- output: paper_outputs/tables/tab_app_occupancy_ppr_scope.tex
45
- inputs:
46
- - artifacts/results/fireprone_contract_progression_summary.json
47
- tab:app_spread_ap_by_scope:
48
- output: paper_outputs/tables/tab_app_spread_ap_by_scope.tex
49
- tab:app_burned_area_median_acre:
50
- output: paper_outputs/tables/tab_app_burned_area_median_acre.tex
51
- tab:app_analog_rank_depth:
52
- output: paper_outputs/tables/tab_app_analog_rank_depth.tex
53
- tab:app_smoke_high_event:
54
- output: paper_outputs/tables/tab_app_smoke_high_event.tex
55
- tab:app_heat_event_pr:
56
- output: paper_outputs/tables/tab_app_heat_event_pr.tex
57
- tab:app_seed_robustness:
58
- output: paper_outputs/tables/tab_app_seed_robustness.tex
59
- tab:app_head_architectures:
60
- output: paper_outputs/tables/tab_app_head_architectures.tex
 
 
 
 
 
 
 
 
 
 
 
1
+ # Auto-generated output manifest for the Hugging Face release.
2
+ outputs:
3
+ - path: assets/overview_final.png
4
+ sha256: 6db4f4aff90da8709edff97e4782aee9b4c5e8feefec7c7431a4ec8787cfe57c
5
+ - path: assets/primary_rank_change_final.png
6
+ sha256: ca11c75c03078a9be26421b527ab5a49f5fc43ce8e5edd7da14af120a247b67c
7
+ - path: assets/release_contents.svg
8
+ sha256: 1f992d7245b55b8674c00753efbd0e25f4e3be658e736b353772624dea2b7a8f
9
+ - path: assets/selection_regret_final.png
10
+ sha256: 5552fb6cca6a0a683592e724b4bd562f923cf99c04e2abdb846546b1d67aecc4
11
+ - path: assets/supporting_rank_map_final.png
12
+ sha256: 34807e65ca71365a26a3b74cae70e6b40ae6f2151110e12c53e0efa9f8b726aa
13
+ - path: assets/wildfire_fm_model_card.svg
14
+ sha256: 024505248c8ba2bbb50d36d0b015d7fd7fbf5577b8b34faadda0efc972c6d3e8
15
+ - path: paper/manuscript_final.pdf
16
+ sha256: c342978b2f0f25cf6e430b860702895bbb3b512145c8c6e38aa2233b416d835e
17
+ - path: paper_outputs/figures/fig_fireprone_contract_progression_compact.pdf
18
+ sha256: b369d13e0419fa8272ccdc994b6642f3b141248a879c030218e387c583537eb2
19
+ - path: paper_outputs/figures/fig_primary_rank_change_map.pdf
20
+ sha256: e3110c70c3cf8ecb8671163a401a155920266e3f907f9c6baf08e27ec6e6c410
21
+ - path: paper_outputs/figures/fig_rank_heatmap1.pdf
22
+ sha256: 4e5b791ba4d136f722bd75a61097203836819ce9411def1caac4cc1e6d881275
23
+ - path: paper_outputs/figures/fig_selection_regret_rq2.tikz
24
+ sha256: b2e56403e2774c457dd12c4685e2dc7492e22e32df46fcc5c37b3087110f2439
25
+ - path: paper_outputs/figures/fig_selection_regret_scatter.pdf
26
+ sha256: fabb8b55aac901199cc03773741a26685becffd074f52568c93bee517c2c42c0
27
+ - path: paper_outputs/figures/fig_task_contract_tiles.pdf
28
+ sha256: bc4d35ad9cb4c1f9ba8f31c7c340d9684c9dd2d55f5a2e60604a2b58b90cbe40
29
+ - path: paper_outputs/figures/fig_task_rank_map.pdf
30
+ sha256: c382f5d69f25cc2f5db174601a33d0fd0928b44910a2a4b1c131954bd42113d9
31
+ - path: paper_outputs/figures/matching.pdf
32
+ sha256: 015ab951b0af5c130e4894092a5dd0bb0fd62e710467163a9df8246d8cf369f4
33
+ - path: paper_outputs/figures/overview_wildfire.pdf
34
+ sha256: 7dca6ae4a9b179693802f47d24dd66734c0f332b372a7976832a0d429333b755
35
+ - path: paper_outputs/tables/tab_app_analog_rank_depth.tex
36
+ sha256: e8abbd2668517f5cae14933ed943fe103e74132886b0ff48ecd1685978549504
37
+ - path: paper_outputs/tables/tab_app_burned_area_median_acre.tex
38
+ sha256: 81db28aace3366625f1cfd5935892eb5af672d5ecd8327e6dcba00b7b04e2b3c
39
+ - path: paper_outputs/tables/tab_app_contract_params_full.tex
40
+ sha256: 4a93401ef355c02eb0cc6b2e9a1506f9ed9d912301ec6829581247e40991bdfb
41
+ - path: paper_outputs/tables/tab_app_head_architectures.tex
42
+ sha256: 3c5398c28e6243b1784b27d2e9eab1a5c60e6e6d2cfd14a79aa6fd1e0499b871
43
+ - path: paper_outputs/tables/tab_app_heat_event_pr.tex
44
+ sha256: f740b8f076490e852efa88fa8180ca08bb6b12901ff3ec3687c7e5c0b236da4e
45
+ - path: paper_outputs/tables/tab_app_matching_rule_params.tex
46
+ sha256: 86e97a394ceae8cc6eafd6d1021b44d13a117378ead87bfee662cc90a1e0e54b
47
+ - path: paper_outputs/tables/tab_app_occupancy_ppr_scope.tex
48
+ sha256: 0b1ad4587dd440fdabf771000b1c971daa9222e946a3404c9beae10dd7ea67c6
49
+ - path: paper_outputs/tables/tab_app_scope_params.tex
50
+ sha256: 4e79672c28a938cd9ba1bc0e423e7169eca389251a22357aff6fe84d3cbfa889
51
+ - path: paper_outputs/tables/tab_app_seed_robustness.tex
52
+ sha256: 6850ee131e203f66392c79f17f59214672b362274f42285b252b83ac0ede1eb3
53
+ - path: paper_outputs/tables/tab_app_smoke_high_event.tex
54
+ sha256: 1ca91ca451f846e59cb62ea64a616780c698b9dee80918a05467bd6c40df2dd5
55
+ - path: paper_outputs/tables/tab_app_spread_ap_by_scope.tex
56
+ sha256: cd65372622e8dd388adb1122a3e93b22d2090fba836405b08a078d5159b182de
57
+ - path: paper_outputs/tables/tab_appendix_selection_regret_tolerance.tex
58
+ sha256: 2b168c92af29ae40c324e9660d48177ea0c79e4559a3c2aa571d53043ee83b53
59
+ - path: paper_outputs/tables/tab_fireprone_contract_progression.tex
60
+ sha256: c822daa85e29dde4ac92b4be34f4d41040fa04da3a2674bdc4d0494dbaaceb69
61
+ - path: paper_outputs/tables/tab_primary_results.tex
62
+ sha256: 6672c62a150d83a351f4fa23ac04537d9aaae01af6056f689437d9b7d8bcee40
63
+ - path: paper_outputs/tables/tab_selection_regret_full_head.tex
64
+ sha256: d11d82273acb389b46c8fc1d15c1e37f1f90332ae9d1fb7b8eb5ff0f8847dc2d
65
+ - path: paper_outputs/tables/tab_selection_regret_scope.tex
66
+ sha256: 11f230e0462ded2821f3d5d45421d8b8278b61695d76799246d2e8bf873e2789
67
+ - path: paper_outputs/tables/tab_selection_regret_scope_sweep.tex
68
+ sha256: 3b1277700ececdbb4107667a5d4166a75224a84282810ec5d21bbf2ebc7fa163
69
+ - path: paper_outputs/tables/tab_supporting_results.tex
70
+ sha256: 717555b2584658c936aa8fc27b63f1068dc5f796a297bcef0576cf020b3ddaf8
artifacts/results/fireprone_contract_progression_summary.json CHANGED
@@ -1106,7 +1106,7 @@
1106
  "source_priority": 0
1107
  },
1108
  {
1109
- "model_tag": "pangu24",
1110
  "label": "Pangu-Weather",
1111
  "seed": 1,
1112
  "scope": "full_domain",
@@ -1124,7 +1124,7 @@
1124
  "source_priority": 0
1125
  },
1126
  {
1127
- "model_tag": "pangu24",
1128
  "label": "Pangu-Weather",
1129
  "seed": 1,
1130
  "scope": "train_fire_top05pct",
@@ -1142,7 +1142,7 @@
1142
  "source_priority": 0
1143
  },
1144
  {
1145
- "model_tag": "pangu24",
1146
  "label": "Pangu-Weather",
1147
  "seed": 1,
1148
  "scope": "train_fire_top10pct",
@@ -1160,7 +1160,7 @@
1160
  "source_priority": 0
1161
  },
1162
  {
1163
- "model_tag": "pangu24",
1164
  "label": "Pangu-Weather",
1165
  "seed": 1,
1166
  "scope": "train_fire_top20pct",
@@ -1178,7 +1178,7 @@
1178
  "source_priority": 0
1179
  },
1180
  {
1181
- "model_tag": "pangu24",
1182
  "label": "Pangu-Weather",
1183
  "seed": 123,
1184
  "scope": "full_domain",
@@ -1196,7 +1196,7 @@
1196
  "source_priority": 0
1197
  },
1198
  {
1199
- "model_tag": "pangu24",
1200
  "label": "Pangu-Weather",
1201
  "seed": 123,
1202
  "scope": "train_fire_top05pct",
@@ -1214,7 +1214,7 @@
1214
  "source_priority": 0
1215
  },
1216
  {
1217
- "model_tag": "pangu24",
1218
  "label": "Pangu-Weather",
1219
  "seed": 123,
1220
  "scope": "train_fire_top10pct",
@@ -1232,7 +1232,7 @@
1232
  "source_priority": 0
1233
  },
1234
  {
1235
- "model_tag": "pangu24",
1236
  "label": "Pangu-Weather",
1237
  "seed": 123,
1238
  "scope": "train_fire_top20pct",
@@ -1250,7 +1250,7 @@
1250
  "source_priority": 0
1251
  },
1252
  {
1253
- "model_tag": "pangu24",
1254
  "label": "Pangu-Weather",
1255
  "seed": 42,
1256
  "scope": "full_domain",
@@ -1268,7 +1268,7 @@
1268
  "source_priority": 0
1269
  },
1270
  {
1271
- "model_tag": "pangu24",
1272
  "label": "Pangu-Weather",
1273
  "seed": 42,
1274
  "scope": "train_fire_top05pct",
@@ -1286,7 +1286,7 @@
1286
  "source_priority": 0
1287
  },
1288
  {
1289
- "model_tag": "pangu24",
1290
  "label": "Pangu-Weather",
1291
  "seed": 42,
1292
  "scope": "train_fire_top10pct",
@@ -1304,7 +1304,7 @@
1304
  "source_priority": 0
1305
  },
1306
  {
1307
- "model_tag": "pangu24",
1308
  "label": "Pangu-Weather",
1309
  "seed": 42,
1310
  "scope": "train_fire_top20pct",
@@ -1322,7 +1322,7 @@
1322
  "source_priority": 0
1323
  },
1324
  {
1325
- "model_tag": "pangu24",
1326
  "label": "Pangu-Weather",
1327
  "seed": 7,
1328
  "scope": "full_domain",
@@ -1340,7 +1340,7 @@
1340
  "source_priority": 0
1341
  },
1342
  {
1343
- "model_tag": "pangu24",
1344
  "label": "Pangu-Weather",
1345
  "seed": 7,
1346
  "scope": "train_fire_top05pct",
@@ -1358,7 +1358,7 @@
1358
  "source_priority": 0
1359
  },
1360
  {
1361
- "model_tag": "pangu24",
1362
  "label": "Pangu-Weather",
1363
  "seed": 7,
1364
  "scope": "train_fire_top10pct",
@@ -1376,7 +1376,7 @@
1376
  "source_priority": 0
1377
  },
1378
  {
1379
- "model_tag": "pangu24",
1380
  "label": "Pangu-Weather",
1381
  "seed": 7,
1382
  "scope": "train_fire_top20pct",
@@ -1394,7 +1394,7 @@
1394
  "source_priority": 0
1395
  },
1396
  {
1397
- "model_tag": "pangu24",
1398
  "label": "Pangu-Weather",
1399
  "seed": 99,
1400
  "scope": "full_domain",
@@ -1412,7 +1412,7 @@
1412
  "source_priority": 0
1413
  },
1414
  {
1415
- "model_tag": "pangu24",
1416
  "label": "Pangu-Weather",
1417
  "seed": 99,
1418
  "scope": "train_fire_top05pct",
@@ -1430,7 +1430,7 @@
1430
  "source_priority": 0
1431
  },
1432
  {
1433
- "model_tag": "pangu24",
1434
  "label": "Pangu-Weather",
1435
  "seed": 99,
1436
  "scope": "train_fire_top10pct",
@@ -1448,7 +1448,7 @@
1448
  "source_priority": 0
1449
  },
1450
  {
1451
- "model_tag": "pangu24",
1452
  "label": "Pangu-Weather",
1453
  "seed": 99,
1454
  "scope": "train_fire_top20pct",
@@ -3698,7 +3698,7 @@
3698
  "source_priority": 0
3699
  },
3700
  {
3701
- "model_tag": "pangu24_h24",
3702
  "label": "Pangu-Weather",
3703
  "seed": 17,
3704
  "scope": "full_domain",
@@ -3716,7 +3716,7 @@
3716
  "source_priority": 0
3717
  },
3718
  {
3719
- "model_tag": "pangu24_h24",
3720
  "label": "Pangu-Weather",
3721
  "seed": 17,
3722
  "scope": "train_fire_top05pct",
@@ -3734,7 +3734,7 @@
3734
  "source_priority": 0
3735
  },
3736
  {
3737
- "model_tag": "pangu24_h24",
3738
  "label": "Pangu-Weather",
3739
  "seed": 17,
3740
  "scope": "train_fire_top10pct",
@@ -3752,7 +3752,7 @@
3752
  "source_priority": 0
3753
  },
3754
  {
3755
- "model_tag": "pangu24_h24",
3756
  "label": "Pangu-Weather",
3757
  "seed": 17,
3758
  "scope": "train_fire_top20pct",
@@ -3770,7 +3770,7 @@
3770
  "source_priority": 0
3771
  },
3772
  {
3773
- "model_tag": "pangu24_h24",
3774
  "label": "Pangu-Weather",
3775
  "seed": 37,
3776
  "scope": "full_domain",
@@ -3788,7 +3788,7 @@
3788
  "source_priority": 0
3789
  },
3790
  {
3791
- "model_tag": "pangu24_h24",
3792
  "label": "Pangu-Weather",
3793
  "seed": 37,
3794
  "scope": "train_fire_top05pct",
@@ -3806,7 +3806,7 @@
3806
  "source_priority": 0
3807
  },
3808
  {
3809
- "model_tag": "pangu24_h24",
3810
  "label": "Pangu-Weather",
3811
  "seed": 37,
3812
  "scope": "train_fire_top10pct",
@@ -3824,7 +3824,7 @@
3824
  "source_priority": 0
3825
  },
3826
  {
3827
- "model_tag": "pangu24_h24",
3828
  "label": "Pangu-Weather",
3829
  "seed": 37,
3830
  "scope": "train_fire_top20pct",
@@ -3842,7 +3842,7 @@
3842
  "source_priority": 0
3843
  },
3844
  {
3845
- "model_tag": "pangu24_h24",
3846
  "label": "Pangu-Weather",
3847
  "seed": 57,
3848
  "scope": "full_domain",
@@ -3860,7 +3860,7 @@
3860
  "source_priority": 0
3861
  },
3862
  {
3863
- "model_tag": "pangu24_h24",
3864
  "label": "Pangu-Weather",
3865
  "seed": 57,
3866
  "scope": "train_fire_top05pct",
@@ -3878,7 +3878,7 @@
3878
  "source_priority": 0
3879
  },
3880
  {
3881
- "model_tag": "pangu24_h24",
3882
  "label": "Pangu-Weather",
3883
  "seed": 57,
3884
  "scope": "train_fire_top10pct",
@@ -3896,7 +3896,7 @@
3896
  "source_priority": 0
3897
  },
3898
  {
3899
- "model_tag": "pangu24_h24",
3900
  "label": "Pangu-Weather",
3901
  "seed": 57,
3902
  "scope": "train_fire_top20pct",
@@ -3914,7 +3914,7 @@
3914
  "source_priority": 0
3915
  },
3916
  {
3917
- "model_tag": "pangu24_h24",
3918
  "label": "Pangu-Weather",
3919
  "seed": 7,
3920
  "scope": "full_domain",
@@ -3932,7 +3932,7 @@
3932
  "source_priority": 0
3933
  },
3934
  {
3935
- "model_tag": "pangu24_h24",
3936
  "label": "Pangu-Weather",
3937
  "seed": 7,
3938
  "scope": "train_fire_top05pct",
@@ -3950,7 +3950,7 @@
3950
  "source_priority": 0
3951
  },
3952
  {
3953
- "model_tag": "pangu24_h24",
3954
  "label": "Pangu-Weather",
3955
  "seed": 7,
3956
  "scope": "train_fire_top10pct",
@@ -3968,7 +3968,7 @@
3968
  "source_priority": 0
3969
  },
3970
  {
3971
- "model_tag": "pangu24_h24",
3972
  "label": "Pangu-Weather",
3973
  "seed": 7,
3974
  "scope": "train_fire_top20pct",
@@ -3986,7 +3986,7 @@
3986
  "source_priority": 0
3987
  },
3988
  {
3989
- "model_tag": "pangu24_h24",
3990
  "label": "Pangu-Weather",
3991
  "seed": 97,
3992
  "scope": "full_domain",
@@ -4004,7 +4004,7 @@
4004
  "source_priority": 0
4005
  },
4006
  {
4007
- "model_tag": "pangu24_h24",
4008
  "label": "Pangu-Weather",
4009
  "seed": 97,
4010
  "scope": "train_fire_top05pct",
@@ -4022,7 +4022,7 @@
4022
  "source_priority": 0
4023
  },
4024
  {
4025
- "model_tag": "pangu24_h24",
4026
  "label": "Pangu-Weather",
4027
  "seed": 97,
4028
  "scope": "train_fire_top10pct",
@@ -4040,7 +4040,7 @@
4040
  "source_priority": 0
4041
  },
4042
  {
4043
- "model_tag": "pangu24_h24",
4044
  "label": "Pangu-Weather",
4045
  "seed": 97,
4046
  "scope": "train_fire_top20pct",
@@ -5318,7 +5318,7 @@
5318
  "source_priority": 2
5319
  },
5320
  {
5321
- "model_tag": "pangu24",
5322
  "label": "Pangu-Weather",
5323
  "seed": 1,
5324
  "scope": "full_domain",
@@ -5336,7 +5336,7 @@
5336
  "source_priority": 2
5337
  },
5338
  {
5339
- "model_tag": "pangu24",
5340
  "label": "Pangu-Weather",
5341
  "seed": 1,
5342
  "scope": "train_fire_top05pct",
@@ -5354,7 +5354,7 @@
5354
  "source_priority": 2
5355
  },
5356
  {
5357
- "model_tag": "pangu24",
5358
  "label": "Pangu-Weather",
5359
  "seed": 1,
5360
  "scope": "train_fire_top10pct",
@@ -5372,7 +5372,7 @@
5372
  "source_priority": 2
5373
  },
5374
  {
5375
- "model_tag": "pangu24",
5376
  "label": "Pangu-Weather",
5377
  "seed": 123,
5378
  "scope": "full_domain",
@@ -5390,7 +5390,7 @@
5390
  "source_priority": 2
5391
  },
5392
  {
5393
- "model_tag": "pangu24",
5394
  "label": "Pangu-Weather",
5395
  "seed": 123,
5396
  "scope": "train_fire_top05pct",
@@ -5408,7 +5408,7 @@
5408
  "source_priority": 2
5409
  },
5410
  {
5411
- "model_tag": "pangu24",
5412
  "label": "Pangu-Weather",
5413
  "seed": 123,
5414
  "scope": "train_fire_top10pct",
@@ -5426,7 +5426,7 @@
5426
  "source_priority": 2
5427
  },
5428
  {
5429
- "model_tag": "pangu24",
5430
  "label": "Pangu-Weather",
5431
  "seed": 42,
5432
  "scope": "full_domain",
@@ -5444,7 +5444,7 @@
5444
  "source_priority": 2
5445
  },
5446
  {
5447
- "model_tag": "pangu24",
5448
  "label": "Pangu-Weather",
5449
  "seed": 42,
5450
  "scope": "train_fire_top05pct",
@@ -5462,7 +5462,7 @@
5462
  "source_priority": 2
5463
  },
5464
  {
5465
- "model_tag": "pangu24",
5466
  "label": "Pangu-Weather",
5467
  "seed": 42,
5468
  "scope": "train_fire_top10pct",
@@ -5480,7 +5480,7 @@
5480
  "source_priority": 2
5481
  },
5482
  {
5483
- "model_tag": "pangu24",
5484
  "label": "Pangu-Weather",
5485
  "seed": 7,
5486
  "scope": "full_domain",
@@ -5498,7 +5498,7 @@
5498
  "source_priority": 2
5499
  },
5500
  {
5501
- "model_tag": "pangu24",
5502
  "label": "Pangu-Weather",
5503
  "seed": 7,
5504
  "scope": "train_fire_top05pct",
@@ -5516,7 +5516,7 @@
5516
  "source_priority": 2
5517
  },
5518
  {
5519
- "model_tag": "pangu24",
5520
  "label": "Pangu-Weather",
5521
  "seed": 7,
5522
  "scope": "train_fire_top10pct",
@@ -5534,7 +5534,7 @@
5534
  "source_priority": 2
5535
  },
5536
  {
5537
- "model_tag": "pangu24",
5538
  "label": "Pangu-Weather",
5539
  "seed": 99,
5540
  "scope": "full_domain",
@@ -5552,7 +5552,7 @@
5552
  "source_priority": 2
5553
  },
5554
  {
5555
- "model_tag": "pangu24",
5556
  "label": "Pangu-Weather",
5557
  "seed": 99,
5558
  "scope": "train_fire_top05pct",
@@ -5570,7 +5570,7 @@
5570
  "source_priority": 2
5571
  },
5572
  {
5573
- "model_tag": "pangu24",
5574
  "label": "Pangu-Weather",
5575
  "seed": 99,
5576
  "scope": "train_fire_top10pct",
@@ -6308,7 +6308,7 @@
6308
  "source_priority": 3
6309
  },
6310
  {
6311
- "model_tag": "pangu24",
6312
  "label": "Pangu-Weather",
6313
  "seed": 1,
6314
  "scope": "train_fire_top20pct",
@@ -6326,7 +6326,7 @@
6326
  "source_priority": 3
6327
  },
6328
  {
6329
- "model_tag": "pangu24",
6330
  "label": "Pangu-Weather",
6331
  "seed": 123,
6332
  "scope": "train_fire_top20pct",
@@ -6344,7 +6344,7 @@
6344
  "source_priority": 3
6345
  },
6346
  {
6347
- "model_tag": "pangu24",
6348
  "label": "Pangu-Weather",
6349
  "seed": 42,
6350
  "scope": "train_fire_top20pct",
@@ -6362,7 +6362,7 @@
6362
  "source_priority": 3
6363
  },
6364
  {
6365
- "model_tag": "pangu24",
6366
  "label": "Pangu-Weather",
6367
  "seed": 7,
6368
  "scope": "train_fire_top20pct",
@@ -6380,7 +6380,7 @@
6380
  "source_priority": 3
6381
  },
6382
  {
6383
- "model_tag": "pangu24",
6384
  "label": "Pangu-Weather",
6385
  "seed": 99,
6386
  "scope": "train_fire_top20pct",
@@ -6763,11 +6763,11 @@
6763
  0.02
6764
  ],
6765
  "paths": [
6766
- "<local paths omitted>",
6767
- "<local paths omitted>",
6768
- "<local paths omitted>",
6769
- "<local paths omitted>",
6770
- "<local paths omitted>"
6771
  ]
6772
  },
6773
  {
@@ -6953,11 +6953,11 @@
6953
  0.01
6954
  ],
6955
  "paths": [
6956
- "<local paths omitted>",
6957
- "<local paths omitted>",
6958
- "<local paths omitted>",
6959
- "<local paths omitted>",
6960
- "<local paths omitted>"
6961
  ]
6962
  },
6963
  {
@@ -7143,11 +7143,11 @@
7143
  0.01
7144
  ],
7145
  "paths": [
7146
- "<local paths omitted>",
7147
- "<local paths omitted>",
7148
- "<local paths omitted>",
7149
- "<local paths omitted>",
7150
- "<local paths omitted>"
7151
  ]
7152
  },
7153
  {
@@ -7334,11 +7334,11 @@
7334
  0.02
7335
  ],
7336
  "paths": [
7337
- "<local paths omitted>",
7338
- "<local paths omitted>",
7339
- "<local paths omitted>",
7340
- "<local paths omitted>",
7341
- "<local paths omitted>"
7342
  ]
7343
  },
7344
  {
@@ -7527,11 +7527,11 @@
7527
  0.0002848515287041664
7528
  ],
7529
  "paths": [
7530
- "<local paths omitted>",
7531
- "<local paths omitted>",
7532
- "<local paths omitted>",
7533
- "<local paths omitted>",
7534
- "<local paths omitted>"
7535
  ]
7536
  },
7537
  {
@@ -7720,11 +7720,11 @@
7720
  0.0002847809228114784
7721
  ],
7722
  "paths": [
7723
- "<local paths omitted>",
7724
- "<local paths omitted>",
7725
- "<local paths omitted>",
7726
- "<local paths omitted>",
7727
- "<local paths omitted>"
7728
  ]
7729
  },
7730
  {
@@ -7913,11 +7913,11 @@
7913
  0.0002847809228114784
7914
  ],
7915
  "paths": [
7916
- "<local paths omitted>",
7917
- "<local paths omitted>",
7918
- "<local paths omitted>",
7919
- "<local paths omitted>",
7920
- "<local paths omitted>"
7921
  ]
7922
  },
7923
  {
@@ -8106,11 +8106,11 @@
8106
  0.0002847809228114784
8107
  ],
8108
  "paths": [
8109
- "<local paths omitted>",
8110
- "<local paths omitted>",
8111
- "<local paths omitted>",
8112
- "<local paths omitted>",
8113
- "<local paths omitted>"
8114
  ]
8115
  },
8116
  {
@@ -8299,11 +8299,11 @@
8299
  0.0014632086704014654
8300
  ],
8301
  "paths": [
8302
- "<local paths omitted>",
8303
- "<local paths omitted>",
8304
- "<local paths omitted>",
8305
- "<local paths omitted>",
8306
- "<local paths omitted>"
8307
  ]
8308
  },
8309
  {
@@ -8492,11 +8492,11 @@
8492
  0.0014882655838293205
8493
  ],
8494
  "paths": [
8495
- "<local paths omitted>",
8496
- "<local paths omitted>",
8497
- "<local paths omitted>",
8498
- "<local paths omitted>",
8499
- "<local paths omitted>"
8500
  ]
8501
  },
8502
  {
@@ -8685,11 +8685,11 @@
8685
  0.0014882655838293205
8686
  ],
8687
  "paths": [
8688
- "<local paths omitted>",
8689
- "<local paths omitted>",
8690
- "<local paths omitted>",
8691
- "<local paths omitted>",
8692
- "<local paths omitted>"
8693
  ]
8694
  },
8695
  {
@@ -8878,11 +8878,11 @@
8878
  0.0015083511573617753
8879
  ],
8880
  "paths": [
8881
- "<local paths omitted>",
8882
- "<local paths omitted>",
8883
- "<local paths omitted>",
8884
- "<local paths omitted>",
8885
- "<local paths omitted>"
8886
  ]
8887
  },
8888
  {
@@ -9068,11 +9068,11 @@
9068
  0.1
9069
  ],
9070
  "paths": [
9071
- "<local paths omitted>",
9072
- "<local paths omitted>",
9073
- "<local paths omitted>",
9074
- "<local paths omitted>",
9075
- "<local paths omitted>"
9076
  ]
9077
  },
9078
  {
@@ -9259,11 +9259,11 @@
9259
  0.1
9260
  ],
9261
  "paths": [
9262
- "<local paths omitted>",
9263
- "<local paths omitted>",
9264
- "<local paths omitted>",
9265
- "<local paths omitted>",
9266
- "<local paths omitted>"
9267
  ]
9268
  },
9269
  {
@@ -9450,11 +9450,11 @@
9450
  0.1
9451
  ],
9452
  "paths": [
9453
- "<local paths omitted>",
9454
- "<local paths omitted>",
9455
- "<local paths omitted>",
9456
- "<local paths omitted>",
9457
- "<local paths omitted>"
9458
  ]
9459
  },
9460
  {
@@ -9641,11 +9641,11 @@
9641
  0.2
9642
  ],
9643
  "paths": [
9644
- "<local paths omitted>",
9645
- "<local paths omitted>",
9646
- "<local paths omitted>",
9647
- "<local paths omitted>",
9648
- "<local paths omitted>"
9649
  ]
9650
  },
9651
  {
@@ -9833,11 +9833,11 @@
9833
  0.5
9834
  ],
9835
  "paths": [
9836
- "<local paths omitted>",
9837
- "<local paths omitted>",
9838
- "<local paths omitted>",
9839
- "<local paths omitted>",
9840
- "<local paths omitted>"
9841
  ]
9842
  },
9843
  {
@@ -10024,11 +10024,11 @@
10024
  0.3
10025
  ],
10026
  "paths": [
10027
- "<local paths omitted>",
10028
- "<local paths omitted>",
10029
- "<local paths omitted>",
10030
- "<local paths omitted>",
10031
- "<local paths omitted>"
10032
  ]
10033
  },
10034
  {
@@ -10215,11 +10215,11 @@
10215
  0.3
10216
  ],
10217
  "paths": [
10218
- "<local paths omitted>",
10219
- "<local paths omitted>",
10220
- "<local paths omitted>",
10221
- "<local paths omitted>",
10222
- "<local paths omitted>"
10223
  ]
10224
  },
10225
  {
@@ -10405,11 +10405,11 @@
10405
  0.3
10406
  ],
10407
  "paths": [
10408
- "<local paths omitted>",
10409
- "<local paths omitted>",
10410
- "<local paths omitted>",
10411
- "<local paths omitted>",
10412
- "<local paths omitted>"
10413
  ]
10414
  },
10415
  {
@@ -10596,11 +10596,11 @@
10596
  0.5
10597
  ],
10598
  "paths": [
10599
- "<local paths omitted>",
10600
- "<local paths omitted>",
10601
- "<local paths omitted>",
10602
- "<local paths omitted>",
10603
- "<local paths omitted>"
10604
  ]
10605
  },
10606
  {
@@ -10786,11 +10786,11 @@
10786
  0.3
10787
  ],
10788
  "paths": [
10789
- "<local paths omitted>",
10790
- "<local paths omitted>",
10791
- "<local paths omitted>",
10792
- "<local paths omitted>",
10793
- "<local paths omitted>"
10794
  ]
10795
  },
10796
  {
@@ -10977,11 +10977,11 @@
10977
  0.5
10978
  ],
10979
  "paths": [
10980
- "<local paths omitted>",
10981
- "<local paths omitted>",
10982
- "<local paths omitted>",
10983
- "<local paths omitted>",
10984
- "<local paths omitted>"
10985
  ]
10986
  },
10987
  {
@@ -11168,11 +11168,11 @@
11168
  0.5
11169
  ],
11170
  "paths": [
11171
- "<local paths omitted>",
11172
- "<local paths omitted>",
11173
- "<local paths omitted>",
11174
- "<local paths omitted>",
11175
- "<local paths omitted>"
11176
  ]
11177
  },
11178
  {
@@ -11358,11 +11358,11 @@
11358
  0.3
11359
  ],
11360
  "paths": [
11361
- "<local paths omitted>",
11362
- "<local paths omitted>",
11363
- "<local paths omitted>",
11364
- "<local paths omitted>",
11365
- "<local paths omitted>"
11366
  ]
11367
  },
11368
  {
@@ -11550,11 +11550,11 @@
11550
  0.3
11551
  ],
11552
  "paths": [
11553
- "<local paths omitted>",
11554
- "<local paths omitted>",
11555
- "<local paths omitted>",
11556
- "<local paths omitted>",
11557
- "<local paths omitted>"
11558
  ]
11559
  },
11560
  {
@@ -11740,11 +11740,11 @@
11740
  0.3
11741
  ],
11742
  "paths": [
11743
- "<local paths omitted>",
11744
- "<local paths omitted>",
11745
- "<local paths omitted>",
11746
- "<local paths omitted>",
11747
- "<local paths omitted>"
11748
  ]
11749
  },
11750
  {
@@ -11930,15 +11930,15 @@
11930
  0.3
11931
  ],
11932
  "paths": [
11933
- "<local paths omitted>",
11934
- "<local paths omitted>",
11935
- "<local paths omitted>",
11936
- "<local paths omitted>",
11937
- "<local paths omitted>"
11938
  ]
11939
  },
11940
  {
11941
- "model_tag": "pangu24",
11942
  "label": "Pangu-Weather",
11943
  "scope": "full_domain",
11944
  "scope_label": "global",
@@ -12123,15 +12123,15 @@
12123
  0.00027882601716555655
12124
  ],
12125
  "paths": [
12126
- "<local paths omitted>",
12127
- "<local paths omitted>",
12128
- "<local paths omitted>",
12129
- "<local paths omitted>",
12130
- "<local paths omitted>"
12131
  ]
12132
  },
12133
  {
12134
- "model_tag": "pangu24",
12135
  "label": "Pangu-Weather",
12136
  "scope": "train_fire_top05pct",
12137
  "scope_label": "top 5%",
@@ -12316,15 +12316,15 @@
12316
  0.00028155450127087533
12317
  ],
12318
  "paths": [
12319
- "<local paths omitted>",
12320
- "<local paths omitted>",
12321
- "<local paths omitted>",
12322
- "<local paths omitted>",
12323
- "<local paths omitted>"
12324
  ]
12325
  },
12326
  {
12327
- "model_tag": "pangu24",
12328
  "label": "Pangu-Weather",
12329
  "scope": "train_fire_top10pct",
12330
  "scope_label": "top 10%",
@@ -12509,15 +12509,15 @@
12509
  0.000285720539977774
12510
  ],
12511
  "paths": [
12512
- "<local paths omitted>",
12513
- "<local paths omitted>",
12514
- "<local paths omitted>",
12515
- "<local paths omitted>",
12516
- "<local paths omitted>"
12517
  ]
12518
  },
12519
  {
12520
- "model_tag": "pangu24",
12521
  "label": "Pangu-Weather",
12522
  "scope": "train_fire_top20pct",
12523
  "scope_label": "top 20%",
@@ -12702,15 +12702,15 @@
12702
  0.00028135377215221524
12703
  ],
12704
  "paths": [
12705
- "<local paths omitted>",
12706
- "<local paths omitted>",
12707
- "<local paths omitted>",
12708
- "<local paths omitted>",
12709
- "<local paths omitted>"
12710
  ]
12711
  },
12712
  {
12713
- "model_tag": "pangu24_h24",
12714
  "label": "Pangu-Weather",
12715
  "scope": "full_domain",
12716
  "scope_label": "global",
@@ -12893,15 +12893,15 @@
12893
  0.5
12894
  ],
12895
  "paths": [
12896
- "<local paths omitted>",
12897
- "<local paths omitted>",
12898
- "<local paths omitted>",
12899
- "<local paths omitted>",
12900
- "<local paths omitted>"
12901
  ]
12902
  },
12903
  {
12904
- "model_tag": "pangu24_h24",
12905
  "label": "Pangu-Weather",
12906
  "scope": "train_fire_top05pct",
12907
  "scope_label": "top 5%",
@@ -13083,15 +13083,15 @@
13083
  0.3
13084
  ],
13085
  "paths": [
13086
- "<local paths omitted>",
13087
- "<local paths omitted>",
13088
- "<local paths omitted>",
13089
- "<local paths omitted>",
13090
- "<local paths omitted>"
13091
  ]
13092
  },
13093
  {
13094
- "model_tag": "pangu24_h24",
13095
  "label": "Pangu-Weather",
13096
  "scope": "train_fire_top10pct",
13097
  "scope_label": "top 10%",
@@ -13274,15 +13274,15 @@
13274
  0.5
13275
  ],
13276
  "paths": [
13277
- "<local paths omitted>",
13278
- "<local paths omitted>",
13279
- "<local paths omitted>",
13280
- "<local paths omitted>",
13281
- "<local paths omitted>"
13282
  ]
13283
  },
13284
  {
13285
- "model_tag": "pangu24_h24",
13286
  "label": "Pangu-Weather",
13287
  "scope": "train_fire_top20pct",
13288
  "scope_label": "top 20%",
@@ -13465,11 +13465,11 @@
13465
  0.5
13466
  ],
13467
  "paths": [
13468
- "<local paths omitted>",
13469
- "<local paths omitted>",
13470
- "<local paths omitted>",
13471
- "<local paths omitted>",
13472
- "<local paths omitted>"
13473
  ]
13474
  },
13475
  {
@@ -13656,11 +13656,11 @@
13656
  0.3
13657
  ],
13658
  "paths": [
13659
- "<local paths omitted>",
13660
- "<local paths omitted>",
13661
- "<local paths omitted>",
13662
- "<local paths omitted>",
13663
- "<local paths omitted>"
13664
  ]
13665
  },
13666
  {
@@ -13847,11 +13847,11 @@
13847
  0.3
13848
  ],
13849
  "paths": [
13850
- "<local paths omitted>",
13851
- "<local paths omitted>",
13852
- "<local paths omitted>",
13853
- "<local paths omitted>",
13854
- "<local paths omitted>"
13855
  ]
13856
  },
13857
  {
@@ -14038,11 +14038,11 @@
14038
  0.3
14039
  ],
14040
  "paths": [
14041
- "<local paths omitted>",
14042
- "<local paths omitted>",
14043
- "<local paths omitted>",
14044
- "<local paths omitted>",
14045
- "<local paths omitted>"
14046
  ]
14047
  },
14048
  {
@@ -14229,11 +14229,11 @@
14229
  0.3
14230
  ],
14231
  "paths": [
14232
- "<local paths omitted>",
14233
- "<local paths omitted>",
14234
- "<local paths omitted>",
14235
- "<local paths omitted>",
14236
- "<local paths omitted>"
14237
  ]
14238
  },
14239
  {
@@ -14422,11 +14422,11 @@
14422
  0.00028831177041865885
14423
  ],
14424
  "paths": [
14425
- "<local paths omitted>",
14426
- "<local paths omitted>",
14427
- "<local paths omitted>",
14428
- "<local paths omitted>",
14429
- "<local paths omitted>"
14430
  ]
14431
  },
14432
  {
@@ -14615,11 +14615,11 @@
14615
  0.0002883114793803543
14616
  ],
14617
  "paths": [
14618
- "<local paths omitted>",
14619
- "<local paths omitted>",
14620
- "<local paths omitted>",
14621
- "<local paths omitted>",
14622
- "<local paths omitted>"
14623
  ]
14624
  },
14625
  {
@@ -14808,11 +14808,11 @@
14808
  0.0002883114793803543
14809
  ],
14810
  "paths": [
14811
- "<local paths omitted>",
14812
- "<local paths omitted>",
14813
- "<local paths omitted>",
14814
- "<local paths omitted>",
14815
- "<local paths omitted>"
14816
  ]
14817
  },
14818
  {
@@ -15001,11 +15001,11 @@
15001
  0.0002883114793803543
15002
  ],
15003
  "paths": [
15004
- "<local paths omitted>",
15005
- "<local paths omitted>",
15006
- "<local paths omitted>",
15007
- "<local paths omitted>",
15008
- "<local paths omitted>"
15009
  ]
15010
  },
15011
  {
@@ -15190,11 +15190,11 @@
15190
  0.95
15191
  ],
15192
  "paths": [
15193
- "<local paths omitted>",
15194
- "<local paths omitted>",
15195
- "<local paths omitted>",
15196
- "<local paths omitted>",
15197
- "<local paths omitted>"
15198
  ]
15199
  },
15200
  {
@@ -15380,11 +15380,11 @@
15380
  0.95
15381
  ],
15382
  "paths": [
15383
- "<local paths omitted>",
15384
- "<local paths omitted>",
15385
- "<local paths omitted>",
15386
- "<local paths omitted>",
15387
- "<local paths omitted>"
15388
  ]
15389
  },
15390
  {
@@ -15570,11 +15570,11 @@
15570
  0.95
15571
  ],
15572
  "paths": [
15573
- "<local paths omitted>",
15574
- "<local paths omitted>",
15575
- "<local paths omitted>",
15576
- "<local paths omitted>",
15577
- "<local paths omitted>"
15578
  ]
15579
  },
15580
  {
@@ -15760,11 +15760,11 @@
15760
  0.95
15761
  ],
15762
  "paths": [
15763
- "<local paths omitted>",
15764
- "<local paths omitted>",
15765
- "<local paths omitted>",
15766
- "<local paths omitted>",
15767
- "<local paths omitted>"
15768
  ]
15769
  },
15770
  {
@@ -15953,11 +15953,11 @@
15953
  0.000301085616229102
15954
  ],
15955
  "paths": [
15956
- "<local paths omitted>",
15957
- "<local paths omitted>",
15958
- "<local paths omitted>",
15959
- "<local paths omitted>",
15960
- "<local paths omitted>"
15961
  ]
15962
  },
15963
  {
@@ -16146,11 +16146,11 @@
16146
  0.000301085616229102
16147
  ],
16148
  "paths": [
16149
- "<local paths omitted>",
16150
- "<local paths omitted>",
16151
- "<local paths omitted>",
16152
- "<local paths omitted>",
16153
- "<local paths omitted>"
16154
  ]
16155
  },
16156
  {
@@ -16339,11 +16339,11 @@
16339
  0.000301085616229102
16340
  ],
16341
  "paths": [
16342
- "<local paths omitted>",
16343
- "<local paths omitted>",
16344
- "<local paths omitted>",
16345
- "<local paths omitted>",
16346
- "<local paths omitted>"
16347
  ]
16348
  },
16349
  {
@@ -16532,11 +16532,11 @@
16532
  0.00030111230444163084
16533
  ],
16534
  "paths": [
16535
- "<local paths omitted>",
16536
- "<local paths omitted>",
16537
- "<local paths omitted>",
16538
- "<local paths omitted>",
16539
- "<local paths omitted>"
16540
  ]
16541
  }
16542
  ]
 
1106
  "source_priority": 0
1107
  },
1108
  {
1109
+ "model_tag": "pangu_weather",
1110
  "label": "Pangu-Weather",
1111
  "seed": 1,
1112
  "scope": "full_domain",
 
1124
  "source_priority": 0
1125
  },
1126
  {
1127
+ "model_tag": "pangu_weather",
1128
  "label": "Pangu-Weather",
1129
  "seed": 1,
1130
  "scope": "train_fire_top05pct",
 
1142
  "source_priority": 0
1143
  },
1144
  {
1145
+ "model_tag": "pangu_weather",
1146
  "label": "Pangu-Weather",
1147
  "seed": 1,
1148
  "scope": "train_fire_top10pct",
 
1160
  "source_priority": 0
1161
  },
1162
  {
1163
+ "model_tag": "pangu_weather",
1164
  "label": "Pangu-Weather",
1165
  "seed": 1,
1166
  "scope": "train_fire_top20pct",
 
1178
  "source_priority": 0
1179
  },
1180
  {
1181
+ "model_tag": "pangu_weather",
1182
  "label": "Pangu-Weather",
1183
  "seed": 123,
1184
  "scope": "full_domain",
 
1196
  "source_priority": 0
1197
  },
1198
  {
1199
+ "model_tag": "pangu_weather",
1200
  "label": "Pangu-Weather",
1201
  "seed": 123,
1202
  "scope": "train_fire_top05pct",
 
1214
  "source_priority": 0
1215
  },
1216
  {
1217
+ "model_tag": "pangu_weather",
1218
  "label": "Pangu-Weather",
1219
  "seed": 123,
1220
  "scope": "train_fire_top10pct",
 
1232
  "source_priority": 0
1233
  },
1234
  {
1235
+ "model_tag": "pangu_weather",
1236
  "label": "Pangu-Weather",
1237
  "seed": 123,
1238
  "scope": "train_fire_top20pct",
 
1250
  "source_priority": 0
1251
  },
1252
  {
1253
+ "model_tag": "pangu_weather",
1254
  "label": "Pangu-Weather",
1255
  "seed": 42,
1256
  "scope": "full_domain",
 
1268
  "source_priority": 0
1269
  },
1270
  {
1271
+ "model_tag": "pangu_weather",
1272
  "label": "Pangu-Weather",
1273
  "seed": 42,
1274
  "scope": "train_fire_top05pct",
 
1286
  "source_priority": 0
1287
  },
1288
  {
1289
+ "model_tag": "pangu_weather",
1290
  "label": "Pangu-Weather",
1291
  "seed": 42,
1292
  "scope": "train_fire_top10pct",
 
1304
  "source_priority": 0
1305
  },
1306
  {
1307
+ "model_tag": "pangu_weather",
1308
  "label": "Pangu-Weather",
1309
  "seed": 42,
1310
  "scope": "train_fire_top20pct",
 
1322
  "source_priority": 0
1323
  },
1324
  {
1325
+ "model_tag": "pangu_weather",
1326
  "label": "Pangu-Weather",
1327
  "seed": 7,
1328
  "scope": "full_domain",
 
1340
  "source_priority": 0
1341
  },
1342
  {
1343
+ "model_tag": "pangu_weather",
1344
  "label": "Pangu-Weather",
1345
  "seed": 7,
1346
  "scope": "train_fire_top05pct",
 
1358
  "source_priority": 0
1359
  },
1360
  {
1361
+ "model_tag": "pangu_weather",
1362
  "label": "Pangu-Weather",
1363
  "seed": 7,
1364
  "scope": "train_fire_top10pct",
 
1376
  "source_priority": 0
1377
  },
1378
  {
1379
+ "model_tag": "pangu_weather",
1380
  "label": "Pangu-Weather",
1381
  "seed": 7,
1382
  "scope": "train_fire_top20pct",
 
1394
  "source_priority": 0
1395
  },
1396
  {
1397
+ "model_tag": "pangu_weather",
1398
  "label": "Pangu-Weather",
1399
  "seed": 99,
1400
  "scope": "full_domain",
 
1412
  "source_priority": 0
1413
  },
1414
  {
1415
+ "model_tag": "pangu_weather",
1416
  "label": "Pangu-Weather",
1417
  "seed": 99,
1418
  "scope": "train_fire_top05pct",
 
1430
  "source_priority": 0
1431
  },
1432
  {
1433
+ "model_tag": "pangu_weather",
1434
  "label": "Pangu-Weather",
1435
  "seed": 99,
1436
  "scope": "train_fire_top10pct",
 
1448
  "source_priority": 0
1449
  },
1450
  {
1451
+ "model_tag": "pangu_weather",
1452
  "label": "Pangu-Weather",
1453
  "seed": 99,
1454
  "scope": "train_fire_top20pct",
 
3698
  "source_priority": 0
3699
  },
3700
  {
3701
+ "model_tag": "pangu_weather_h24",
3702
  "label": "Pangu-Weather",
3703
  "seed": 17,
3704
  "scope": "full_domain",
 
3716
  "source_priority": 0
3717
  },
3718
  {
3719
+ "model_tag": "pangu_weather_h24",
3720
  "label": "Pangu-Weather",
3721
  "seed": 17,
3722
  "scope": "train_fire_top05pct",
 
3734
  "source_priority": 0
3735
  },
3736
  {
3737
+ "model_tag": "pangu_weather_h24",
3738
  "label": "Pangu-Weather",
3739
  "seed": 17,
3740
  "scope": "train_fire_top10pct",
 
3752
  "source_priority": 0
3753
  },
3754
  {
3755
+ "model_tag": "pangu_weather_h24",
3756
  "label": "Pangu-Weather",
3757
  "seed": 17,
3758
  "scope": "train_fire_top20pct",
 
3770
  "source_priority": 0
3771
  },
3772
  {
3773
+ "model_tag": "pangu_weather_h24",
3774
  "label": "Pangu-Weather",
3775
  "seed": 37,
3776
  "scope": "full_domain",
 
3788
  "source_priority": 0
3789
  },
3790
  {
3791
+ "model_tag": "pangu_weather_h24",
3792
  "label": "Pangu-Weather",
3793
  "seed": 37,
3794
  "scope": "train_fire_top05pct",
 
3806
  "source_priority": 0
3807
  },
3808
  {
3809
+ "model_tag": "pangu_weather_h24",
3810
  "label": "Pangu-Weather",
3811
  "seed": 37,
3812
  "scope": "train_fire_top10pct",
 
3824
  "source_priority": 0
3825
  },
3826
  {
3827
+ "model_tag": "pangu_weather_h24",
3828
  "label": "Pangu-Weather",
3829
  "seed": 37,
3830
  "scope": "train_fire_top20pct",
 
3842
  "source_priority": 0
3843
  },
3844
  {
3845
+ "model_tag": "pangu_weather_h24",
3846
  "label": "Pangu-Weather",
3847
  "seed": 57,
3848
  "scope": "full_domain",
 
3860
  "source_priority": 0
3861
  },
3862
  {
3863
+ "model_tag": "pangu_weather_h24",
3864
  "label": "Pangu-Weather",
3865
  "seed": 57,
3866
  "scope": "train_fire_top05pct",
 
3878
  "source_priority": 0
3879
  },
3880
  {
3881
+ "model_tag": "pangu_weather_h24",
3882
  "label": "Pangu-Weather",
3883
  "seed": 57,
3884
  "scope": "train_fire_top10pct",
 
3896
  "source_priority": 0
3897
  },
3898
  {
3899
+ "model_tag": "pangu_weather_h24",
3900
  "label": "Pangu-Weather",
3901
  "seed": 57,
3902
  "scope": "train_fire_top20pct",
 
3914
  "source_priority": 0
3915
  },
3916
  {
3917
+ "model_tag": "pangu_weather_h24",
3918
  "label": "Pangu-Weather",
3919
  "seed": 7,
3920
  "scope": "full_domain",
 
3932
  "source_priority": 0
3933
  },
3934
  {
3935
+ "model_tag": "pangu_weather_h24",
3936
  "label": "Pangu-Weather",
3937
  "seed": 7,
3938
  "scope": "train_fire_top05pct",
 
3950
  "source_priority": 0
3951
  },
3952
  {
3953
+ "model_tag": "pangu_weather_h24",
3954
  "label": "Pangu-Weather",
3955
  "seed": 7,
3956
  "scope": "train_fire_top10pct",
 
3968
  "source_priority": 0
3969
  },
3970
  {
3971
+ "model_tag": "pangu_weather_h24",
3972
  "label": "Pangu-Weather",
3973
  "seed": 7,
3974
  "scope": "train_fire_top20pct",
 
3986
  "source_priority": 0
3987
  },
3988
  {
3989
+ "model_tag": "pangu_weather_h24",
3990
  "label": "Pangu-Weather",
3991
  "seed": 97,
3992
  "scope": "full_domain",
 
4004
  "source_priority": 0
4005
  },
4006
  {
4007
+ "model_tag": "pangu_weather_h24",
4008
  "label": "Pangu-Weather",
4009
  "seed": 97,
4010
  "scope": "train_fire_top05pct",
 
4022
  "source_priority": 0
4023
  },
4024
  {
4025
+ "model_tag": "pangu_weather_h24",
4026
  "label": "Pangu-Weather",
4027
  "seed": 97,
4028
  "scope": "train_fire_top10pct",
 
4040
  "source_priority": 0
4041
  },
4042
  {
4043
+ "model_tag": "pangu_weather_h24",
4044
  "label": "Pangu-Weather",
4045
  "seed": 97,
4046
  "scope": "train_fire_top20pct",
 
5318
  "source_priority": 2
5319
  },
5320
  {
5321
+ "model_tag": "pangu_weather",
5322
  "label": "Pangu-Weather",
5323
  "seed": 1,
5324
  "scope": "full_domain",
 
5336
  "source_priority": 2
5337
  },
5338
  {
5339
+ "model_tag": "pangu_weather",
5340
  "label": "Pangu-Weather",
5341
  "seed": 1,
5342
  "scope": "train_fire_top05pct",
 
5354
  "source_priority": 2
5355
  },
5356
  {
5357
+ "model_tag": "pangu_weather",
5358
  "label": "Pangu-Weather",
5359
  "seed": 1,
5360
  "scope": "train_fire_top10pct",
 
5372
  "source_priority": 2
5373
  },
5374
  {
5375
+ "model_tag": "pangu_weather",
5376
  "label": "Pangu-Weather",
5377
  "seed": 123,
5378
  "scope": "full_domain",
 
5390
  "source_priority": 2
5391
  },
5392
  {
5393
+ "model_tag": "pangu_weather",
5394
  "label": "Pangu-Weather",
5395
  "seed": 123,
5396
  "scope": "train_fire_top05pct",
 
5408
  "source_priority": 2
5409
  },
5410
  {
5411
+ "model_tag": "pangu_weather",
5412
  "label": "Pangu-Weather",
5413
  "seed": 123,
5414
  "scope": "train_fire_top10pct",
 
5426
  "source_priority": 2
5427
  },
5428
  {
5429
+ "model_tag": "pangu_weather",
5430
  "label": "Pangu-Weather",
5431
  "seed": 42,
5432
  "scope": "full_domain",
 
5444
  "source_priority": 2
5445
  },
5446
  {
5447
+ "model_tag": "pangu_weather",
5448
  "label": "Pangu-Weather",
5449
  "seed": 42,
5450
  "scope": "train_fire_top05pct",
 
5462
  "source_priority": 2
5463
  },
5464
  {
5465
+ "model_tag": "pangu_weather",
5466
  "label": "Pangu-Weather",
5467
  "seed": 42,
5468
  "scope": "train_fire_top10pct",
 
5480
  "source_priority": 2
5481
  },
5482
  {
5483
+ "model_tag": "pangu_weather",
5484
  "label": "Pangu-Weather",
5485
  "seed": 7,
5486
  "scope": "full_domain",
 
5498
  "source_priority": 2
5499
  },
5500
  {
5501
+ "model_tag": "pangu_weather",
5502
  "label": "Pangu-Weather",
5503
  "seed": 7,
5504
  "scope": "train_fire_top05pct",
 
5516
  "source_priority": 2
5517
  },
5518
  {
5519
+ "model_tag": "pangu_weather",
5520
  "label": "Pangu-Weather",
5521
  "seed": 7,
5522
  "scope": "train_fire_top10pct",
 
5534
  "source_priority": 2
5535
  },
5536
  {
5537
+ "model_tag": "pangu_weather",
5538
  "label": "Pangu-Weather",
5539
  "seed": 99,
5540
  "scope": "full_domain",
 
5552
  "source_priority": 2
5553
  },
5554
  {
5555
+ "model_tag": "pangu_weather",
5556
  "label": "Pangu-Weather",
5557
  "seed": 99,
5558
  "scope": "train_fire_top05pct",
 
5570
  "source_priority": 2
5571
  },
5572
  {
5573
+ "model_tag": "pangu_weather",
5574
  "label": "Pangu-Weather",
5575
  "seed": 99,
5576
  "scope": "train_fire_top10pct",
 
6308
  "source_priority": 3
6309
  },
6310
  {
6311
+ "model_tag": "pangu_weather",
6312
  "label": "Pangu-Weather",
6313
  "seed": 1,
6314
  "scope": "train_fire_top20pct",
 
6326
  "source_priority": 3
6327
  },
6328
  {
6329
+ "model_tag": "pangu_weather",
6330
  "label": "Pangu-Weather",
6331
  "seed": 123,
6332
  "scope": "train_fire_top20pct",
 
6344
  "source_priority": 3
6345
  },
6346
  {
6347
+ "model_tag": "pangu_weather",
6348
  "label": "Pangu-Weather",
6349
  "seed": 42,
6350
  "scope": "train_fire_top20pct",
 
6362
  "source_priority": 3
6363
  },
6364
  {
6365
+ "model_tag": "pangu_weather",
6366
  "label": "Pangu-Weather",
6367
  "seed": 7,
6368
  "scope": "train_fire_top20pct",
 
6380
  "source_priority": 3
6381
  },
6382
  {
6383
+ "model_tag": "pangu_weather",
6384
  "label": "Pangu-Weather",
6385
  "seed": 99,
6386
  "scope": "train_fire_top20pct",
 
6763
  0.02
6764
  ],
6765
  "paths": [
6766
+ "<local path omitted>",
6767
+ "<local path omitted>",
6768
+ "<local path omitted>",
6769
+ "<local path omitted>",
6770
+ "<local path omitted>"
6771
  ]
6772
  },
6773
  {
 
6953
  0.01
6954
  ],
6955
  "paths": [
6956
+ "<local path omitted>",
6957
+ "<local path omitted>",
6958
+ "<local path omitted>",
6959
+ "<local path omitted>",
6960
+ "<local path omitted>"
6961
  ]
6962
  },
6963
  {
 
7143
  0.01
7144
  ],
7145
  "paths": [
7146
+ "<local path omitted>",
7147
+ "<local path omitted>",
7148
+ "<local path omitted>",
7149
+ "<local path omitted>",
7150
+ "<local path omitted>"
7151
  ]
7152
  },
7153
  {
 
7334
  0.02
7335
  ],
7336
  "paths": [
7337
+ "<local path omitted>",
7338
+ "<local path omitted>",
7339
+ "<local path omitted>",
7340
+ "<local path omitted>",
7341
+ "<local path omitted>"
7342
  ]
7343
  },
7344
  {
 
7527
  0.0002848515287041664
7528
  ],
7529
  "paths": [
7530
+ "<local path omitted>",
7531
+ "<local path omitted>",
7532
+ "<local path omitted>",
7533
+ "<local path omitted>",
7534
+ "<local path omitted>"
7535
  ]
7536
  },
7537
  {
 
7720
  0.0002847809228114784
7721
  ],
7722
  "paths": [
7723
+ "<local path omitted>",
7724
+ "<local path omitted>",
7725
+ "<local path omitted>",
7726
+ "<local path omitted>",
7727
+ "<local path omitted>"
7728
  ]
7729
  },
7730
  {
 
7913
  0.0002847809228114784
7914
  ],
7915
  "paths": [
7916
+ "<local path omitted>",
7917
+ "<local path omitted>",
7918
+ "<local path omitted>",
7919
+ "<local path omitted>",
7920
+ "<local path omitted>"
7921
  ]
7922
  },
7923
  {
 
8106
  0.0002847809228114784
8107
  ],
8108
  "paths": [
8109
+ "<local path omitted>",
8110
+ "<local path omitted>",
8111
+ "<local path omitted>",
8112
+ "<local path omitted>",
8113
+ "<local path omitted>"
8114
  ]
8115
  },
8116
  {
 
8299
  0.0014632086704014654
8300
  ],
8301
  "paths": [
8302
+ "<local path omitted>",
8303
+ "<local path omitted>",
8304
+ "<local path omitted>",
8305
+ "<local path omitted>",
8306
+ "<local path omitted>"
8307
  ]
8308
  },
8309
  {
 
8492
  0.0014882655838293205
8493
  ],
8494
  "paths": [
8495
+ "<local path omitted>",
8496
+ "<local path omitted>",
8497
+ "<local path omitted>",
8498
+ "<local path omitted>",
8499
+ "<local path omitted>"
8500
  ]
8501
  },
8502
  {
 
8685
  0.0014882655838293205
8686
  ],
8687
  "paths": [
8688
+ "<local path omitted>",
8689
+ "<local path omitted>",
8690
+ "<local path omitted>",
8691
+ "<local path omitted>",
8692
+ "<local path omitted>"
8693
  ]
8694
  },
8695
  {
 
8878
  0.0015083511573617753
8879
  ],
8880
  "paths": [
8881
+ "<local path omitted>",
8882
+ "<local path omitted>",
8883
+ "<local path omitted>",
8884
+ "<local path omitted>",
8885
+ "<local path omitted>"
8886
  ]
8887
  },
8888
  {
 
9068
  0.1
9069
  ],
9070
  "paths": [
9071
+ "<local path omitted>",
9072
+ "<local path omitted>",
9073
+ "<local path omitted>",
9074
+ "<local path omitted>",
9075
+ "<local path omitted>"
9076
  ]
9077
  },
9078
  {
 
9259
  0.1
9260
  ],
9261
  "paths": [
9262
+ "<local path omitted>",
9263
+ "<local path omitted>",
9264
+ "<local path omitted>",
9265
+ "<local path omitted>",
9266
+ "<local path omitted>"
9267
  ]
9268
  },
9269
  {
 
9450
  0.1
9451
  ],
9452
  "paths": [
9453
+ "<local path omitted>",
9454
+ "<local path omitted>",
9455
+ "<local path omitted>",
9456
+ "<local path omitted>",
9457
+ "<local path omitted>"
9458
  ]
9459
  },
9460
  {
 
9641
  0.2
9642
  ],
9643
  "paths": [
9644
+ "<local path omitted>",
9645
+ "<local path omitted>",
9646
+ "<local path omitted>",
9647
+ "<local path omitted>",
9648
+ "<local path omitted>"
9649
  ]
9650
  },
9651
  {
 
9833
  0.5
9834
  ],
9835
  "paths": [
9836
+ "<local path omitted>",
9837
+ "<local path omitted>",
9838
+ "<local path omitted>",
9839
+ "<local path omitted>",
9840
+ "<local path omitted>"
9841
  ]
9842
  },
9843
  {
 
10024
  0.3
10025
  ],
10026
  "paths": [
10027
+ "<local path omitted>",
10028
+ "<local path omitted>",
10029
+ "<local path omitted>",
10030
+ "<local path omitted>",
10031
+ "<local path omitted>"
10032
  ]
10033
  },
10034
  {
 
10215
  0.3
10216
  ],
10217
  "paths": [
10218
+ "<local path omitted>",
10219
+ "<local path omitted>",
10220
+ "<local path omitted>",
10221
+ "<local path omitted>",
10222
+ "<local path omitted>"
10223
  ]
10224
  },
10225
  {
 
10405
  0.3
10406
  ],
10407
  "paths": [
10408
+ "<local path omitted>",
10409
+ "<local path omitted>",
10410
+ "<local path omitted>",
10411
+ "<local path omitted>",
10412
+ "<local path omitted>"
10413
  ]
10414
  },
10415
  {
 
10596
  0.5
10597
  ],
10598
  "paths": [
10599
+ "<local path omitted>",
10600
+ "<local path omitted>",
10601
+ "<local path omitted>",
10602
+ "<local path omitted>",
10603
+ "<local path omitted>"
10604
  ]
10605
  },
10606
  {
 
10786
  0.3
10787
  ],
10788
  "paths": [
10789
+ "<local path omitted>",
10790
+ "<local path omitted>",
10791
+ "<local path omitted>",
10792
+ "<local path omitted>",
10793
+ "<local path omitted>"
10794
  ]
10795
  },
10796
  {
 
10977
  0.5
10978
  ],
10979
  "paths": [
10980
+ "<local path omitted>",
10981
+ "<local path omitted>",
10982
+ "<local path omitted>",
10983
+ "<local path omitted>",
10984
+ "<local path omitted>"
10985
  ]
10986
  },
10987
  {
 
11168
  0.5
11169
  ],
11170
  "paths": [
11171
+ "<local path omitted>",
11172
+ "<local path omitted>",
11173
+ "<local path omitted>",
11174
+ "<local path omitted>",
11175
+ "<local path omitted>"
11176
  ]
11177
  },
11178
  {
 
11358
  0.3
11359
  ],
11360
  "paths": [
11361
+ "<local path omitted>",
11362
+ "<local path omitted>",
11363
+ "<local path omitted>",
11364
+ "<local path omitted>",
11365
+ "<local path omitted>"
11366
  ]
11367
  },
11368
  {
 
11550
  0.3
11551
  ],
11552
  "paths": [
11553
+ "<local path omitted>",
11554
+ "<local path omitted>",
11555
+ "<local path omitted>",
11556
+ "<local path omitted>",
11557
+ "<local path omitted>"
11558
  ]
11559
  },
11560
  {
 
11740
  0.3
11741
  ],
11742
  "paths": [
11743
+ "<local path omitted>",
11744
+ "<local path omitted>",
11745
+ "<local path omitted>",
11746
+ "<local path omitted>",
11747
+ "<local path omitted>"
11748
  ]
11749
  },
11750
  {
 
11930
  0.3
11931
  ],
11932
  "paths": [
11933
+ "<local path omitted>",
11934
+ "<local path omitted>",
11935
+ "<local path omitted>",
11936
+ "<local path omitted>",
11937
+ "<local path omitted>"
11938
  ]
11939
  },
11940
  {
11941
+ "model_tag": "pangu_weather",
11942
  "label": "Pangu-Weather",
11943
  "scope": "full_domain",
11944
  "scope_label": "global",
 
12123
  0.00027882601716555655
12124
  ],
12125
  "paths": [
12126
+ "<local path omitted>",
12127
+ "<local path omitted>",
12128
+ "<local path omitted>",
12129
+ "<local path omitted>",
12130
+ "<local path omitted>"
12131
  ]
12132
  },
12133
  {
12134
+ "model_tag": "pangu_weather",
12135
  "label": "Pangu-Weather",
12136
  "scope": "train_fire_top05pct",
12137
  "scope_label": "top 5%",
 
12316
  0.00028155450127087533
12317
  ],
12318
  "paths": [
12319
+ "<local path omitted>",
12320
+ "<local path omitted>",
12321
+ "<local path omitted>",
12322
+ "<local path omitted>",
12323
+ "<local path omitted>"
12324
  ]
12325
  },
12326
  {
12327
+ "model_tag": "pangu_weather",
12328
  "label": "Pangu-Weather",
12329
  "scope": "train_fire_top10pct",
12330
  "scope_label": "top 10%",
 
12509
  0.000285720539977774
12510
  ],
12511
  "paths": [
12512
+ "<local path omitted>",
12513
+ "<local path omitted>",
12514
+ "<local path omitted>",
12515
+ "<local path omitted>",
12516
+ "<local path omitted>"
12517
  ]
12518
  },
12519
  {
12520
+ "model_tag": "pangu_weather",
12521
  "label": "Pangu-Weather",
12522
  "scope": "train_fire_top20pct",
12523
  "scope_label": "top 20%",
 
12702
  0.00028135377215221524
12703
  ],
12704
  "paths": [
12705
+ "<local path omitted>",
12706
+ "<local path omitted>",
12707
+ "<local path omitted>",
12708
+ "<local path omitted>",
12709
+ "<local path omitted>"
12710
  ]
12711
  },
12712
  {
12713
+ "model_tag": "pangu_weather_h24",
12714
  "label": "Pangu-Weather",
12715
  "scope": "full_domain",
12716
  "scope_label": "global",
 
12893
  0.5
12894
  ],
12895
  "paths": [
12896
+ "<local path omitted>",
12897
+ "<local path omitted>",
12898
+ "<local path omitted>",
12899
+ "<local path omitted>",
12900
+ "<local path omitted>"
12901
  ]
12902
  },
12903
  {
12904
+ "model_tag": "pangu_weather_h24",
12905
  "label": "Pangu-Weather",
12906
  "scope": "train_fire_top05pct",
12907
  "scope_label": "top 5%",
 
13083
  0.3
13084
  ],
13085
  "paths": [
13086
+ "<local path omitted>",
13087
+ "<local path omitted>",
13088
+ "<local path omitted>",
13089
+ "<local path omitted>",
13090
+ "<local path omitted>"
13091
  ]
13092
  },
13093
  {
13094
+ "model_tag": "pangu_weather_h24",
13095
  "label": "Pangu-Weather",
13096
  "scope": "train_fire_top10pct",
13097
  "scope_label": "top 10%",
 
13274
  0.5
13275
  ],
13276
  "paths": [
13277
+ "<local path omitted>",
13278
+ "<local path omitted>",
13279
+ "<local path omitted>",
13280
+ "<local path omitted>",
13281
+ "<local path omitted>"
13282
  ]
13283
  },
13284
  {
13285
+ "model_tag": "pangu_weather_h24",
13286
  "label": "Pangu-Weather",
13287
  "scope": "train_fire_top20pct",
13288
  "scope_label": "top 20%",
 
13465
  0.5
13466
  ],
13467
  "paths": [
13468
+ "<local path omitted>",
13469
+ "<local path omitted>",
13470
+ "<local path omitted>",
13471
+ "<local path omitted>",
13472
+ "<local path omitted>"
13473
  ]
13474
  },
13475
  {
 
13656
  0.3
13657
  ],
13658
  "paths": [
13659
+ "<local path omitted>",
13660
+ "<local path omitted>",
13661
+ "<local path omitted>",
13662
+ "<local path omitted>",
13663
+ "<local path omitted>"
13664
  ]
13665
  },
13666
  {
 
13847
  0.3
13848
  ],
13849
  "paths": [
13850
+ "<local path omitted>",
13851
+ "<local path omitted>",
13852
+ "<local path omitted>",
13853
+ "<local path omitted>",
13854
+ "<local path omitted>"
13855
  ]
13856
  },
13857
  {
 
14038
  0.3
14039
  ],
14040
  "paths": [
14041
+ "<local path omitted>",
14042
+ "<local path omitted>",
14043
+ "<local path omitted>",
14044
+ "<local path omitted>",
14045
+ "<local path omitted>"
14046
  ]
14047
  },
14048
  {
 
14229
  0.3
14230
  ],
14231
  "paths": [
14232
+ "<local path omitted>",
14233
+ "<local path omitted>",
14234
+ "<local path omitted>",
14235
+ "<local path omitted>",
14236
+ "<local path omitted>"
14237
  ]
14238
  },
14239
  {
 
14422
  0.00028831177041865885
14423
  ],
14424
  "paths": [
14425
+ "<local path omitted>",
14426
+ "<local path omitted>",
14427
+ "<local path omitted>",
14428
+ "<local path omitted>",
14429
+ "<local path omitted>"
14430
  ]
14431
  },
14432
  {
 
14615
  0.0002883114793803543
14616
  ],
14617
  "paths": [
14618
+ "<local path omitted>",
14619
+ "<local path omitted>",
14620
+ "<local path omitted>",
14621
+ "<local path omitted>",
14622
+ "<local path omitted>"
14623
  ]
14624
  },
14625
  {
 
14808
  0.0002883114793803543
14809
  ],
14810
  "paths": [
14811
+ "<local path omitted>",
14812
+ "<local path omitted>",
14813
+ "<local path omitted>",
14814
+ "<local path omitted>",
14815
+ "<local path omitted>"
14816
  ]
14817
  },
14818
  {
 
15001
  0.0002883114793803543
15002
  ],
15003
  "paths": [
15004
+ "<local path omitted>",
15005
+ "<local path omitted>",
15006
+ "<local path omitted>",
15007
+ "<local path omitted>",
15008
+ "<local path omitted>"
15009
  ]
15010
  },
15011
  {
 
15190
  0.95
15191
  ],
15192
  "paths": [
15193
+ "<local path omitted>",
15194
+ "<local path omitted>",
15195
+ "<local path omitted>",
15196
+ "<local path omitted>",
15197
+ "<local path omitted>"
15198
  ]
15199
  },
15200
  {
 
15380
  0.95
15381
  ],
15382
  "paths": [
15383
+ "<local path omitted>",
15384
+ "<local path omitted>",
15385
+ "<local path omitted>",
15386
+ "<local path omitted>",
15387
+ "<local path omitted>"
15388
  ]
15389
  },
15390
  {
 
15570
  0.95
15571
  ],
15572
  "paths": [
15573
+ "<local path omitted>",
15574
+ "<local path omitted>",
15575
+ "<local path omitted>",
15576
+ "<local path omitted>",
15577
+ "<local path omitted>"
15578
  ]
15579
  },
15580
  {
 
15760
  0.95
15761
  ],
15762
  "paths": [
15763
+ "<local path omitted>",
15764
+ "<local path omitted>",
15765
+ "<local path omitted>",
15766
+ "<local path omitted>",
15767
+ "<local path omitted>"
15768
  ]
15769
  },
15770
  {
 
15953
  0.000301085616229102
15954
  ],
15955
  "paths": [
15956
+ "<local path omitted>",
15957
+ "<local path omitted>",
15958
+ "<local path omitted>",
15959
+ "<local path omitted>",
15960
+ "<local path omitted>"
15961
  ]
15962
  },
15963
  {
 
16146
  0.000301085616229102
16147
  ],
16148
  "paths": [
16149
+ "<local path omitted>",
16150
+ "<local path omitted>",
16151
+ "<local path omitted>",
16152
+ "<local path omitted>",
16153
+ "<local path omitted>"
16154
  ]
16155
  },
16156
  {
 
16339
  0.000301085616229102
16340
  ],
16341
  "paths": [
16342
+ "<local path omitted>",
16343
+ "<local path omitted>",
16344
+ "<local path omitted>",
16345
+ "<local path omitted>",
16346
+ "<local path omitted>"
16347
  ]
16348
  },
16349
  {
 
16532
  0.00030111230444163084
16533
  ],
16534
  "paths": [
16535
+ "<local path omitted>",
16536
+ "<local path omitted>",
16537
+ "<local path omitted>",
16538
+ "<local path omitted>",
16539
+ "<local path omitted>"
16540
  ]
16541
  }
16542
  ]
artifacts/results/selection_regret_all_backbones_20260504.csv ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_tag,label,scope,n,seeds,exact_regret_mean,exact_regret_std,tolerated_regret_mean,tolerated_regret_std,union_regret_mean,union_regret_std
2
+ reference,Reference,global,5,1 7 42 99 123,0.0,0.0,0.08783024981138902,0.09670495645481135,0.08783024981138902,0.09670495645481135
3
+ reference,Reference,fire_prone,5,1 7 42 99 123,0.0,0.0,0.03402707057672223,0.032044658643147844,0.03402707057672223,0.032044658643147844
4
+ prithvi_wxc,Prithvi-WxC,global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0
5
+ prithvi_wxc,Prithvi-WxC,fire_prone,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0
6
+ aurora,Aurora,global,5,1 7 42 99 123,0.00020004882767231798,0.00026703384456332115,0.09851983041506818,0.1298781980037557,0.09851983041506818,0.1298781980037557
7
+ aurora,Aurora,fire_prone,5,1 7 42 99 123,0.008202508825959588,0.01834136732088763,0.14391889430974364,0.32121904665016227,0.14391889430974364,0.32121904665016227
8
+ climax,ClimaX,global,5,1 7 42 99 123,3.0287686240700486e-06,4.147312242167625e-06,0.0012959969982639485,0.0017746169760203706,0.0012959969982639485,0.0017746169760203706
9
+ climax,ClimaX,fire_prone,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0
10
+ stormcast,StormCast,global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0
11
+ stormcast,StormCast,fire_prone,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0
12
+ pangu_weather,Pangu-Weather,global,5,1 7 42 99 123,0.00013033979247265275,0.0002685372203690466,0.048806713097574374,0.10733308684741971,0.048806713097574374,0.10733308684741971
13
+ pangu_weather,Pangu-Weather,fire_prone,5,1 7 42 99 123,0.027875386332505546,0.02348779386900393,0.43111948243387105,0.39355644251497235,0.43111948243387105,0.39355644251497235
14
+ dlwp,DLWP,global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0
15
+ dlwp,DLWP,fire_prone,5,1 7 42 99 123,0.0007702319787454587,0.0010995336594539604,0.043265915053601556,0.04332331365579739,0.043265915053601556,0.04332331365579739
16
+ fcn,FCN,global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0
17
+ fcn,FCN,fire_prone,5,1 7 42 99 123,5.960229415004348e-06,1.3327478133443526e-05,0.011679805987441694,0.019872372458657642,0.011679805987441694,0.019872372458657642
18
+ fengwu,FengWu,global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0
19
+ fengwu,FengWu,fire_prone,5,1 7 42 99 123,0.0006908222234409067,0.0011910586589384115,0.005222389249812243,0.0062394095558402415,0.005222389249812243,0.0062394095558402415
20
+ fuxi,FuXi,global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0
21
+ fuxi,FuXi,fire_prone,5,1 7 42 99 123,0.0,0.0,0.0010839188523199318,0.0017288780545672386,0.0010839188523199318,0.0017288780545672386
22
+ pangu6,Pangu-Weather,global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0
23
+ pangu6,Pangu-Weather,fire_prone,5,1 7 42 99 123,0.0007280423771922354,0.001178746460551365,0.0018491271881979853,0.0032630386057089294,0.0018491271881979853,0.0032630386057089294
24
+ alphaearth,AlphaEarth,global,5,1 7 42 99 123,0.0,0.0,0.1722171037486726,0.08849214830495522,0.1722171037486726,0.08849214830495522
25
+ alphaearth,AlphaEarth,fire_prone,5,1 7 42 99 123,0.0,0.0,0.038803552655092256,0.0594825313313219,0.038803552655092256,0.0594825313313219
artifacts/results/selection_regret_all_backbones_20260504.json ADDED
The diff for this file is too large to render. See raw diff
 
artifacts/results/selection_regret_scope_sweep_20260505.csv CHANGED
@@ -1,45 +1,45 @@
1
- model_tag,label,scope,scope_label,n,seeds,exact_regret_mean,exact_regret_std,exact_regret_min,exact_regret_max,tolerated_regret_mean,tolerated_regret_std,tolerated_regret_min,tolerated_regret_max,union_regret_mean,union_regret_std,union_regret_min,union_regret_max
2
- reference,FireWx-FM ref.,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.07383089600948442,0.07453636071372995,0.0,0.17497107865629713,0.07383089600948442,0.07453636071372995,0.0,0.17497107865629713
3
- reference,FireWx-FM ref.,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.003663718115532055,0.006812231244812292,0.0,0.015676762201120686,0.003663718115532055,0.006812231244812292,0.0,0.015676762201120686
4
- reference,FireWx-FM ref.,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.012275489592085752,0.012665162001740834,0.0,0.02670880922526031,0.012275489592085752,0.012665162001740834,0.0,0.02670880922526031
5
- reference,FireWx-FM ref.,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.029384646387840017,0.02751315335001922,0.0,0.05675140203555318,0.029384646387840017,0.02751315335001922,0.0,0.05675140203555318
6
- prithvi_wxc,Prithvi-WxC,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
7
- prithvi_wxc,Prithvi-WxC,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
8
- prithvi_wxc,Prithvi-WxC,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
9
- prithvi_wxc,Prithvi-WxC,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
10
- aurora,Aurora,global,\(\Omega=\)global,5,1 7 42 99 123,0.00010153879814819402,0.00021861477435572763,0.0,0.0004925501476206198,0.04945471159670635,0.10697394238964528,0.0,0.240793572992212,0.04945471159670635,0.10697394238964528,0.0,0.240793572992212
11
- aurora,Aurora,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.023667154505540456,0.05292136630837888,0.0,0.11833577252770228,0.1542829840966487,0.34498724021162547,0.0,0.7714149204832434,0.1542829840966487,0.34498724021162547,0.0,0.7714149204832434
12
- aurora,Aurora,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.014651279478173606,0.032761256870543834,0.0,0.07325639739086803,0.1399343063221699,0.31290262132065055,0.0,0.6996715316108496,0.1399343063221699,0.31290262132065055,0.0,0.6996715316108496
13
- aurora,Aurora,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.008202508825959588,0.01834136732088763,0.0,0.04101254412979794,0.1437064941446237,0.32133748971555404,0.0,0.7185324707231184,0.1437064941446237,0.32133748971555404,0.0,0.7185324707231184
14
- climax,ClimaX,global,\(\Omega=\)global,5,1 7 42 99 123,3.0287686240700486e-06,4.147312242167625e-06,0.0,7.571921560175121e-06,0.0012959969982639485,0.0017746169760203706,0.0,0.0032399924956598714,0.0012959969982639485,0.0017746169760203706,0.0,0.0032399924956598714
15
- climax,ClimaX,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
16
- climax,ClimaX,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
17
- climax,ClimaX,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
18
- stormcast,StormCast,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
19
- stormcast,StormCast,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
20
- stormcast,StormCast,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
21
- stormcast,StormCast,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
22
- dlwp,DLWP,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
23
- dlwp,DLWP,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0048037709215293075,0.006217185202152866,0.0,0.015203005078871956,0.016716228534155796,0.016079313546074458,0.0,0.03305057342744666,0.016716228534155796,0.016079313546074458,0.0,0.03305057342744666
24
- dlwp,DLWP,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0017281632798742507,0.002514722758075371,0.0,0.005523780499856246,0.02846514801700826,0.026938012702643194,0.0,0.053927677500854476,0.02846514801700826,0.026938012702643194,0.0,0.053927677500854476
25
- dlwp,DLWP,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0007702319787454587,0.0010995336594539604,0.0,0.0023651634514294945,0.04463354681768479,0.04356064433532197,0.0,0.11215006616165157,0.04463354681768479,0.04356064433532197,0.0,0.11215006616165157
26
- fcn,FCN,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
27
- fcn,FCN,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0006342898232943345,0.0009899554165032742,0.0,0.002257520679520411,0.004509624980300697,0.010070611656609236,0.0,0.022524473456150496,0.004509624980300697,0.010070611656609236,0.0,0.022524473456150496
28
- fcn,FCN,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.00021156854817603877,0.0004730816556225618,0.0,0.0010578427408801938,0.004199537050817615,0.009390450319657174,0.0,0.020997685254088072,0.004199537050817615,0.009390450319657174,0.0,0.020997685254088072
29
- fcn,FCN,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,5.754560074337778e-06,1.2867587506825515e-05,0.0,2.877280037168889e-05,0.011679805987441694,0.019872372458657642,0.0,0.045880503237594294,0.011679805987441694,0.019872372458657642,0.0,0.045880503237594294
30
- fengwu,FengWu,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
31
- fengwu,FengWu,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0005029843170376968,0.0008109166521114917,0.0,0.0018628094907809783,0.008795951947678215,0.005532321338017505,0.0,0.01484136735033148,0.008795951947678215,0.005532321338017505,0.0,0.01484136735033148
32
- fengwu,FengWu,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.000495228089292582,0.0007349190216431337,0.0,0.0016387212062008855,0.00402300475984525,0.005510851442075993,0.0,0.010273937098576491,0.00402300475984525,0.005510851442075993,0.0,0.010273937098576491
33
- fengwu,FengWu,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0006908222234409067,0.0011910586589384115,0.0,0.0027505832409660327,0.005222389249812243,0.0062394095558402415,0.0,0.015150501067724198,0.005222389249812243,0.0062394095558402415,0.0,0.015150501067724198
34
- fuxi,FuXi,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
35
- fuxi,FuXi,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.002973545331200933,0.0023946274991058026,0.0010927807990139538,0.007024214143542151,0.013545122545609134,0.02097023683418404,0.0,0.050156261654859424,0.013545122545609134,0.02097023683418404,0.0,0.050156261654859424
36
- fuxi,FuXi,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.001383793743586542,0.0019248128430711165,0.0,0.003938013087198336,0.0016559834970027332,0.0037028916689159307,0.0,0.008279917485013666,0.0016559834970027332,0.0037028916689159307,0.0,0.008279917485013666
37
- fuxi,FuXi,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.00283318355751887,0.0036808289681375247,0.0,0.008746323525994693,0.00283318355751887,0.0036808289681375247,0.0,0.008746323525994693
38
- pangu6,Pangu-Weather,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
39
- pangu6,Pangu-Weather,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.003154674487241463,0.002546125713211599,0.0,0.005711594157251587,0.007592888149777122,0.00897418737588444,0.0,0.019790633919317124,0.007592888149777122,0.00897418737588444,0.0,0.019790633919317124
40
- pangu6,Pangu-Weather,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0017345627303725214,0.0019305189318827886,0.0,0.004535321555179647,0.003047840737004992,0.005053805614558161,0.0,0.011660780793438352,0.003047840737004992,0.005053805614558161,0.0,0.011660780793438352
41
- pangu6,Pangu-Weather,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0007280423771922354,0.001178746460551365,0.0,0.0027096086413018403,0.0018679847512695024,0.0032548337047755126,0.0,0.007639684811918013,0.0018679847512695024,0.0032548337047755126,0.0,0.007639684811918013
42
- alphaearth,AlphaEarth,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.1722171037486726,0.08849214830495522,0.050655329891645895,0.272468682523694,0.1722171037486726,0.08849214830495522,0.050655329891645895,0.272468682523694
43
- alphaearth,AlphaEarth,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.06384618090125256,0.04965276403138872,0.0,0.1365277562230962,0.06384618090125256,0.04965276403138872,0.0,0.1365277562230962
44
- alphaearth,AlphaEarth,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.06573776411084173,0.06897015340160571,0.0,0.1615566566666954,0.06573776411084173,0.06897015340160571,0.0,0.1615566566666954
45
- alphaearth,AlphaEarth,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.038803552655092256,0.0594825313313219,0.0,0.13482302181308625,0.038803552655092256,0.0594825313313219,0.0,0.13482302181308625
 
1
+ model_tag,label,scope,scope_label,n,seeds,exact_regret_mean,exact_regret_std,exact_regret_min,exact_regret_max,tolerated_regret_mean,tolerated_regret_std,tolerated_regret_min,tolerated_regret_max,union_regret_mean,union_regret_std,union_regret_min,union_regret_max
2
+ reference,FireWx-FM ref.,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.07383089600948442,0.07453636071372995,0.0,0.17497107865629713,0.07383089600948442,0.07453636071372995,0.0,0.17497107865629713
3
+ reference,FireWx-FM ref.,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.003663718115532055,0.006812231244812292,0.0,0.015676762201120686,0.003663718115532055,0.006812231244812292,0.0,0.015676762201120686
4
+ reference,FireWx-FM ref.,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.012275489592085752,0.012665162001740834,0.0,0.02670880922526031,0.012275489592085752,0.012665162001740834,0.0,0.02670880922526031
5
+ reference,FireWx-FM ref.,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.029384646387840017,0.02751315335001922,0.0,0.05675140203555318,0.029384646387840017,0.02751315335001922,0.0,0.05675140203555318
6
+ prithvi_wxc,Prithvi-WxC,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
7
+ prithvi_wxc,Prithvi-WxC,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
8
+ prithvi_wxc,Prithvi-WxC,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
9
+ prithvi_wxc,Prithvi-WxC,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
10
+ aurora,Aurora,global,\(\Omega=\)global,5,1 7 42 99 123,0.00010153879814819402,0.00021861477435572763,0.0,0.0004925501476206198,0.04945471159670635,0.10697394238964528,0.0,0.240793572992212,0.04945471159670635,0.10697394238964528,0.0,0.240793572992212
11
+ aurora,Aurora,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.023667154505540456,0.05292136630837888,0.0,0.11833577252770228,0.1542829840966487,0.34498724021162547,0.0,0.7714149204832434,0.1542829840966487,0.34498724021162547,0.0,0.7714149204832434
12
+ aurora,Aurora,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.014651279478173606,0.032761256870543834,0.0,0.07325639739086803,0.1399343063221699,0.31290262132065055,0.0,0.6996715316108496,0.1399343063221699,0.31290262132065055,0.0,0.6996715316108496
13
+ aurora,Aurora,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.008202508825959588,0.01834136732088763,0.0,0.04101254412979794,0.1437064941446237,0.32133748971555404,0.0,0.7185324707231184,0.1437064941446237,0.32133748971555404,0.0,0.7185324707231184
14
+ climax,ClimaX,global,\(\Omega=\)global,5,1 7 42 99 123,3.0287686240700486e-06,4.147312242167625e-06,0.0,7.571921560175121e-06,0.0012959969982639485,0.0017746169760203706,0.0,0.0032399924956598714,0.0012959969982639485,0.0017746169760203706,0.0,0.0032399924956598714
15
+ climax,ClimaX,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
16
+ climax,ClimaX,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
17
+ climax,ClimaX,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
18
+ stormcast,StormCast,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
19
+ stormcast,StormCast,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
20
+ stormcast,StormCast,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
21
+ stormcast,StormCast,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
22
+ dlwp,DLWP,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
23
+ dlwp,DLWP,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0048037709215293075,0.006217185202152866,0.0,0.015203005078871956,0.016716228534155796,0.016079313546074458,0.0,0.03305057342744666,0.016716228534155796,0.016079313546074458,0.0,0.03305057342744666
24
+ dlwp,DLWP,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0017281632798742507,0.002514722758075371,0.0,0.005523780499856246,0.02846514801700826,0.026938012702643194,0.0,0.053927677500854476,0.02846514801700826,0.026938012702643194,0.0,0.053927677500854476
25
+ dlwp,DLWP,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0007702319787454587,0.0010995336594539604,0.0,0.0023651634514294945,0.04463354681768479,0.04356064433532197,0.0,0.11215006616165157,0.04463354681768479,0.04356064433532197,0.0,0.11215006616165157
26
+ fcn,FCN,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
27
+ fcn,FCN,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0006342898232943345,0.0009899554165032742,0.0,0.002257520679520411,0.004509624980300697,0.010070611656609236,0.0,0.022524473456150496,0.004509624980300697,0.010070611656609236,0.0,0.022524473456150496
28
+ fcn,FCN,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.00021156854817603877,0.0004730816556225618,0.0,0.0010578427408801938,0.004199537050817615,0.009390450319657174,0.0,0.020997685254088072,0.004199537050817615,0.009390450319657174,0.0,0.020997685254088072
29
+ fcn,FCN,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,5.754560074337778e-06,1.2867587506825515e-05,0.0,2.877280037168889e-05,0.011679805987441694,0.019872372458657642,0.0,0.045880503237594294,0.011679805987441694,0.019872372458657642,0.0,0.045880503237594294
30
+ fengwu,FengWu,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
31
+ fengwu,FengWu,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0005029843170376968,0.0008109166521114917,0.0,0.0018628094907809783,0.008795951947678215,0.005532321338017505,0.0,0.01484136735033148,0.008795951947678215,0.005532321338017505,0.0,0.01484136735033148
32
+ fengwu,FengWu,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.000495228089292582,0.0007349190216431337,0.0,0.0016387212062008855,0.00402300475984525,0.005510851442075993,0.0,0.010273937098576491,0.00402300475984525,0.005510851442075993,0.0,0.010273937098576491
33
+ fengwu,FengWu,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0006908222234409067,0.0011910586589384115,0.0,0.0027505832409660327,0.005222389249812243,0.0062394095558402415,0.0,0.015150501067724198,0.005222389249812243,0.0062394095558402415,0.0,0.015150501067724198
34
+ fuxi,FuXi,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
35
+ fuxi,FuXi,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.002973545331200933,0.0023946274991058026,0.0010927807990139538,0.007024214143542151,0.013545122545609134,0.02097023683418404,0.0,0.050156261654859424,0.013545122545609134,0.02097023683418404,0.0,0.050156261654859424
36
+ fuxi,FuXi,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.001383793743586542,0.0019248128430711165,0.0,0.003938013087198336,0.0016559834970027332,0.0037028916689159307,0.0,0.008279917485013666,0.0016559834970027332,0.0037028916689159307,0.0,0.008279917485013666
37
+ fuxi,FuXi,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.00283318355751887,0.0036808289681375247,0.0,0.008746323525994693,0.00283318355751887,0.0036808289681375247,0.0,0.008746323525994693
38
+ pangu6,Pangu-Weather,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
39
+ pangu6,Pangu-Weather,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.003154674487241463,0.002546125713211599,0.0,0.005711594157251587,0.007592888149777122,0.00897418737588444,0.0,0.019790633919317124,0.007592888149777122,0.00897418737588444,0.0,0.019790633919317124
40
+ pangu6,Pangu-Weather,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0017345627303725214,0.0019305189318827886,0.0,0.004535321555179647,0.003047840737004992,0.005053805614558161,0.0,0.011660780793438352,0.003047840737004992,0.005053805614558161,0.0,0.011660780793438352
41
+ pangu6,Pangu-Weather,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0007280423771922354,0.001178746460551365,0.0,0.0027096086413018403,0.0018679847512695024,0.0032548337047755126,0.0,0.007639684811918013,0.0018679847512695024,0.0032548337047755126,0.0,0.007639684811918013
42
+ alphaearth,AlphaEarth,global,\(\Omega=\)global,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.1722171037486726,0.08849214830495522,0.050655329891645895,0.272468682523694,0.1722171037486726,0.08849214830495522,0.050655329891645895,0.272468682523694
43
+ alphaearth,AlphaEarth,top5,\(\Omega=\)top 5\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.06384618090125256,0.04965276403138872,0.0,0.1365277562230962,0.06384618090125256,0.04965276403138872,0.0,0.1365277562230962
44
+ alphaearth,AlphaEarth,top10,\(\Omega=\)top 10\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.06573776411084173,0.06897015340160571,0.0,0.1615566566666954,0.06573776411084173,0.06897015340160571,0.0,0.1615566566666954
45
+ alphaearth,AlphaEarth,top20,\(\Omega=\)top 20\%,5,1 7 42 99 123,0.0,0.0,0.0,0.0,0.038803552655092256,0.0594825313313219,0.0,0.13482302181308625,0.038803552655092256,0.0594825313313219,0.0,0.13482302181308625
artifacts/results/selection_regret_scope_sweep_20260505.json CHANGED
@@ -8376,11 +8376,11 @@
8376
  123
8377
  ],
8378
  "paths": [
8379
- "<local paths omitted>",
8380
- "<local paths omitted>",
8381
- "<local paths omitted>",
8382
- "<local paths omitted>",
8383
- "<local paths omitted>"
8384
  ],
8385
  "exact_regret": {
8386
  "n": 5,
@@ -8418,11 +8418,11 @@
8418
  123
8419
  ],
8420
  "paths": [
8421
- "<local paths omitted>",
8422
- "<local paths omitted>",
8423
- "<local paths omitted>",
8424
- "<local paths omitted>",
8425
- "<local paths omitted>"
8426
  ],
8427
  "exact_regret": {
8428
  "n": 5,
@@ -8460,11 +8460,11 @@
8460
  123
8461
  ],
8462
  "paths": [
8463
- "<local paths omitted>",
8464
- "<local paths omitted>",
8465
- "<local paths omitted>",
8466
- "<local paths omitted>",
8467
- "<local paths omitted>"
8468
  ],
8469
  "exact_regret": {
8470
  "n": 5,
@@ -8502,11 +8502,11 @@
8502
  123
8503
  ],
8504
  "paths": [
8505
- "<local paths omitted>",
8506
- "<local paths omitted>",
8507
- "<local paths omitted>",
8508
- "<local paths omitted>",
8509
- "<local paths omitted>"
8510
  ],
8511
  "exact_regret": {
8512
  "n": 5,
@@ -8544,11 +8544,11 @@
8544
  123
8545
  ],
8546
  "paths": [
8547
- "<local paths omitted>",
8548
- "<local paths omitted>",
8549
- "<local paths omitted>",
8550
- "<local paths omitted>",
8551
- "<local paths omitted>"
8552
  ],
8553
  "exact_regret": {
8554
  "n": 5,
@@ -8586,11 +8586,11 @@
8586
  123
8587
  ],
8588
  "paths": [
8589
- "<local paths omitted>",
8590
- "<local paths omitted>",
8591
- "<local paths omitted>",
8592
- "<local paths omitted>",
8593
- "<local paths omitted>"
8594
  ],
8595
  "exact_regret": {
8596
  "n": 5,
@@ -8628,11 +8628,11 @@
8628
  123
8629
  ],
8630
  "paths": [
8631
- "<local paths omitted>",
8632
- "<local paths omitted>",
8633
- "<local paths omitted>",
8634
- "<local paths omitted>",
8635
- "<local paths omitted>"
8636
  ],
8637
  "exact_regret": {
8638
  "n": 5,
@@ -8670,11 +8670,11 @@
8670
  123
8671
  ],
8672
  "paths": [
8673
- "<local paths omitted>",
8674
- "<local paths omitted>",
8675
- "<local paths omitted>",
8676
- "<local paths omitted>",
8677
- "<local paths omitted>"
8678
  ],
8679
  "exact_regret": {
8680
  "n": 5,
@@ -8712,11 +8712,11 @@
8712
  123
8713
  ],
8714
  "paths": [
8715
- "<local paths omitted>",
8716
- "<local paths omitted>",
8717
- "<local paths omitted>",
8718
- "<local paths omitted>",
8719
- "<local paths omitted>"
8720
  ],
8721
  "exact_regret": {
8722
  "n": 5,
@@ -8754,11 +8754,11 @@
8754
  123
8755
  ],
8756
  "paths": [
8757
- "<local paths omitted>",
8758
- "<local paths omitted>",
8759
- "<local paths omitted>",
8760
- "<local paths omitted>",
8761
- "<local paths omitted>"
8762
  ],
8763
  "exact_regret": {
8764
  "n": 5,
@@ -8796,11 +8796,11 @@
8796
  123
8797
  ],
8798
  "paths": [
8799
- "<local paths omitted>",
8800
- "<local paths omitted>",
8801
- "<local paths omitted>",
8802
- "<local paths omitted>",
8803
- "<local paths omitted>"
8804
  ],
8805
  "exact_regret": {
8806
  "n": 5,
@@ -8838,11 +8838,11 @@
8838
  123
8839
  ],
8840
  "paths": [
8841
- "<local paths omitted>",
8842
- "<local paths omitted>",
8843
- "<local paths omitted>",
8844
- "<local paths omitted>",
8845
- "<local paths omitted>"
8846
  ],
8847
  "exact_regret": {
8848
  "n": 5,
@@ -8880,11 +8880,11 @@
8880
  123
8881
  ],
8882
  "paths": [
8883
- "<local paths omitted>",
8884
- "<local paths omitted>",
8885
- "<local paths omitted>",
8886
- "<local paths omitted>",
8887
- "<local paths omitted>"
8888
  ],
8889
  "exact_regret": {
8890
  "n": 5,
@@ -8922,11 +8922,11 @@
8922
  123
8923
  ],
8924
  "paths": [
8925
- "<local paths omitted>",
8926
- "<local paths omitted>",
8927
- "<local paths omitted>",
8928
- "<local paths omitted>",
8929
- "<local paths omitted>"
8930
  ],
8931
  "exact_regret": {
8932
  "n": 5,
@@ -8964,11 +8964,11 @@
8964
  123
8965
  ],
8966
  "paths": [
8967
- "<local paths omitted>",
8968
- "<local paths omitted>",
8969
- "<local paths omitted>",
8970
- "<local paths omitted>",
8971
- "<local paths omitted>"
8972
  ],
8973
  "exact_regret": {
8974
  "n": 5,
@@ -9006,11 +9006,11 @@
9006
  123
9007
  ],
9008
  "paths": [
9009
- "<local paths omitted>",
9010
- "<local paths omitted>",
9011
- "<local paths omitted>",
9012
- "<local paths omitted>",
9013
- "<local paths omitted>"
9014
  ],
9015
  "exact_regret": {
9016
  "n": 5,
@@ -9048,11 +9048,11 @@
9048
  123
9049
  ],
9050
  "paths": [
9051
- "<local paths omitted>",
9052
- "<local paths omitted>",
9053
- "<local paths omitted>",
9054
- "<local paths omitted>",
9055
- "<local paths omitted>"
9056
  ],
9057
  "exact_regret": {
9058
  "n": 5,
@@ -9090,11 +9090,11 @@
9090
  123
9091
  ],
9092
  "paths": [
9093
- "<local paths omitted>",
9094
- "<local paths omitted>",
9095
- "<local paths omitted>",
9096
- "<local paths omitted>",
9097
- "<local paths omitted>"
9098
  ],
9099
  "exact_regret": {
9100
  "n": 5,
@@ -9132,11 +9132,11 @@
9132
  123
9133
  ],
9134
  "paths": [
9135
- "<local paths omitted>",
9136
- "<local paths omitted>",
9137
- "<local paths omitted>",
9138
- "<local paths omitted>",
9139
- "<local paths omitted>"
9140
  ],
9141
  "exact_regret": {
9142
  "n": 5,
@@ -9174,11 +9174,11 @@
9174
  123
9175
  ],
9176
  "paths": [
9177
- "<local paths omitted>",
9178
- "<local paths omitted>",
9179
- "<local paths omitted>",
9180
- "<local paths omitted>",
9181
- "<local paths omitted>"
9182
  ],
9183
  "exact_regret": {
9184
  "n": 5,
@@ -9216,11 +9216,11 @@
9216
  123
9217
  ],
9218
  "paths": [
9219
- "<local paths omitted>",
9220
- "<local paths omitted>",
9221
- "<local paths omitted>",
9222
- "<local paths omitted>",
9223
- "<local paths omitted>"
9224
  ],
9225
  "exact_regret": {
9226
  "n": 5,
@@ -9258,11 +9258,11 @@
9258
  123
9259
  ],
9260
  "paths": [
9261
- "<local paths omitted>",
9262
- "<local paths omitted>",
9263
- "<local paths omitted>",
9264
- "<local paths omitted>",
9265
- "<local paths omitted>"
9266
  ],
9267
  "exact_regret": {
9268
  "n": 5,
@@ -9300,11 +9300,11 @@
9300
  123
9301
  ],
9302
  "paths": [
9303
- "<local paths omitted>",
9304
- "<local paths omitted>",
9305
- "<local paths omitted>",
9306
- "<local paths omitted>",
9307
- "<local paths omitted>"
9308
  ],
9309
  "exact_regret": {
9310
  "n": 5,
@@ -9342,11 +9342,11 @@
9342
  123
9343
  ],
9344
  "paths": [
9345
- "<local paths omitted>",
9346
- "<local paths omitted>",
9347
- "<local paths omitted>",
9348
- "<local paths omitted>",
9349
- "<local paths omitted>"
9350
  ],
9351
  "exact_regret": {
9352
  "n": 5,
@@ -9384,11 +9384,11 @@
9384
  123
9385
  ],
9386
  "paths": [
9387
- "<local paths omitted>",
9388
- "<local paths omitted>",
9389
- "<local paths omitted>",
9390
- "<local paths omitted>",
9391
- "<local paths omitted>"
9392
  ],
9393
  "exact_regret": {
9394
  "n": 5,
@@ -9426,11 +9426,11 @@
9426
  123
9427
  ],
9428
  "paths": [
9429
- "<local paths omitted>",
9430
- "<local paths omitted>",
9431
- "<local paths omitted>",
9432
- "<local paths omitted>",
9433
- "<local paths omitted>"
9434
  ],
9435
  "exact_regret": {
9436
  "n": 5,
@@ -9468,11 +9468,11 @@
9468
  123
9469
  ],
9470
  "paths": [
9471
- "<local paths omitted>",
9472
- "<local paths omitted>",
9473
- "<local paths omitted>",
9474
- "<local paths omitted>",
9475
- "<local paths omitted>"
9476
  ],
9477
  "exact_regret": {
9478
  "n": 5,
@@ -9510,11 +9510,11 @@
9510
  123
9511
  ],
9512
  "paths": [
9513
- "<local paths omitted>",
9514
- "<local paths omitted>",
9515
- "<local paths omitted>",
9516
- "<local paths omitted>",
9517
- "<local paths omitted>"
9518
  ],
9519
  "exact_regret": {
9520
  "n": 5,
@@ -9552,11 +9552,11 @@
9552
  123
9553
  ],
9554
  "paths": [
9555
- "<local paths omitted>",
9556
- "<local paths omitted>",
9557
- "<local paths omitted>",
9558
- "<local paths omitted>",
9559
- "<local paths omitted>"
9560
  ],
9561
  "exact_regret": {
9562
  "n": 5,
@@ -9594,11 +9594,11 @@
9594
  123
9595
  ],
9596
  "paths": [
9597
- "<local paths omitted>",
9598
- "<local paths omitted>",
9599
- "<local paths omitted>",
9600
- "<local paths omitted>",
9601
- "<local paths omitted>"
9602
  ],
9603
  "exact_regret": {
9604
  "n": 5,
@@ -9636,11 +9636,11 @@
9636
  123
9637
  ],
9638
  "paths": [
9639
- "<local paths omitted>",
9640
- "<local paths omitted>",
9641
- "<local paths omitted>",
9642
- "<local paths omitted>",
9643
- "<local paths omitted>"
9644
  ],
9645
  "exact_regret": {
9646
  "n": 5,
@@ -9678,11 +9678,11 @@
9678
  123
9679
  ],
9680
  "paths": [
9681
- "<local paths omitted>",
9682
- "<local paths omitted>",
9683
- "<local paths omitted>",
9684
- "<local paths omitted>",
9685
- "<local paths omitted>"
9686
  ],
9687
  "exact_regret": {
9688
  "n": 5,
@@ -9720,11 +9720,11 @@
9720
  123
9721
  ],
9722
  "paths": [
9723
- "<local paths omitted>",
9724
- "<local paths omitted>",
9725
- "<local paths omitted>",
9726
- "<local paths omitted>",
9727
- "<local paths omitted>"
9728
  ],
9729
  "exact_regret": {
9730
  "n": 5,
@@ -9762,11 +9762,11 @@
9762
  123
9763
  ],
9764
  "paths": [
9765
- "<local paths omitted>",
9766
- "<local paths omitted>",
9767
- "<local paths omitted>",
9768
- "<local paths omitted>",
9769
- "<local paths omitted>"
9770
  ],
9771
  "exact_regret": {
9772
  "n": 5,
@@ -9804,11 +9804,11 @@
9804
  123
9805
  ],
9806
  "paths": [
9807
- "<local paths omitted>",
9808
- "<local paths omitted>",
9809
- "<local paths omitted>",
9810
- "<local paths omitted>",
9811
- "<local paths omitted>"
9812
  ],
9813
  "exact_regret": {
9814
  "n": 5,
@@ -9846,11 +9846,11 @@
9846
  123
9847
  ],
9848
  "paths": [
9849
- "<local paths omitted>",
9850
- "<local paths omitted>",
9851
- "<local paths omitted>",
9852
- "<local paths omitted>",
9853
- "<local paths omitted>"
9854
  ],
9855
  "exact_regret": {
9856
  "n": 5,
@@ -9888,11 +9888,11 @@
9888
  123
9889
  ],
9890
  "paths": [
9891
- "<local paths omitted>",
9892
- "<local paths omitted>",
9893
- "<local paths omitted>",
9894
- "<local paths omitted>",
9895
- "<local paths omitted>"
9896
  ],
9897
  "exact_regret": {
9898
  "n": 5,
@@ -9930,11 +9930,11 @@
9930
  123
9931
  ],
9932
  "paths": [
9933
- "<local paths omitted>",
9934
- "<local paths omitted>",
9935
- "<local paths omitted>",
9936
- "<local paths omitted>",
9937
- "<local paths omitted>"
9938
  ],
9939
  "exact_regret": {
9940
  "n": 5,
@@ -9972,11 +9972,11 @@
9972
  123
9973
  ],
9974
  "paths": [
9975
- "<local paths omitted>",
9976
- "<local paths omitted>",
9977
- "<local paths omitted>",
9978
- "<local paths omitted>",
9979
- "<local paths omitted>"
9980
  ],
9981
  "exact_regret": {
9982
  "n": 5,
@@ -10014,11 +10014,11 @@
10014
  123
10015
  ],
10016
  "paths": [
10017
- "<local paths omitted>",
10018
- "<local paths omitted>",
10019
- "<local paths omitted>",
10020
- "<local paths omitted>",
10021
- "<local paths omitted>"
10022
  ],
10023
  "exact_regret": {
10024
  "n": 5,
@@ -10056,11 +10056,11 @@
10056
  123
10057
  ],
10058
  "paths": [
10059
- "<local paths omitted>",
10060
- "<local paths omitted>",
10061
- "<local paths omitted>",
10062
- "<local paths omitted>",
10063
- "<local paths omitted>"
10064
  ],
10065
  "exact_regret": {
10066
  "n": 5,
@@ -10098,11 +10098,11 @@
10098
  123
10099
  ],
10100
  "paths": [
10101
- "<local paths omitted>",
10102
- "<local paths omitted>",
10103
- "<local paths omitted>",
10104
- "<local paths omitted>",
10105
- "<local paths omitted>"
10106
  ],
10107
  "exact_regret": {
10108
  "n": 5,
@@ -10140,11 +10140,11 @@
10140
  123
10141
  ],
10142
  "paths": [
10143
- "<local paths omitted>",
10144
- "<local paths omitted>",
10145
- "<local paths omitted>",
10146
- "<local paths omitted>",
10147
- "<local paths omitted>"
10148
  ],
10149
  "exact_regret": {
10150
  "n": 5,
@@ -10182,11 +10182,11 @@
10182
  123
10183
  ],
10184
  "paths": [
10185
- "<local paths omitted>",
10186
- "<local paths omitted>",
10187
- "<local paths omitted>",
10188
- "<local paths omitted>",
10189
- "<local paths omitted>"
10190
  ],
10191
  "exact_regret": {
10192
  "n": 5,
 
8376
  123
8377
  ],
8378
  "paths": [
8379
+ "<local path omitted>",
8380
+ "<local path omitted>",
8381
+ "<local path omitted>",
8382
+ "<local path omitted>",
8383
+ "<local path omitted>"
8384
  ],
8385
  "exact_regret": {
8386
  "n": 5,
 
8418
  123
8419
  ],
8420
  "paths": [
8421
+ "<local path omitted>",
8422
+ "<local path omitted>",
8423
+ "<local path omitted>",
8424
+ "<local path omitted>",
8425
+ "<local path omitted>"
8426
  ],
8427
  "exact_regret": {
8428
  "n": 5,
 
8460
  123
8461
  ],
8462
  "paths": [
8463
+ "<local path omitted>",
8464
+ "<local path omitted>",
8465
+ "<local path omitted>",
8466
+ "<local path omitted>",
8467
+ "<local path omitted>"
8468
  ],
8469
  "exact_regret": {
8470
  "n": 5,
 
8502
  123
8503
  ],
8504
  "paths": [
8505
+ "<local path omitted>",
8506
+ "<local path omitted>",
8507
+ "<local path omitted>",
8508
+ "<local path omitted>",
8509
+ "<local path omitted>"
8510
  ],
8511
  "exact_regret": {
8512
  "n": 5,
 
8544
  123
8545
  ],
8546
  "paths": [
8547
+ "<local path omitted>",
8548
+ "<local path omitted>",
8549
+ "<local path omitted>",
8550
+ "<local path omitted>",
8551
+ "<local path omitted>"
8552
  ],
8553
  "exact_regret": {
8554
  "n": 5,
 
8586
  123
8587
  ],
8588
  "paths": [
8589
+ "<local path omitted>",
8590
+ "<local path omitted>",
8591
+ "<local path omitted>",
8592
+ "<local path omitted>",
8593
+ "<local path omitted>"
8594
  ],
8595
  "exact_regret": {
8596
  "n": 5,
 
8628
  123
8629
  ],
8630
  "paths": [
8631
+ "<local path omitted>",
8632
+ "<local path omitted>",
8633
+ "<local path omitted>",
8634
+ "<local path omitted>",
8635
+ "<local path omitted>"
8636
  ],
8637
  "exact_regret": {
8638
  "n": 5,
 
8670
  123
8671
  ],
8672
  "paths": [
8673
+ "<local path omitted>",
8674
+ "<local path omitted>",
8675
+ "<local path omitted>",
8676
+ "<local path omitted>",
8677
+ "<local path omitted>"
8678
  ],
8679
  "exact_regret": {
8680
  "n": 5,
 
8712
  123
8713
  ],
8714
  "paths": [
8715
+ "<local path omitted>",
8716
+ "<local path omitted>",
8717
+ "<local path omitted>",
8718
+ "<local path omitted>",
8719
+ "<local path omitted>"
8720
  ],
8721
  "exact_regret": {
8722
  "n": 5,
 
8754
  123
8755
  ],
8756
  "paths": [
8757
+ "<local path omitted>",
8758
+ "<local path omitted>",
8759
+ "<local path omitted>",
8760
+ "<local path omitted>",
8761
+ "<local path omitted>"
8762
  ],
8763
  "exact_regret": {
8764
  "n": 5,
 
8796
  123
8797
  ],
8798
  "paths": [
8799
+ "<local path omitted>",
8800
+ "<local path omitted>",
8801
+ "<local path omitted>",
8802
+ "<local path omitted>",
8803
+ "<local path omitted>"
8804
  ],
8805
  "exact_regret": {
8806
  "n": 5,
 
8838
  123
8839
  ],
8840
  "paths": [
8841
+ "<local path omitted>",
8842
+ "<local path omitted>",
8843
+ "<local path omitted>",
8844
+ "<local path omitted>",
8845
+ "<local path omitted>"
8846
  ],
8847
  "exact_regret": {
8848
  "n": 5,
 
8880
  123
8881
  ],
8882
  "paths": [
8883
+ "<local path omitted>",
8884
+ "<local path omitted>",
8885
+ "<local path omitted>",
8886
+ "<local path omitted>",
8887
+ "<local path omitted>"
8888
  ],
8889
  "exact_regret": {
8890
  "n": 5,
 
8922
  123
8923
  ],
8924
  "paths": [
8925
+ "<local path omitted>",
8926
+ "<local path omitted>",
8927
+ "<local path omitted>",
8928
+ "<local path omitted>",
8929
+ "<local path omitted>"
8930
  ],
8931
  "exact_regret": {
8932
  "n": 5,
 
8964
  123
8965
  ],
8966
  "paths": [
8967
+ "<local path omitted>",
8968
+ "<local path omitted>",
8969
+ "<local path omitted>",
8970
+ "<local path omitted>",
8971
+ "<local path omitted>"
8972
  ],
8973
  "exact_regret": {
8974
  "n": 5,
 
9006
  123
9007
  ],
9008
  "paths": [
9009
+ "<local path omitted>",
9010
+ "<local path omitted>",
9011
+ "<local path omitted>",
9012
+ "<local path omitted>",
9013
+ "<local path omitted>"
9014
  ],
9015
  "exact_regret": {
9016
  "n": 5,
 
9048
  123
9049
  ],
9050
  "paths": [
9051
+ "<local path omitted>",
9052
+ "<local path omitted>",
9053
+ "<local path omitted>",
9054
+ "<local path omitted>",
9055
+ "<local path omitted>"
9056
  ],
9057
  "exact_regret": {
9058
  "n": 5,
 
9090
  123
9091
  ],
9092
  "paths": [
9093
+ "<local path omitted>",
9094
+ "<local path omitted>",
9095
+ "<local path omitted>",
9096
+ "<local path omitted>",
9097
+ "<local path omitted>"
9098
  ],
9099
  "exact_regret": {
9100
  "n": 5,
 
9132
  123
9133
  ],
9134
  "paths": [
9135
+ "<local path omitted>",
9136
+ "<local path omitted>",
9137
+ "<local path omitted>",
9138
+ "<local path omitted>",
9139
+ "<local path omitted>"
9140
  ],
9141
  "exact_regret": {
9142
  "n": 5,
 
9174
  123
9175
  ],
9176
  "paths": [
9177
+ "<local path omitted>",
9178
+ "<local path omitted>",
9179
+ "<local path omitted>",
9180
+ "<local path omitted>",
9181
+ "<local path omitted>"
9182
  ],
9183
  "exact_regret": {
9184
  "n": 5,
 
9216
  123
9217
  ],
9218
  "paths": [
9219
+ "<local path omitted>",
9220
+ "<local path omitted>",
9221
+ "<local path omitted>",
9222
+ "<local path omitted>",
9223
+ "<local path omitted>"
9224
  ],
9225
  "exact_regret": {
9226
  "n": 5,
 
9258
  123
9259
  ],
9260
  "paths": [
9261
+ "<local path omitted>",
9262
+ "<local path omitted>",
9263
+ "<local path omitted>",
9264
+ "<local path omitted>",
9265
+ "<local path omitted>"
9266
  ],
9267
  "exact_regret": {
9268
  "n": 5,
 
9300
  123
9301
  ],
9302
  "paths": [
9303
+ "<local path omitted>",
9304
+ "<local path omitted>",
9305
+ "<local path omitted>",
9306
+ "<local path omitted>",
9307
+ "<local path omitted>"
9308
  ],
9309
  "exact_regret": {
9310
  "n": 5,
 
9342
  123
9343
  ],
9344
  "paths": [
9345
+ "<local path omitted>",
9346
+ "<local path omitted>",
9347
+ "<local path omitted>",
9348
+ "<local path omitted>",
9349
+ "<local path omitted>"
9350
  ],
9351
  "exact_regret": {
9352
  "n": 5,
 
9384
  123
9385
  ],
9386
  "paths": [
9387
+ "<local path omitted>",
9388
+ "<local path omitted>",
9389
+ "<local path omitted>",
9390
+ "<local path omitted>",
9391
+ "<local path omitted>"
9392
  ],
9393
  "exact_regret": {
9394
  "n": 5,
 
9426
  123
9427
  ],
9428
  "paths": [
9429
+ "<local path omitted>",
9430
+ "<local path omitted>",
9431
+ "<local path omitted>",
9432
+ "<local path omitted>",
9433
+ "<local path omitted>"
9434
  ],
9435
  "exact_regret": {
9436
  "n": 5,
 
9468
  123
9469
  ],
9470
  "paths": [
9471
+ "<local path omitted>",
9472
+ "<local path omitted>",
9473
+ "<local path omitted>",
9474
+ "<local path omitted>",
9475
+ "<local path omitted>"
9476
  ],
9477
  "exact_regret": {
9478
  "n": 5,
 
9510
  123
9511
  ],
9512
  "paths": [
9513
+ "<local path omitted>",
9514
+ "<local path omitted>",
9515
+ "<local path omitted>",
9516
+ "<local path omitted>",
9517
+ "<local path omitted>"
9518
  ],
9519
  "exact_regret": {
9520
  "n": 5,
 
9552
  123
9553
  ],
9554
  "paths": [
9555
+ "<local path omitted>",
9556
+ "<local path omitted>",
9557
+ "<local path omitted>",
9558
+ "<local path omitted>",
9559
+ "<local path omitted>"
9560
  ],
9561
  "exact_regret": {
9562
  "n": 5,
 
9594
  123
9595
  ],
9596
  "paths": [
9597
+ "<local path omitted>",
9598
+ "<local path omitted>",
9599
+ "<local path omitted>",
9600
+ "<local path omitted>",
9601
+ "<local path omitted>"
9602
  ],
9603
  "exact_regret": {
9604
  "n": 5,
 
9636
  123
9637
  ],
9638
  "paths": [
9639
+ "<local path omitted>",
9640
+ "<local path omitted>",
9641
+ "<local path omitted>",
9642
+ "<local path omitted>",
9643
+ "<local path omitted>"
9644
  ],
9645
  "exact_regret": {
9646
  "n": 5,
 
9678
  123
9679
  ],
9680
  "paths": [
9681
+ "<local path omitted>",
9682
+ "<local path omitted>",
9683
+ "<local path omitted>",
9684
+ "<local path omitted>",
9685
+ "<local path omitted>"
9686
  ],
9687
  "exact_regret": {
9688
  "n": 5,
 
9720
  123
9721
  ],
9722
  "paths": [
9723
+ "<local path omitted>",
9724
+ "<local path omitted>",
9725
+ "<local path omitted>",
9726
+ "<local path omitted>",
9727
+ "<local path omitted>"
9728
  ],
9729
  "exact_regret": {
9730
  "n": 5,
 
9762
  123
9763
  ],
9764
  "paths": [
9765
+ "<local path omitted>",
9766
+ "<local path omitted>",
9767
+ "<local path omitted>",
9768
+ "<local path omitted>",
9769
+ "<local path omitted>"
9770
  ],
9771
  "exact_regret": {
9772
  "n": 5,
 
9804
  123
9805
  ],
9806
  "paths": [
9807
+ "<local path omitted>",
9808
+ "<local path omitted>",
9809
+ "<local path omitted>",
9810
+ "<local path omitted>",
9811
+ "<local path omitted>"
9812
  ],
9813
  "exact_regret": {
9814
  "n": 5,
 
9846
  123
9847
  ],
9848
  "paths": [
9849
+ "<local path omitted>",
9850
+ "<local path omitted>",
9851
+ "<local path omitted>",
9852
+ "<local path omitted>",
9853
+ "<local path omitted>"
9854
  ],
9855
  "exact_regret": {
9856
  "n": 5,
 
9888
  123
9889
  ],
9890
  "paths": [
9891
+ "<local path omitted>",
9892
+ "<local path omitted>",
9893
+ "<local path omitted>",
9894
+ "<local path omitted>",
9895
+ "<local path omitted>"
9896
  ],
9897
  "exact_regret": {
9898
  "n": 5,
 
9930
  123
9931
  ],
9932
  "paths": [
9933
+ "<local path omitted>",
9934
+ "<local path omitted>",
9935
+ "<local path omitted>",
9936
+ "<local path omitted>",
9937
+ "<local path omitted>"
9938
  ],
9939
  "exact_regret": {
9940
  "n": 5,
 
9972
  123
9973
  ],
9974
  "paths": [
9975
+ "<local path omitted>",
9976
+ "<local path omitted>",
9977
+ "<local path omitted>",
9978
+ "<local path omitted>",
9979
+ "<local path omitted>"
9980
  ],
9981
  "exact_regret": {
9982
  "n": 5,
 
10014
  123
10015
  ],
10016
  "paths": [
10017
+ "<local path omitted>",
10018
+ "<local path omitted>",
10019
+ "<local path omitted>",
10020
+ "<local path omitted>",
10021
+ "<local path omitted>"
10022
  ],
10023
  "exact_regret": {
10024
  "n": 5,
 
10056
  123
10057
  ],
10058
  "paths": [
10059
+ "<local path omitted>",
10060
+ "<local path omitted>",
10061
+ "<local path omitted>",
10062
+ "<local path omitted>",
10063
+ "<local path omitted>"
10064
  ],
10065
  "exact_regret": {
10066
  "n": 5,
 
10098
  123
10099
  ],
10100
  "paths": [
10101
+ "<local path omitted>",
10102
+ "<local path omitted>",
10103
+ "<local path omitted>",
10104
+ "<local path omitted>",
10105
+ "<local path omitted>"
10106
  ],
10107
  "exact_regret": {
10108
  "n": 5,
 
10140
  123
10141
  ],
10142
  "paths": [
10143
+ "<local path omitted>",
10144
+ "<local path omitted>",
10145
+ "<local path omitted>",
10146
+ "<local path omitted>",
10147
+ "<local path omitted>"
10148
  ],
10149
  "exact_regret": {
10150
  "n": 5,
 
10182
  123
10183
  ],
10184
  "paths": [
10185
+ "<local path omitted>",
10186
+ "<local path omitted>",
10187
+ "<local path omitted>",
10188
+ "<local path omitted>",
10189
+ "<local path omitted>"
10190
  ],
10191
  "exact_regret": {
10192
  "n": 5,
assets/{primary_rank_change_preview.png → overview_final.png} RENAMED
File without changes
assets/{selection_regret_preview.png → primary_rank_change_final.png} RENAMED
File without changes
assets/release_contents.svg ADDED
assets/{task_rank_map_preview.png → selection_regret_final.png} RENAMED
File without changes
assets/supporting_rank_map_final.png ADDED

Git LFS Details

  • SHA256: 34807e65ca71365a26a3b74cae70e6b40ae6f2151110e12c53e0efa9f8b726aa
  • Pointer size: 131 Bytes
  • Size of remote file: 697 kB
assets/wildfire_fm_model_card.svg ADDED
docs/huggingface_release_design.md CHANGED
@@ -1,16 +1,27 @@
1
  # Hugging Face Release Design
2
 
3
- This release follows the common Hugging Face pattern for research artifacts:
 
 
 
 
4
 
5
- - `README.md` is the public card. It contains YAML metadata, intended use,
6
- limitations, data provenance, reproduction commands, and citation text.
7
- - `paper_outputs/` stores the final TeX, TikZ, and PDF artifacts used by the
 
 
 
 
 
 
8
  manuscript.
9
  - `artifacts/results/` stores compact CSV/JSON summaries that can be public.
10
- - `artifacts/manifests/` maps paper labels to files and records output hashes.
11
  - `data_sources/` documents external data resources without redistributing them.
12
  - `experiments/` contains raw-rerun reference scripts and Slurm templates.
13
 
14
- The repository is intentionally a paper-artifact release rather than a dataset
15
- mirror or model-weight release. Full raw-data reruns require separately obtained
16
- source data and local feature caches.
 
 
 
1
  # Hugging Face Release Design
2
 
3
+ This release follows a model-card-first pattern used by geospatial and weather
4
+ foundation-model releases on the Hub. The public page starts with model purpose,
5
+ released weights, input expectations, a quick loading example, data boundaries,
6
+ and a compact evaluation snapshot. Paper artifacts are included as supporting
7
+ reproducibility material rather than being the main organizing principle.
8
 
9
+ ## Public Card Structure
10
+
11
+ - `README.md` is the public model card. It contains YAML metadata, intended use,
12
+ checkpoint locations, quick loading code, data-source boundaries, limitations,
13
+ and citation text.
14
+ - `assets/` contains lightweight visuals for the Hub page plus PNG previews of
15
+ final-paper figures.
16
+ - `models/wildfire_fm/` contains model code, manifests, and checkpoint metadata.
17
+ - `paper_outputs/` stores final TeX, TikZ, and PDF artifacts used by the
18
  manuscript.
19
  - `artifacts/results/` stores compact CSV/JSON summaries that can be public.
 
20
  - `data_sources/` documents external data resources without redistributing them.
21
  - `experiments/` contains raw-rerun reference scripts and Slurm templates.
22
 
23
+ ## Data Boundary
24
+
25
+ The repository is a model release with reproducibility artifacts, not a raw-data
26
+ mirror. Full raw-data reruns require separately obtained source data, local
27
+ feature caches, and cluster-specific paths.
scripts/audit_release.py CHANGED
@@ -25,9 +25,11 @@ REQUIRED = [
25
  "paper_outputs/figures/fig_primary_rank_change_map.pdf",
26
  "paper_outputs/figures/fig_selection_regret_scatter.pdf",
27
  "paper_outputs/figures/fig_rank_heatmap1.pdf",
28
- "assets/selection_regret_preview.png",
29
- "assets/task_rank_map_preview.png",
30
- "assets/primary_rank_change_preview.png",
 
 
31
  "artifacts/manifests/paper_outputs.sha256",
32
  "scripts/check_paper_output_hashes.py",
33
  ]
@@ -84,7 +86,7 @@ def main() -> None:
84
  issues.append(f"{path.relative_to(ROOT)} contains forbidden token {token!r}")
85
 
86
  readme = (ROOT / "README.md").read_text(errors="ignore")
87
- for phrase in ["WildFIRE-FM", "Model weights", "Data Used By The Study", "Loading A Checkpoint"]:
88
  if phrase not in readme:
89
  issues.append(f"README missing expected model-card phrase: {phrase}")
90
 
 
25
  "paper_outputs/figures/fig_primary_rank_change_map.pdf",
26
  "paper_outputs/figures/fig_selection_regret_scatter.pdf",
27
  "paper_outputs/figures/fig_rank_heatmap1.pdf",
28
+ "assets/wildfire_fm_model_card.svg",
29
+ "assets/release_contents.svg",
30
+ "assets/selection_regret_final.png",
31
+ "assets/supporting_rank_map_final.png",
32
+ "assets/primary_rank_change_final.png",
33
  "artifacts/manifests/paper_outputs.sha256",
34
  "scripts/check_paper_output_hashes.py",
35
  ]
 
86
  issues.append(f"{path.relative_to(ROOT)} contains forbidden token {token!r}")
87
 
88
  readme = (ROOT / "README.md").read_text(errors="ignore")
89
+ for phrase in ["WildFIRE-FM", "Quick Load", "Data Sources", "Evaluation Snapshot"]:
90
  if phrase not in readme:
91
  issues.append(f"README missing expected model-card phrase: {phrase}")
92