Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- time-series-forecasting
|
| 5 |
+
tags:
|
| 6 |
+
- physics
|
| 7 |
+
- PDE
|
| 8 |
+
- scientific-computing
|
| 9 |
+
- neural-operators
|
| 10 |
+
- zebra
|
| 11 |
+
- enma
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# 2D Wave Equation Dataset
|
| 15 |
+
|
| 16 |
+
2d wave equation dataset. The underlying PDE is the **wave equation**.
|
| 17 |
+
|
| 18 |
+
Data is stored in HDF5 (`.h5`) format.
|
| 19 |
+
|
| 20 |
+
## Origin
|
| 21 |
+
|
| 22 |
+
This dataset was generated by **Armand Kassai Koupaï** and has been used in the following papers:
|
| 23 |
+
|
| 24 |
+
- **ZEBRA**: Zero-shot Edge-conditioned Basis Recovery Approach for neural operators.
|
| 25 |
+
- **ENMA**: Efficient Neural operator learning with Memory Attention.
|
| 26 |
+
|
| 27 |
+
## Usage
|
| 28 |
+
|
| 29 |
+
```python
|
| 30 |
+
import h5py
|
| 31 |
+
|
| 32 |
+
data = h5py.File("train.h5", "r")
|
| 33 |
+
```
|