Benchmarks
continuiti.benchmarks
Benchmarks for operator learning.
Benchmark(train_dataset, test_dataset, losses=lambda: [MSELoss()]())
dataclass
¶
Benchmark class.
A Benchmark object encapsulates two distinct datasets: a train and a test dataset. The training dataset is used to train an operator to fit the dataset. The test dataset, in contrast, is utilized solely for evaluating the performance. The evaluation is done by measuring the loss on the test set.
SineRegular()
¶
Bases: SineBenchmark
Sine benchmark with the domain and co-domain sampled on a regular grid.
The SineRegular
benchmark is a SineBenchmark
with the following
properties:
n_sensors
is 32.n_evaluations
is 32.n_train
is 1024.n_test
is 1024.uniform
isFalse
.
Source code in src/continuiti/benchmarks/sine.py
SineUniform()
¶
Bases: SineBenchmark
Sine benchmark with the domain and co-domain sampled random uniformly.
The SineRegular
benchmark is a SineBenchmark
with the following
properties:
n_sensors
is 32.n_evaluations
is 32.n_train
is 4096.n_test
is 4096.uniform
isTrue
.
Source code in src/continuiti/benchmarks/sine.py
Flame(flame_dir=None, train_size=None, val_size=None, normalize=True, upsample=False)
¶
Bases: Benchmark
Flame benchmark.
The Flame
benchmark contains the dataset of the
2023 FLAME AI Challenge
on super-resolution for turbulent flows.
PARAMETER | DESCRIPTION |
---|---|
flame_dir |
Path to FLAME data set. Default is |
train_size |
Limit size of training set. By default use the full data set.
TYPE:
|
val_size |
Limit size of validation set. By default use the full data set.
TYPE:
|
normalize |
Normalize data.
TYPE:
|
upsample |
Upsample training set.
TYPE:
|
Source code in src/continuiti/benchmarks/flame.py
NavierStokes(dir=None)
¶
Bases: Benchmark
Navier-Stokes benchmark.
This benchmark contains a dataset of turbulent flow samples taken from neuraloperator/graph-pde that was used as illustrative example in the FNO paper:
Li, Zongyi, et al. "Fourier neural operator for parametric partial differential equations." arXiv preprint arXiv:2010.08895 (2020).
The dataset loads the NavierStokes_V1e-5_N1200_T20
file which contains
1200 samples of Navier-Stokes flow simulations at a spatial resolution of
64x64 and 20 time steps.
The benchmark exports operator datasets where both input and output function are defined on the space-time domain (periodic in space), i.e., \((x, y, t) \in [-1, 1] \times [-1, 1] \times (-1, 0]\) for the input function and \((x, y, t) \in [-1, 1] \times [-1, 1] \times (0, 1]\) for the output function.
The input function is given by the vorticity field at the first ten time steps \((-0.9, -0.8, ..., 0.0)\) and the output function by the vorticity field at the following ten time steps \((0.1, 0.2, ..., 1.0)\).
The datasets have the following shapes:
len(benchmark.train_dataset) == 1000
len(benchmark.test_dataset) == 200
x.shape == (3, 64, 64, 10)
u.shape == (1, 64, 64, 10)
y.shape == (3, 64. 64, 10)
v.shape == (1, 64, 64, 10)
PARAMETER | DESCRIPTION |
---|---|
dir |
Path to data set. Default is |
Source code in src/continuiti/benchmarks/navierstokes.py
Created: 2024-08-22