Function dataset
continuiti.data.function.function_dataset
Function data set implementation.
FunctionOperatorDataset(input_function_set, x_sampler, n_sensors, output_function_set, y_sampler, n_evaluations, parameter_sampler, n_observations, x_transform=None, u_transform=None, y_transform=None, v_transform=None)
¶
Bases: OperatorDataset
A dataset class for generating samples from function sets.
This class extends OperatorDataset
to specifically handle scenarios where both inputs and outputs are known
functions. It utilizes samplers to generate discrete representations of function spaces (input and output function
sets) and physical spaces.
PARAMETER | DESCRIPTION |
---|---|
input_function_set |
A function set representing the input space.
TYPE:
|
x_sampler |
A sampler for generating discrete representations of the domain.
TYPE:
|
n_sensors |
The number of sensors to sample in the input physical space.
TYPE:
|
output_function_set |
A function set representing the output set of the underlying operator.
TYPE:
|
y_sampler |
A sampler for generating discrete representations of the codomain.
TYPE:
|
n_evaluations |
The number of evaluation points to sample in the output physical space.
TYPE:
|
parameter_sampler |
A sampler for sampling parameters to instantiate functions from the function sets.
TYPE:
|
n_observations |
The number of observations (=different sets of parameters) to generate.
TYPE:
|
x_transform, |
Optional transformation functions applied to the sampled physical spaces and function evaluations, respectively.
TYPE:
|
Note
The input_function_set and the output_function_set are evaluated on the same set of parameters. Therefore, the order of parameters need to be taken into consideration when defining both function sets.
Source code in src/continuiti/data/function/function_dataset.py
Created: 2024-08-20