Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -119,18 +119,37 @@ with h5py.File("ball3d/ball3d_test.h5", "r") as f:
|
|
| 119 |
Euler trajectories live under per-trajectory groups inside the file; iterate
|
| 120 |
keys to enumerate.
|
| 121 |
|
| 122 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 123 |
|
| 124 |
-
|
| 125 |
-
|
|
|
|
|
|
|
| 126 |
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
|
| 135 |
## Intended use
|
| 136 |
|
|
|
|
| 119 |
Euler trajectories live under per-trajectory groups inside the file; iterate
|
| 120 |
keys to enumerate.
|
| 121 |
|
| 122 |
+
## Split sizes
|
| 123 |
+
|
| 124 |
+
| split | Oregonator | Euler 2D | Ball 3D |
|
| 125 |
+
|----------|-----------:|---------:|--------:|
|
| 126 |
+
| train | 1 200 | 800 | 1 000 |
|
| 127 |
+
| val | 150 | 100 | 200 |
|
| 128 |
+
| test | 150 | 100 | 200 |
|
| 129 |
+
| ood_near | 250 | 200 | 200 |
|
| 130 |
+
| ood_far | 250 | 200 | 200 |
|
| 131 |
|
| 132 |
+
(Counts are number of independent trajectories. Each trajectory holds 100-201
|
| 133 |
+
saved frames depending on the environment.)
|
| 134 |
+
|
| 135 |
+
## Reproducing splits
|
| 136 |
|
| 137 |
+
Splits do not share initial conditions: each split is generated from a
|
| 138 |
+
disjoint range of integer seeds. The seed _offset_ below is the first seed
|
| 139 |
+
used for that split; consecutive trajectories use offset, offset+1, offset+2,
|
| 140 |
+
... — so train uses seeds 0 through 1 199, val uses 100 000 through 100 149,
|
| 141 |
+
etc. This guarantees a regenerable, leak-free split assignment.
|
| 142 |
+
|
| 143 |
+
| split | seed offset | seed range (Oregonator) |
|
| 144 |
+
|----------|------------:|-------------------------:|
|
| 145 |
+
| train | 0 | 0 ... 1 199 |
|
| 146 |
+
| val | 100 000 | 100 000 ... 100 149 |
|
| 147 |
+
| test | 200 000 | 200 000 ... 200 149 |
|
| 148 |
+
| ood_near | 300 000 | 300 000 ... 300 249 |
|
| 149 |
+
| ood_far | 400 000 | 400 000 ... 400 249 |
|
| 150 |
+
|
| 151 |
+
See `oregonator/dataset_config.json` for full per-env metadata
|
| 152 |
+
(grid sizes, integration step, physics parameters, IC mixture).
|
| 153 |
|
| 154 |
## Intended use
|
| 155 |
|