File size: 1,273 Bytes
b169bb5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6f72412
 
 
 
 
 
 
 
 
 
 
 
b169bb5
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
license: mit
task_categories:
  - time-series-forecasting
tags:
  - physics
  - PDE
  - scientific-computing
  - neural-operators
  - zebra
  - enma
---

# Out-Of-Distribution Evaluation Set For The 2D Wave Equation

Out-of-distribution evaluation set for the 2d wave equation. The underlying PDE is the **wave equation**.

This dataset contains out-of-distribution (OOD) samples for evaluating model generalization.

Data is stored in HDF5 (`.h5`) format.

## Origin

This dataset was generated by **Armand Kassai Koupaï** and has been used in the following papers:

- **ZEBRA: In-Context Generative Pretraining for Solving Parametric PDEs** — Louis Serrano, Armand Kassaï Koupaï, Thomas X Wang, Pierre Erbacher, Patrick Gallinari. *ICML 2025*. [OpenReview](https://openreview.net/forum?id=22kNOkkokU)
- **ENMA: Tokenwise Autoregression for Generative Neural PDE Operators** — Armand Kassaï Koupaï, Lise Le Boudec, Louis Serrano, Patrick Gallinari. *NeurIPS 2025*.

## Download

See the full download script in the [Zebra repository](https://github.com/LouisSerrano/zebra).

```bash
pip install huggingface_hub

python download_data/download_data_hugging_face.py --datasets wave_ood
```

## Usage

```python
import h5py

data = h5py.File("train.h5", "r")
```