Create README.md
Browse files# Framing Neural Surrogates as Temporal Derivative Approximators
Datasets for Framing Neural Surrogates as Temporal Derivative Approximators. [(Paper)]()
Data is organized as:
```
- Split [train/valid]
- u : nodal values of the PDE solution, in shape [num_samples, temporal_resolution, spatial_resolution]
- x : coordinates of the spatial domain, in shape [spatial_resolution]
- t : timesteps of the PDE solution, in shape [temporal_resolution]
- coefficients [alpha, beta, gamma, etc.]: coefficients of the solved PDE solution, in shape [num_samples, coord_dim]
```
Data is generated for 5 equations: Advection, Heat, KS (1D); Burgers, NS (2D).
README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
configs:
|
| 3 |
+
- config_name: default
|
| 4 |
+
data_files:
|
| 5 |
+
- split: train
|
| 6 |
+
path:
|
| 7 |
+
- "train/Advection_4096.h5"
|
| 8 |
+
- "train/Heat_4096.h5"
|
| 9 |
+
- "train/KS_4096.h5"
|
| 10 |
+
- "train/Burgers_1024.h5"
|
| 11 |
+
- "train/NS_1024.h5"
|
| 12 |
+
- split: valid
|
| 13 |
+
path:
|
| 14 |
+
- "valid/Advection_256.h5"
|
| 15 |
+
- "valid/Heat_256.h5"
|
| 16 |
+
- "valid/KS_256.h5"
|
| 17 |
+
- "valid/Burgers_256.h5"
|
| 18 |
+
- "valid/NS_256.h5"
|
| 19 |
+
---
|
| 20 |
+
|