PraLak commited on
Commit
f59b0d7
·
verified ·
1 Parent(s): 2892d09

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +29 -10
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
- ## Reproducing splits
 
 
 
 
 
 
 
 
123
 
124
- Each split is defined by a base seed offset (see `dataset_config.json`) so
125
- splits don't share initial conditions and can be regenerated bit-for-bit:
 
 
126
 
127
- | split | seed offset |
128
- |----------|------------:|
129
- | train | 0 |
130
- | val | 100 000 |
131
- | test | 200 000 |
132
- | ood_near | 300 000 |
133
- | ood_far | 400 000 |
 
 
 
 
 
 
 
 
 
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