2ailesB commited on
Commit
6422f19
·
verified ·
1 Parent(s): 8fc50b1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -4
README.md CHANGED
@@ -8,10 +8,32 @@ tags:
8
  pretty_name: Neural Parametric Solver
9
  ---
10
 
11
- Datasets related to "Learning a Neural Solver for Parametric PDE to Enhance Physics-Informed Methods".
12
 
13
- Project Page: https://2ailesb.github.io/paperpages/neural-solver.html
14
 
15
- ArXiV: https://arxiv.org/abs/2410.06820
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
- Code: https://github.com/2ailesB/neural-parametric-solver
 
8
  pretty_name: Neural Parametric Solver
9
  ---
10
 
11
+ ## Learning a Neural Solver for Parametric PDE to Enhance Physics-Informed Methods
12
 
13
+ This space provides the datasets used in the paper "Learning a Neural Solver for Parametric PDE to Enhance Physics-Informed Methods".
14
 
15
+ - Project Page: https://2ailesb.github.io/paperpages/neural-solver.html
16
+ - ArXiV: https://arxiv.org/abs/2410.06820
17
+ - Code: https://github.com/2ailesB/neural-parametric-solver
18
+
19
+ ### PDEs
20
+ We provide 9 datasets:
21
+ - Helmholtz equation 1d: 4 versions for this PDE with varying difficulties depending on the range of the parameter $\omega$.
22
+ - $[0.5, 3]$: toy
23
+ - $[0.5, 10]$: medium
24
+ - $[0.5, 50]$: hard
25
+ - $[-5, 55]$: used for OOD experiments
26
+ - Poisson equation 1d: 2 versions of the Poisosn equation:
27
+ - Scalar forcing term
28
+ - Multiscale functional forcing term
29
+ - Non-Linear Reaction Diffusion PDE 1d (temporal)
30
+ - Advection PDE 1d (temporal): extracted from PDEBench datasets
31
+ - Heat 2d (temporal)
32
+
33
+ Please refer to our [paper](https://arxiv.org/abs/2410.06820) or [code](ttps://github.com/2ailesB/neural-parametric-solver) for additional details on the PDE, parameters range or Datasets and Dataloaders.
34
+
35
+ ### What's inside the datasets
36
+
37
+ Each dataset provide the PDE trajectory $u$ along with the PDE parameters, forcings terms (if involved), initial conditions (if involved), boundary conditions (if involved).
38
+ The [torch Datasets](https://github.com/2ailesB/neural-parametric-solver/tree/main/ngd_datasets) associated class return the data under a list containing: (params, forcings, ic, bc), position x, solution u, index of the trajectory.
39