Data
continuiti.data
Data sets in continuiti.
Every data set is a list of (x, u, y, v)
tuples.
OperatorDataset(x, u, y, v, x_transform=None, u_transform=None, y_transform=None, v_transform=None)
¶
Bases: OperatorDatasetBase
A dataset for operator training.
In operator training, at least one function is mapped onto a second one. To fulfill the properties discretization invariance, domain independence and learn operators with physics-based loss access to at least four different discretized spaces is necessary. One on which the input is sampled (x), the input function sampled on these points (u), the discretization of the output space (y), and the output of the operator (v) sampled on these points. Not all loss functions and/or operators need access to all of these attributes.
PARAMETER | DESCRIPTION |
---|---|
x |
Tensor of shape (num_observations, x_dim, num_sensors...) with sensor positions.
TYPE:
|
u |
Tensor of shape (num_observations, u_dim, num_sensors...) with evaluations of the input functions at sensor positions.
TYPE:
|
y |
Tensor of shape (num_observations, y_dim, num_evaluations...) with evaluation positions.
TYPE:
|
v |
Tensor of shape (num_observations, v_dim, num_evaluations...) with ground truth operator mappings.
TYPE:
|
ATTRIBUTE | DESCRIPTION |
---|---|
shapes |
Shape of all tensors.
|
transform |
Transformations for each tensor.
|
Source code in src/continuiti/data/dataset.py
__len__()
¶
__getitem__(idx)
¶
Retrieves the input-output pair at the specified index and applies transformations.
PARAMETER | DESCRIPTION |
---|---|
idx |
The index of the sample to retrieve.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Tuple[Tensor, Tensor, Tensor, Tensor]
|
A tuple containing the three input tensors and the output tensor for the given index. |
Source code in src/continuiti/data/dataset.py
split(dataset, split=0.5, seed=None)
¶
Split data set into two parts.
PARAMETER | DESCRIPTION |
---|---|
split |
Split fraction.
DEFAULT:
|
Source code in src/continuiti/data/utility.py
dataset_loss(dataset, operator, loss_fn=None, device=None, batch_size=32)
¶
Evaluate operator performance on data set.
PARAMETER | DESCRIPTION |
---|---|
dataset |
Data set.
|
operator |
Operator.
|
loss_fn |
Loss function. Default is MSELoss. |
device |
Device to evaluate on. Default is CPU. |
batch_size |
Batch size. Default is 32.
TYPE:
|
Source code in src/continuiti/data/utility.py
Created: 2024-08-20