es833 commited on
Commit
f581fd1
·
verified ·
1 Parent(s): d761306

Update dataset card

Browse files
Files changed (1) hide show
  1. README.md +28 -17
README.md CHANGED
@@ -35,6 +35,11 @@ variables on a 32 x 64 x 10 latitude-longitude-pressure grid. It includes three
35
  nested benchmark subsets, two evaluation protocols, and eight released baseline
36
  methods.
37
 
 
 
 
 
 
38
  ![ThousandWorlds dataset schematic](OVERVIEW.png)
39
 
40
  ## Quickstart
@@ -65,25 +70,30 @@ and reproducibility instructions.
65
 
66
  ## Files
67
 
68
- The release is distributed as archives so that the on-disk layout matches the
69
- ThousandWorlds package directly.
70
 
71
- | File | Contents |
72
- | --- | --- |
73
- | `archives/dataset.tar.gz` | Metadata CSVs, benchmark subsets, gridded climate fields, spectral coefficients, and normalization assets. Extracts to `dataset/`. |
74
- | `archives/results-baselines-<subset>-deterministic.tar.gz` | Deterministic baseline predictions, configs, metrics, and tables for one subset. Extracts to `results/`. |
75
- | `archives/results-baselines-<subset>-gplfr.tar.gz` | GPLFR probabilistic baseline predictions and metrics for one subset. Extracts to `results/`. |
76
- | `archives/results-baselines-<subset>-ppca_icm.tar.gz` | PPCA-ICM probabilistic baseline predictions and metrics for one subset. Extracts to `results/`. |
77
- | `archives/*.sha256` | SHA256 checksums for the release archives. |
78
- | `croissant.json` | Machine-readable Croissant metadata for the archive layout. |
 
 
 
 
 
79
 
80
- Canonical subsets are:
 
81
 
82
  | Subset | Simulations | Fields | Description |
83
  | --- | ---: | ---: | --- |
84
- | `single-complete` | 256 | 48 | UM-only complete-observation subset |
85
- | `multi-complete` | 1659 | 48 | 5 GCMs, complete-observation subset |
86
- | `multi-partial` | 1760 | 53 | 5 GCMs, subset with structured whole-field missingness |
87
 
88
  The subset split files contain:
89
 
@@ -151,11 +161,12 @@ and LFRic.
151
 
152
  ## Evaluation
153
 
154
- The package includes loaders and metrics for the two benchmark protocols:
155
 
156
- - **Standard**: evaluate on each subset's held-out test simulations.
157
  - **Shared-planets**: evaluate on planets shared across target and auxiliary
158
- GCMs; available for the two multi-GCM subsets.
 
159
 
160
  Released baselines include train mean, kNN, PCA ridge, PCA-MLP, Coord-MLP,
161
  Coord-DeepONet, PPCA-ICM, and GPLFR. Baseline artifacts include predictions,
 
35
  nested benchmark subsets, two evaluation protocols, and eight released baseline
36
  methods.
37
 
38
+ Inputs are 8 continuous planet parameters plus the source GCM label. Outputs
39
+ are time-averaged climate fields on a 32 x 64 latitude-longitude grid:
40
+ three-dimensional variables are stored as pressure-level channels, and
41
+ two-dimensional variables are stored as single fields.
42
+
43
  ![ThousandWorlds dataset schematic](OVERVIEW.png)
44
 
45
  ## Quickstart
 
70
 
71
  ## Files
72
 
73
+ The release includes:
 
74
 
75
+ - `archives/dataset.tar.gz`: the ThousandWorlds dataset.
76
+ - `archives/results-baselines-*.tar.gz`: baseline predictions for the 3
77
+ subsets.
78
+ - `croissant.json`: Croissant metadata.
79
+ - `archives/*.sha256`: checksum sidecars.
80
+
81
+ ## Dataset Contents
82
+
83
+ The dataset contains gridded fields (NumPy), input metadata (CSV), predefined
84
+ train/test splits, normalization statistics, and spherical harmonic
85
+ coefficients plus inverse-SHT weights for spectral methods.
86
+
87
+ ## Subsets
88
 
89
+ The dataset is organized into three subsets of increasing complexity and
90
+ realism:
91
 
92
  | Subset | Simulations | Fields | Description |
93
  | --- | ---: | ---: | --- |
94
+ | `single-complete` | 256 | 48 | Smaller subset; simulations from a single GCM, complete observations only. |
95
+ | `multi-complete` | 1659 | 48 | All 5 GCMs, still with no missing fields. |
96
+ | `multi-partial` | 1760 | 53 | Full dataset; all 5 GCMs, with missing fields represented as NaNs. |
97
 
98
  The subset split files contain:
99
 
 
161
 
162
  ## Evaluation
163
 
164
+ The package includes loaders and metrics for two benchmark protocols:
165
 
166
+ - **Standard**: the main test protocol, ideal for ML model comparison.
167
  - **Shared-planets**: evaluate on planets shared across target and auxiliary
168
+ GCMs; used to assess performance relative to inter-GCM error, i.e. how close
169
+ a model gets to the epistemic uncertainty floor of the problem.
170
 
171
  Released baselines include train mean, kNN, PCA ridge, PCA-MLP, Coord-MLP,
172
  Coord-DeepONet, PPCA-ICM, and GPLFR. Baseline artifacts include predictions,