Dno
continuiti.operators.dno
The Deep Neural Operator (DNO) architecture.
DeepNeuralOperator(shapes, width=32, depth=3, act=None, device=None)
¶
Bases: Operator
The DeepNeuralOperator
class integrates a deep residual network within a neural operator framework. It uses all
input locations, input values, and the evaluation point as input for a deep residual network.
PARAMETER | DESCRIPTION |
---|---|
shapes |
An instance of
TYPE:
|
width |
The width of the
TYPE:
|
depth |
The depth of the
TYPE:
|
act |
Activation function of the |
Source code in src/continuiti/operators/dno.py
forward(x, u, y)
¶
Forward pass through the operator.
Performs the forward pass through the operator, processing the input function values u
and input function
probe locations x
by flattening them. They are then expanded to match the dimensions of the evaluation
coordinates y. The preprocessed x, preprocessed u, and y are stacked and passed through a deep residual network.
PARAMETER | DESCRIPTION |
---|---|
x |
Input coordinates of shape (batch_size, x_dim, num_sensors...), representing the points in space at which the input function values are probed.
TYPE:
|
u |
Input function values of shape (batch_size, u_dim, num_sensors...), representing the values of the input functions at different sensor locations.
TYPE:
|
y |
Evaluation coordinates of shape (batch_size, y_dim, num_evaluations...), representing the points in space at which the output function values are to be computed.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Tensor
|
The output of the operator, of shape (batch_size, v_dim, num_evaluations...), representing the computed function values at the specified evaluation coordinates. |
Source code in src/continuiti/operators/dno.py
Created: 2024-08-22