Ved100 commited on
Commit
bfa36e5
·
verified ·
1 Parent(s): f7c032c

Update README with simplified dataset card (removed tested models, acknowledgments, and extra usage examples)

Browse files
Files changed (1) hide show
  1. README.md +1 -174
README.md CHANGED
@@ -24,11 +24,10 @@ tags:
24
 
25
  This dataset accompanies the research paper **"Pre-Generating Multi-Difficulty PDE Data For Few-Shot Neural PDE Solvers"** (under review at ICLR 2026). It contains systematically generated 2D incompressible Navier-Stokes fluid flow simulations designed to study **difficulty transfer** in neural PDE solvers.
26
 
27
- The key insight: by pre-generating many low and medium difficulty examples and including them with a small number of hard examples, neural PDE solvers can learn high-difficulty physics from far fewer samples. This dataset enables **8.9× reduction in compute time** while achieving comparable performance.
28
 
29
  ### Dataset Summary
30
 
31
- - **Total Size:** ~421 GB
32
  - **Format:** NumPy arrays (.npy files)
33
  - **Number of Files:** 9
34
  - **Simulations per file:** 6,400 trajectories
@@ -37,21 +36,6 @@ The key insight: by pre-generating many low and medium difficulty examples and i
37
  - **Solver:** OpenFOAM (icoFoam)
38
  - **Domain:** 2D Incompressible Navier-Stokes equations
39
 
40
- ### Problem Setting
41
-
42
- The dataset solves the 2D incompressible Navier-Stokes equations:
43
-
44
- ```
45
- ∂u/∂t + (u · ∇)u + ∇p = ν∆u
46
- ∇ · u = 0
47
- ```
48
-
49
- where:
50
- - `u(x,t)` is the velocity field
51
- - `p(x,t)` is the kinematic pressure
52
- - `ν` is the kinematic viscosity (1.5 × 10⁻⁵ m²/s)
53
- - Domain: Ω ⊂ [0,1]²
54
-
55
  ## Difficulty Axes
56
 
57
  The dataset systematically varies complexity along three axes:
@@ -115,68 +99,8 @@ Each `.npy` file contains a NumPy array with shape: `(6400, 20, 128, 128, 6)`
115
  5. **Binary mask** - Geometry encoding (1 = obstacle, 0 = fluid)
116
  6. **SDF** - Signed distance field to nearest obstacle boundary
117
 
118
- ## Simulation Details
119
-
120
- ### Boundary Conditions
121
-
122
- **Flow Past Object (FPO):**
123
- - **Left (inlet):** Parabolic velocity profile with peak velocity Umax
124
- - **Right (outlet):** Zero-gradient pressure outlet
125
- - **Top/Bottom:** No-slip walls (u = 0)
126
- - **Obstacles:** No-slip walls (u = 0)
127
-
128
- ### Reynolds Number Sampling
129
- Re is sampled from a truncated Gaussian distribution N(5000, 2000²) with support [100, 10000]. The inlet velocity is scaled to achieve the target Re:
130
-
131
- ```
132
- Re = (U_avg × L) / ν
133
- U_avg = (2/3) × U_max
134
- ```
135
-
136
- ### Time Integration
137
- - **Scheme:** Backward Euler (1st order implicit)
138
- - **Spatial discretization:** Finite volume method
139
- - **Gradient terms:** Gauss linear (central differencing)
140
- - **Convection:** Gauss linearUpwind with gradient reconstruction
141
- - **Diffusion:** Gauss linear orthogonal
142
-
143
- ### Simulation Duration
144
- Adaptive time scheduling based on Reynolds number to ensure flow development:
145
- - **Low Re (10-100):** Fixed 2700s
146
- - **Medium Re (100-1000):** 1-10× characteristic diffusion time
147
- - **High Re (1000-10000):** 10-40× characteristic diffusion time
148
-
149
- ### Computational Cost
150
- The harder the simulation, the more expensive to generate:
151
-
152
- | Configuration | Average Time (seconds) |
153
- |--------------|----------------------|
154
- | No obstacle, Low Re | 176.7 |
155
- | No obstacle, Medium Re | 261.1 |
156
- | No obstacle, High Re | 350.4 |
157
- | One obstacle, Low Re | 609.5 |
158
- | One obstacle, Medium Re | 731.1 |
159
- | One obstacle, High Re | 942.8 |
160
- | Multiple obstacles, Low Re | 1550.9 |
161
- | Multiple obstacles, Medium Re | 1599.2 |
162
- | Multiple obstacles, High Re | 1653.3 |
163
-
164
- ## Key Research Findings
165
-
166
- This dataset was specifically designed to study **difficulty transfer** in neural PDE solvers:
167
-
168
- 1. **Sample Efficiency**: Training on 10% hard data + 90% easy/medium data recovers ~96-98% of the performance of training on 100% hard data
169
-
170
- 2. **Compute Efficiency**: By mixing difficulties optimally, you can achieve the same error with **8.9× less compute** spent on data generation
171
-
172
- 3. **Medium > Easy**: For most budgets, generating fewer medium-difficulty examples outperforms generating more easy examples
173
-
174
- 4. **Foundation Dataset Potential**: Medium-difficulty data (single obstacle) improves few-shot performance on complex geometries (NURBS shapes from FlowBench)
175
-
176
  ## Usage
177
 
178
- ### Basic Loading
179
-
180
  ```python
181
  import numpy as np
182
  from huggingface_hub import hf_hub_download
@@ -203,79 +127,6 @@ mask = trajectory_0[:, :, :, 4] # Binary geometry mask
203
  sdf = trajectory_0[:, :, :, 5] # Signed distance field
204
  ```
205
 
206
- ### Difficulty Mixing for Training
207
-
208
- ```python
209
- import numpy as np
210
- from huggingface_hub import hf_hub_download
211
-
212
- # Load different difficulty levels
213
- easy_data = np.load(hf_hub_download(
214
- repo_id="sage-lab/PreGen-NavierStokes-2D",
215
- filename="Geometry_Axis/FPO_Geometry_Easy_NoObstacle.npy",
216
- repo_type="dataset"
217
- ))
218
-
219
- medium_data = np.load(hf_hub_download(
220
- repo_id="sage-lab/PreGen-NavierStokes-2D",
221
- filename="Geometry_Axis/FPO_Geometry_Medium_SingleObstacle.npy",
222
- repo_type="dataset"
223
- ))
224
-
225
- hard_data = np.load(hf_hub_download(
226
- repo_id="sage-lab/PreGen-NavierStokes-2D",
227
- filename="Geometry_Axis/FPO_Geometry_Hard_MultiObstacle.npy",
228
- repo_type="dataset"
229
- ))
230
-
231
- # Recommended: Use 10% hard + 90% medium for cost-effective training
232
- n_hard = 80
233
- n_medium = 720
234
-
235
- train_data = np.concatenate([
236
- hard_data[:n_hard],
237
- medium_data[:n_medium]
238
- ], axis=0)
239
-
240
- # Hold out 100 hard examples for testing
241
- test_data = hard_data[-100:]
242
- ```
243
-
244
- ### Computing Metrics
245
-
246
- ```python
247
- def compute_nmae(y_true, y_pred):
248
- """
249
- Compute normalized Mean Absolute Error (nMAE)
250
- as used in the paper.
251
-
252
- Args:
253
- y_true: Ground truth, shape (N, T, H, W, C)
254
- y_pred: Predictions, shape (N, T, H, W, C)
255
-
256
- Returns:
257
- nMAE: Normalized mean absolute error
258
- """
259
- numerator = np.abs(y_true - y_pred).sum()
260
- denominator = np.abs(y_true).sum()
261
- return numerator / (denominator + 1e-10)
262
- ```
263
-
264
- ## Tested Models
265
-
266
- The paper evaluates this dataset on:
267
-
268
- ### Supervised Neural Operators (trained from scratch)
269
- - **CNO** (Convolutional Neural Operator) - 18M parameters
270
- - **F-FNO** (Factorized Fourier Neural Operator) - 5-layer
271
-
272
- ### Foundation Models (fine-tuned)
273
- - **Poseidon-T** (Tiny) - 21M parameters
274
- - **Poseidon-B** (Base) - 158M parameters
275
- - **Poseidon-L** (Large) - 629M parameters
276
-
277
- All models are trained autoregressively with one-step-ahead prediction (t → t+1) using relative L1 loss.
278
-
279
  ## Citation
280
 
281
  If you use this dataset, please cite:
@@ -292,34 +143,10 @@ If you use this dataset, please cite:
292
 
293
  **Note:** Citation will be updated once the paper is published.
294
 
295
- ## Related Datasets
296
-
297
- - **The Well** - Large-scale multi-physics PDE dataset
298
- - **PDEBench** - Benchmark for scientific machine learning
299
- - **FlowBench** - Flow simulation over complex geometries (NURBS shapes)
300
-
301
  ## License
302
 
303
  MIT License
304
 
305
- ## Acknowledgments
306
-
307
- This dataset was generated using:
308
- - **OpenFOAM** (v2406) for CFD simulations
309
- - Simulations performed on computational clusters
310
- - Total compute time: Several thousand GPU/CPU hours
311
-
312
- ## Contact
313
-
314
- For questions or issues:
315
- - Open an issue in the dataset repository
316
- - Contact the sage-lab organization on Hugging Face
317
- - See the paper for additional contact information (once published)
318
-
319
- ## Dataset Maintainers
320
-
321
- sage-lab organization
322
-
323
  ---
324
 
325
  **Dataset Version:** 1.0
 
24
 
25
  This dataset accompanies the research paper **"Pre-Generating Multi-Difficulty PDE Data For Few-Shot Neural PDE Solvers"** (under review at ICLR 2026). It contains systematically generated 2D incompressible Navier-Stokes fluid flow simulations designed to study **difficulty transfer** in neural PDE solvers.
26
 
27
+ The key insight: by pre-generating many low and medium difficulty examples and including them with a small number of hard examples, neural PDE solvers can learn high-difficulty physics from far fewer samples.
28
 
29
  ### Dataset Summary
30
 
 
31
  - **Format:** NumPy arrays (.npy files)
32
  - **Number of Files:** 9
33
  - **Simulations per file:** 6,400 trajectories
 
36
  - **Solver:** OpenFOAM (icoFoam)
37
  - **Domain:** 2D Incompressible Navier-Stokes equations
38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  ## Difficulty Axes
40
 
41
  The dataset systematically varies complexity along three axes:
 
99
  5. **Binary mask** - Geometry encoding (1 = obstacle, 0 = fluid)
100
  6. **SDF** - Signed distance field to nearest obstacle boundary
101
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  ## Usage
103
 
 
 
104
  ```python
105
  import numpy as np
106
  from huggingface_hub import hf_hub_download
 
127
  sdf = trajectory_0[:, :, :, 5] # Signed distance field
128
  ```
129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  ## Citation
131
 
132
  If you use this dataset, please cite:
 
143
 
144
  **Note:** Citation will be updated once the paper is published.
145
 
 
 
 
 
 
 
146
  ## License
147
 
148
  MIT License
149
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  ---
151
 
152
  **Dataset Version:** 1.0