tut10
This commit is contained in:
committed by
Nicola Demo
parent
ada9643c11
commit
98f7694d6f
@@ -30,6 +30,7 @@ Neural Operator Learning
|
|||||||
:titlesonly:
|
:titlesonly:
|
||||||
|
|
||||||
Two dimensional Darcy flow using the Fourier Neural Operator<tutorials/tutorial5/tutorial.rst>
|
Two dimensional Darcy flow using the Fourier Neural Operator<tutorials/tutorial5/tutorial.rst>
|
||||||
|
Time dependent Kuramoto Sivashinsky equation using the Averaging Neural Operator<tutorials/tutorial10/tutorial.rst>
|
||||||
|
|
||||||
Supervised Learning
|
Supervised Learning
|
||||||
-------------------
|
-------------------
|
||||||
|
|||||||
347
docs/source/_rst/tutorials/tutorial10/tutorial.rst
Normal file
347
docs/source/_rst/tutorials/tutorial10/tutorial.rst
Normal file
@@ -0,0 +1,347 @@
|
|||||||
|
Tutorial: Averaging Neural Operator for solving Kuramoto Sivashinsky equation
|
||||||
|
=============================================================================
|
||||||
|
|
||||||
|
In this tutorial we will build a Neural Operator using the
|
||||||
|
``AveragingNeuralOperator`` model and the ``SupervisedSolver``. At the
|
||||||
|
end of the tutorial you will be able to train a Neural Operator for
|
||||||
|
learning the operator of time dependent PDEs.
|
||||||
|
|
||||||
|
First of all, some useful imports. Note we use ``scipy`` for i/o
|
||||||
|
operations.
|
||||||
|
|
||||||
|
.. code:: ipython3
|
||||||
|
|
||||||
|
import torch
|
||||||
|
import matplotlib.pyplot as plt
|
||||||
|
from scipy import io
|
||||||
|
from pina import Condition, LabelTensor
|
||||||
|
from pina.problem import AbstractProblem
|
||||||
|
from pina.model import AveragingNeuralOperator
|
||||||
|
from pina.solvers import SupervisedSolver
|
||||||
|
from pina.trainer import Trainer
|
||||||
|
|
||||||
|
Data Generation
|
||||||
|
---------------
|
||||||
|
|
||||||
|
We will focus on solving a specific PDE, the **Kuramoto Sivashinsky**
|
||||||
|
(KS) equation. The KS PDE is a fourth-order nonlinear PDE with the
|
||||||
|
following form:
|
||||||
|
|
||||||
|
.. math::
|
||||||
|
|
||||||
|
|
||||||
|
\frac{\partial u}{\partial t}(x,t) = -u(x,t)\frac{\partial u}{\partial x}(x,t)- \frac{\partial^{4}u}{\partial x^{4}}(x,t) - \frac{\partial^{2}u}{\partial x^{2}}(x,t).
|
||||||
|
|
||||||
|
In the above :math:`x\in \Omega=[0, 64]` represents a spatial location,
|
||||||
|
:math:`t\in\mathbb{T}=[0,50]` the time and :math:`u(x, t)` is the value
|
||||||
|
of the function :math:`u:\Omega \times\mathbb{T}\in\mathbb{R}`. We
|
||||||
|
indicate with :math:`\mathbb{U}` a suitable space for :math:`u`, i.e. we
|
||||||
|
have that the solution :math:`u\in\mathbb{U}`.
|
||||||
|
|
||||||
|
We impose Dirichlet boundary conditions on the derivative of :math:`u`
|
||||||
|
on the border of the domain :math:`\partial \Omega`
|
||||||
|
|
||||||
|
.. math::
|
||||||
|
|
||||||
|
|
||||||
|
\frac{\partial u}{\partial x}(x,t)=0 \quad \forall (x,t)\in \partial \Omega\times\mathbb{T}.
|
||||||
|
|
||||||
|
|
||||||
|
Initial conditions are sampled from a distribution over truncated
|
||||||
|
Fourier series with random coefficients
|
||||||
|
:math:`\{A_k, \ell_k, \phi_k\}_k` as
|
||||||
|
|
||||||
|
.. math::
|
||||||
|
|
||||||
|
|
||||||
|
u(x,0) = \sum_{k=1}^N A_k \sin(2 \pi \ell_k x / L + \phi_k) \ ,
|
||||||
|
|
||||||
|
where :math:`A_k \in [-0.4, -0.3]`, :math:`\ell_k = 2`,
|
||||||
|
:math:`\phi_k = 2\pi \quad \forall k=1,\dots,N`.
|
||||||
|
|
||||||
|
We have already generated some data for differenti initial conditions,
|
||||||
|
and our objective will be to build a Neural Operator that, given
|
||||||
|
:math:`u(x, t)` will output :math:`u(x, t+\delta)`, where :math:`\delta`
|
||||||
|
is a fixed time step. We will come back on the Neural Operator
|
||||||
|
architecture, for now we first need to import the data.
|
||||||
|
|
||||||
|
**Note:** *The numerical integration is obtained by using pseudospectral
|
||||||
|
method for spatial derivative discratization and implicit Runge Kutta 5
|
||||||
|
for temporal dynamics.*
|
||||||
|
|
||||||
|
.. code:: ipython3
|
||||||
|
|
||||||
|
# load data
|
||||||
|
data=io.loadmat("dat/Data_KS.mat")
|
||||||
|
|
||||||
|
# converting to label tensor
|
||||||
|
initial_cond_train = LabelTensor(torch.tensor(data['initial_cond_train'], dtype=torch.float), ['t','x','u0'])
|
||||||
|
initial_cond_test = LabelTensor(torch.tensor(data['initial_cond_test'], dtype=torch.float), ['t','x','u0'])
|
||||||
|
sol_train = LabelTensor(torch.tensor(data['sol_train'], dtype=torch.float), ['u'])
|
||||||
|
sol_test = LabelTensor(torch.tensor(data['sol_test'], dtype=torch.float), ['u'])
|
||||||
|
|
||||||
|
print('Data Loaded')
|
||||||
|
print(f' shape initial condition: {initial_cond_train.shape}')
|
||||||
|
print(f' shape solution: {sol_train.shape}')
|
||||||
|
|
||||||
|
|
||||||
|
.. parsed-literal::
|
||||||
|
|
||||||
|
Data Loaded
|
||||||
|
shape initial condition: torch.Size([100, 12800, 3])
|
||||||
|
shape solution: torch.Size([100, 12800, 1])
|
||||||
|
|
||||||
|
|
||||||
|
The data are saved in the form ``B \times N \times D``, where ``B`` is
|
||||||
|
the batch_size (basically how many initial conditions we sample), ``N``
|
||||||
|
the number of points in the mesh (which is the product of the
|
||||||
|
discretization in ``x`` timese the one in ``t``), and ``D`` the
|
||||||
|
dimension of the problem (in this case we have three variables
|
||||||
|
``[u, t, x]``).
|
||||||
|
|
||||||
|
We are now going to plot some trajectories!
|
||||||
|
|
||||||
|
.. code:: ipython3
|
||||||
|
|
||||||
|
# helper function
|
||||||
|
def plot_trajectory(coords, real, no_sol=None):
|
||||||
|
# find the x-t shapes
|
||||||
|
dim_x = len(torch.unique(coords.extract('x')))
|
||||||
|
dim_t = len(torch.unique(coords.extract('t')))
|
||||||
|
# if we don't have the Neural Operator solution we simply plot the real one
|
||||||
|
if no_sol is None:
|
||||||
|
fig, axs = plt.subplots(1, 1, figsize=(15, 5), sharex=True, sharey=True)
|
||||||
|
c = axs.imshow(real.reshape(dim_t, dim_x).T.detach(),extent=[0, 50, 0, 64], cmap='PuOr_r', aspect='auto')
|
||||||
|
axs.set_title('Real solution')
|
||||||
|
fig.colorbar(c, ax=axs)
|
||||||
|
axs.set_xlabel('t')
|
||||||
|
axs.set_ylabel('x')
|
||||||
|
# otherwise we plot the real one, the Neural Operator one, and their difference
|
||||||
|
else:
|
||||||
|
fig, axs = plt.subplots(1, 3, figsize=(15, 5), sharex=True, sharey=True)
|
||||||
|
axs[0].imshow(real.reshape(dim_t, dim_x).T.detach(),extent=[0, 50, 0, 64], cmap='PuOr_r', aspect='auto')
|
||||||
|
axs[0].set_title('Real solution')
|
||||||
|
axs[1].imshow(no_sol.reshape(dim_t, dim_x).T.detach(),extent=[0, 50, 0, 64], cmap='PuOr_r', aspect='auto')
|
||||||
|
axs[1].set_title('NO solution')
|
||||||
|
c = axs[2].imshow((real - no_sol).abs().reshape(dim_t, dim_x).T.detach(),extent=[0, 50, 0, 64], cmap='PuOr_r', aspect='auto')
|
||||||
|
axs[2].set_title('Absolute difference')
|
||||||
|
fig.colorbar(c, ax=axs.ravel().tolist())
|
||||||
|
for ax in axs:
|
||||||
|
ax.set_xlabel('t')
|
||||||
|
ax.set_ylabel('x')
|
||||||
|
plt.show()
|
||||||
|
|
||||||
|
# a sample trajectory (we use the sample 5, feel free to change)
|
||||||
|
sample_number = 20
|
||||||
|
plot_trajectory(coords=initial_cond_train[sample_number].extract(['x', 't']),
|
||||||
|
real=sol_train[sample_number].extract('u'))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.. image:: tutorial_files/tutorial_5_0.png
|
||||||
|
|
||||||
|
|
||||||
|
As we can see, as the time progresses the solution becomes chaotic,
|
||||||
|
which makes it really hard to learn! We will now focus on building a
|
||||||
|
Neural Operator using the ``SupervisedSolver`` class to tackle the
|
||||||
|
problem.
|
||||||
|
|
||||||
|
Averaging Neural Operator
|
||||||
|
-------------------------
|
||||||
|
|
||||||
|
We will build a neural operator :math:`\texttt{NO}` which takes the
|
||||||
|
solution at time :math:`t=0` for any :math:`x\in\Omega`, the time
|
||||||
|
:math:`(t)` at which we want to compute the solution, and gives back the
|
||||||
|
solution to the KS equation :math:`u(x, t)`, mathematically:
|
||||||
|
|
||||||
|
.. math::
|
||||||
|
|
||||||
|
|
||||||
|
\texttt{NO}_\theta : \mathbb{U} \rightarrow \mathbb{U},
|
||||||
|
|
||||||
|
such that
|
||||||
|
|
||||||
|
.. math::
|
||||||
|
|
||||||
|
|
||||||
|
\texttt{NO}_\theta[u(t=0)](x, t) \rightarrow u(x, t).
|
||||||
|
|
||||||
|
There are many ways on approximating the following operator, e.g. by 2D
|
||||||
|
`FNO <https://mathlab.github.io/PINA/_rst/models/fno.html>`__ (for
|
||||||
|
regular meshes), a
|
||||||
|
`DeepOnet <https://mathlab.github.io/PINA/_rst/models/deeponet.html>`__,
|
||||||
|
`Continuous Convolutional Neural
|
||||||
|
Operator <https://mathlab.github.io/PINA/_rst/layers/convolution.html>`__,
|
||||||
|
`MIONet <https://mathlab.github.io/PINA/_rst/models/mionet.html>`__. In
|
||||||
|
this tutorial we will use the *Averaging Neural Operator* presented in
|
||||||
|
`The Nonlocal Neural Operator: Universal
|
||||||
|
Approximation <https://arxiv.org/abs/2304.13221>`__ which is a `Kernel
|
||||||
|
Neural
|
||||||
|
Operator <https://mathlab.github.io/PINA/_rst/models/base_no.html>`__
|
||||||
|
with integral kernel:
|
||||||
|
|
||||||
|
.. math::
|
||||||
|
|
||||||
|
|
||||||
|
K(v) = \sigma\left(Wv(x) + b + \frac{1}{|\Omega|}\int_\Omega v(y)dy\right)
|
||||||
|
|
||||||
|
where:
|
||||||
|
|
||||||
|
- :math:`v(x)\in\mathbb{R}^{\rm{emb}}` is the update for a function
|
||||||
|
:math:`v` with :math:`\mathbb{R}^{\rm{emb}}` the embedding (hidden)
|
||||||
|
size
|
||||||
|
- :math:`\sigma` is a non-linear activation
|
||||||
|
- :math:`W\in\mathbb{R}^{\rm{emb}\times\rm{emb}}` is a tunable matrix.
|
||||||
|
- :math:`b\in\mathbb{R}^{\rm{emb}}` is a tunable bias.
|
||||||
|
|
||||||
|
If PINA many Kernel Neural Operators are already implemented, and the
|
||||||
|
modular componets of the `Kernel Neural
|
||||||
|
Operator <https://mathlab.github.io/PINA/_rst/models/base_no.html>`__
|
||||||
|
class permits to create new ones by composing base kernel layers.
|
||||||
|
|
||||||
|
**Note:**\ \* We will use the already built class\*
|
||||||
|
``AveragingNeuralOperator``, *as constructive excercise try to use the*
|
||||||
|
`KernelNeuralOperator <https://mathlab.github.io/PINA/_rst/models/base_no.html>`__
|
||||||
|
*class for building a kernel neural operator from scratch. You might
|
||||||
|
employ the different layers that we have in pina, e.g.*
|
||||||
|
`FeedForward <https://mathlab.github.io/PINA/_rst/models/fnn.html>`__,
|
||||||
|
*and*
|
||||||
|
`AveragingNeuralOperator <https://mathlab.github.io/PINA/_rst/layers/avno_layer.html>`__
|
||||||
|
*layers*.
|
||||||
|
|
||||||
|
.. code:: ipython3
|
||||||
|
|
||||||
|
class SIREN(torch.nn.Module):
|
||||||
|
def forward(self, x):
|
||||||
|
return torch.sin(x)
|
||||||
|
|
||||||
|
embedding_dimesion = 40 # hyperparameter embedding dimension
|
||||||
|
input_dimension = 3 # ['u', 'x', 't']
|
||||||
|
number_of_coordinates = 2 # ['x', 't']
|
||||||
|
lifting_net = torch.nn.Linear(input_dimension, embedding_dimesion) # simple linear layers for lifting and projecting nets
|
||||||
|
projecting_net = torch.nn.Linear(embedding_dimesion + number_of_coordinates, 1)
|
||||||
|
model = AveragingNeuralOperator(lifting_net=lifting_net,
|
||||||
|
projecting_net=projecting_net,
|
||||||
|
coordinates_indices=['x', 't'],
|
||||||
|
field_indices=['u0'],
|
||||||
|
n_layers=4,
|
||||||
|
func=SIREN
|
||||||
|
)
|
||||||
|
|
||||||
|
Super easy! Notice that we use the ``SIREN`` activation function, more
|
||||||
|
on `Implicit Neural Representations with Periodic Activation
|
||||||
|
Functions <https://arxiv.org/abs/2006.09661>`__.
|
||||||
|
|
||||||
|
Solving the KS problem
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
We will now focus on solving the KS equation using the
|
||||||
|
``SupervisedSolver`` class and the ``AveragingNeuralOperator`` model. As
|
||||||
|
done in the `FNO
|
||||||
|
tutorial <https://github.com/mathLab/PINA/blob/master/tutorials/tutorial5/tutorial.ipynb>`__
|
||||||
|
we now create the ``NeuralOperatorProblem`` class with
|
||||||
|
``AbstractProblem``.
|
||||||
|
|
||||||
|
.. code:: ipython3
|
||||||
|
|
||||||
|
# expected running time ~ 1 minute
|
||||||
|
|
||||||
|
class NeuralOperatorProblem(AbstractProblem):
|
||||||
|
input_variables = initial_cond_train.labels
|
||||||
|
output_variables = sol_train.labels
|
||||||
|
conditions = {'data' : Condition(input_points=initial_cond_train,
|
||||||
|
output_points=sol_train)}
|
||||||
|
|
||||||
|
|
||||||
|
# initialize problem
|
||||||
|
problem = NeuralOperatorProblem()
|
||||||
|
# initialize solver
|
||||||
|
solver = SupervisedSolver(problem=problem, model=model,optimizer_kwargs={"lr":0.001})
|
||||||
|
# train, only CPU and avoid model summary at beginning of training (optional)
|
||||||
|
trainer = Trainer(solver=solver, max_epochs=40, accelerator='cpu', enable_model_summary=False, log_every_n_steps=-1, batch_size=5) # we train on CPU and avoid model summary at beginning of training (optional)
|
||||||
|
trainer.train()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.. parsed-literal::
|
||||||
|
|
||||||
|
GPU available: True (mps), used: False
|
||||||
|
TPU available: False, using: 0 TPU cores
|
||||||
|
IPU available: False, using: 0 IPUs
|
||||||
|
HPU available: False, using: 0 HPUs
|
||||||
|
|
||||||
|
|
||||||
|
.. parsed-literal::
|
||||||
|
|
||||||
|
Epoch 39: 100%|██████████| 20/20 [00:01<00:00, 13.59it/s, v_num=3, mean_loss=0.118]
|
||||||
|
|
||||||
|
.. parsed-literal::
|
||||||
|
|
||||||
|
`Trainer.fit` stopped: `max_epochs=40` reached.
|
||||||
|
|
||||||
|
|
||||||
|
.. parsed-literal::
|
||||||
|
|
||||||
|
Epoch 39: 100%|██████████| 20/20 [00:01<00:00, 13.56it/s, v_num=3, mean_loss=0.118]
|
||||||
|
|
||||||
|
|
||||||
|
We can now see some plots for the solutions
|
||||||
|
|
||||||
|
.. code:: ipython3
|
||||||
|
|
||||||
|
sample_number = 2
|
||||||
|
no_sol = solver(initial_cond_test)
|
||||||
|
plot_trajectory(coords=initial_cond_test[sample_number].extract(['x', 't']),
|
||||||
|
real=sol_test[sample_number].extract('u'),
|
||||||
|
no_sol=no_sol[5])
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.. image:: tutorial_files/tutorial_11_0.png
|
||||||
|
|
||||||
|
|
||||||
|
As we can see we can obtain nice result considering the small trainint
|
||||||
|
time and the difficulty of the problem! Let’s see how the training and
|
||||||
|
testing error:
|
||||||
|
|
||||||
|
.. code:: ipython3
|
||||||
|
|
||||||
|
from pina.loss import PowerLoss
|
||||||
|
|
||||||
|
error_metric = PowerLoss(p=2) # we use the MSE loss
|
||||||
|
|
||||||
|
with torch.no_grad():
|
||||||
|
no_sol_train = solver(initial_cond_train)
|
||||||
|
err_train = error_metric(sol_train.extract('u'), no_sol_train).mean() # we average the error over trajectories
|
||||||
|
no_sol_test = solver(initial_cond_test)
|
||||||
|
err_test = error_metric(sol_test.extract('u'),no_sol_test).mean() # we average the error over trajectories
|
||||||
|
print(f'Training error: {float(err_train):.3f}')
|
||||||
|
print(f'Testing error: {float(err_test):.3f}')
|
||||||
|
|
||||||
|
|
||||||
|
.. parsed-literal::
|
||||||
|
|
||||||
|
Training error: 0.128
|
||||||
|
Testing error: 0.119
|
||||||
|
|
||||||
|
|
||||||
|
as we can see the error is pretty small, which agrees with what we can
|
||||||
|
see from the previous plots.
|
||||||
|
|
||||||
|
What’s next?
|
||||||
|
------------
|
||||||
|
|
||||||
|
Now you know how to solve a time dependent neural operator problem in
|
||||||
|
**PINA**! There are multiple directions you can go now:
|
||||||
|
|
||||||
|
1. Train the network for longer or with different layer sizes and assert
|
||||||
|
the finaly accuracy
|
||||||
|
|
||||||
|
2. We left a more challenging dataset
|
||||||
|
`Data_KS2.mat <https://github.com/mathLab/PINA/tree/master/tutorials/tutorial10/Data_KS2.mat>`__ where
|
||||||
|
:math:`A_k \in [-0.5, 0.5]`, :math:`\ell_k \in [1, 2, 3]`,
|
||||||
|
:math:`\phi_k \in [0, 2\pi]` for loger training
|
||||||
|
|
||||||
|
3. Compare the performance between the different neural operators (you
|
||||||
|
can even try to implement your favourite one!)
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 270 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 43 KiB |
@@ -1,7 +1,7 @@
|
|||||||
"""Module Averaging Neural Operator."""
|
"""Module Averaging Neural Operator."""
|
||||||
|
|
||||||
|
import torch
|
||||||
from torch import nn, concatenate
|
from torch import nn, concatenate
|
||||||
from . import FeedForward
|
|
||||||
from .layers import AVNOBlock
|
from .layers import AVNOBlock
|
||||||
from .base_no import KernelNeuralOperator
|
from .base_no import KernelNeuralOperator
|
||||||
from pina.utils import check_consistency
|
from pina.utils import check_consistency
|
||||||
@@ -28,65 +28,61 @@ class AveragingNeuralOperator(KernelNeuralOperator):
|
|||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
input_numb_fields,
|
lifting_net,
|
||||||
output_numb_fields,
|
projecting_net,
|
||||||
field_indices,
|
field_indices,
|
||||||
coordinates_indices,
|
coordinates_indices,
|
||||||
dimension=3,
|
|
||||||
inner_size=100,
|
|
||||||
n_layers=4,
|
n_layers=4,
|
||||||
func=nn.GELU,
|
func=nn.GELU,
|
||||||
):
|
):
|
||||||
"""
|
"""
|
||||||
:param int input_numb_fields: The number of input components
|
:param torch.nn.Module lifting_net: The neural network for lifting
|
||||||
of the model.
|
the input. It must take as input the input field and the coordinates
|
||||||
:param int output_numb_fields: The number of output components
|
at which the input field is avaluated. The output of the lifting
|
||||||
of the model.
|
net is chosen as embedding dimension of the problem
|
||||||
:param int dimension: the dimension of the domain of the functions.
|
:param torch.nn.Module projecting_net: The neural network for
|
||||||
:param int inner_size: number of neurons in the hidden layer(s).
|
projecting the output. It must take as input the embedding dimension
|
||||||
Defaults to 100.
|
(output of the ``lifting_net``) plus the dimension
|
||||||
:param int n_layers: number of hidden layers. Default is 4.
|
of the coordinates.
|
||||||
:param func: the activation function to use. Default to nn.GELU.
|
|
||||||
:param list[str] field_indices: the label of the fields
|
:param list[str] field_indices: the label of the fields
|
||||||
in the input tensor.
|
in the input tensor.
|
||||||
:param list[str] coordinates_indices: the label of the
|
:param list[str] coordinates_indices: the label of the
|
||||||
coordinates in the input tensor.
|
coordinates in the input tensor.
|
||||||
|
:param int n_layers: number of hidden layers. Default is 4.
|
||||||
|
:param torch.nn.Module func: the activation function to use,
|
||||||
|
default to torch.nn.GELU.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# check consistency
|
# check consistency
|
||||||
check_consistency(input_numb_fields, int)
|
|
||||||
check_consistency(output_numb_fields, int)
|
|
||||||
check_consistency(field_indices, str)
|
check_consistency(field_indices, str)
|
||||||
check_consistency(coordinates_indices, str)
|
check_consistency(coordinates_indices, str)
|
||||||
check_consistency(dimension, int)
|
|
||||||
check_consistency(inner_size, int)
|
|
||||||
check_consistency(n_layers, int)
|
check_consistency(n_layers, int)
|
||||||
check_consistency(func, nn.Module, subclass=True)
|
check_consistency(func, nn.Module, subclass=True)
|
||||||
|
|
||||||
|
# check hidden dimensions match
|
||||||
|
input_lifting_net = next(lifting_net.parameters()).size()[-1]
|
||||||
|
output_lifting_net = lifting_net(
|
||||||
|
torch.rand(size=next(lifting_net.parameters()).size())
|
||||||
|
).shape[-1]
|
||||||
|
projecting_net_input=next(projecting_net.parameters()).size()[-1]
|
||||||
|
|
||||||
|
if len(field_indices)+len(coordinates_indices) != input_lifting_net:
|
||||||
|
raise ValueError('The lifting_net must take as input the '
|
||||||
|
'coordinates vector and the field vector.')
|
||||||
|
|
||||||
|
if output_lifting_net+len(coordinates_indices) != projecting_net_input:
|
||||||
|
raise ValueError('The projecting_net input must be equal to'
|
||||||
|
'the embedding dimension (which is the output) '
|
||||||
|
'of the lifting_net plus the dimension of the '
|
||||||
|
'coordinates, i.e. len(coordinates_indices).')
|
||||||
|
|
||||||
# assign
|
# assign
|
||||||
self.input_numb_fields = input_numb_fields
|
|
||||||
self.output_numb_fields = output_numb_fields
|
|
||||||
self.dimension = dimension
|
|
||||||
self.coordinates_indices = coordinates_indices
|
self.coordinates_indices = coordinates_indices
|
||||||
self.field_indices = field_indices
|
self.field_indices = field_indices
|
||||||
integral_net = nn.Sequential(
|
integral_net = nn.Sequential(
|
||||||
*[AVNOBlock(inner_size, func) for _ in range(n_layers)]
|
*[AVNOBlock(output_lifting_net, func) for _ in range(n_layers)]
|
||||||
)
|
)
|
||||||
lifting_net = FeedForward(
|
super().__init__(lifting_net, integral_net, projecting_net)
|
||||||
dimension + input_numb_fields,
|
|
||||||
inner_size,
|
|
||||||
inner_size,
|
|
||||||
n_layers,
|
|
||||||
func,
|
|
||||||
)
|
|
||||||
projection_net = FeedForward(
|
|
||||||
inner_size + dimension,
|
|
||||||
output_numb_fields,
|
|
||||||
inner_size,
|
|
||||||
n_layers,
|
|
||||||
func,
|
|
||||||
)
|
|
||||||
super().__init__(lifting_net, integral_net, projection_net)
|
|
||||||
|
|
||||||
def forward(self, x):
|
def forward(self, x):
|
||||||
r"""
|
r"""
|
||||||
@@ -106,8 +102,8 @@ class AveragingNeuralOperator(KernelNeuralOperator):
|
|||||||
:rtype: torch.Tensor
|
:rtype: torch.Tensor
|
||||||
"""
|
"""
|
||||||
points_tmp = x.extract(self.coordinates_indices)
|
points_tmp = x.extract(self.coordinates_indices)
|
||||||
features_tmp = x.extract(self.field_indices)
|
new_batch = x.extract(self.field_indices)
|
||||||
new_batch = concatenate((features_tmp, points_tmp), dim=2)
|
new_batch = concatenate((new_batch, points_tmp), dim=2)
|
||||||
new_batch = self._lifting_operator(new_batch)
|
new_batch = self._lifting_operator(new_batch)
|
||||||
new_batch = self._integral_kernels(new_batch)
|
new_batch = self._integral_kernels(new_batch)
|
||||||
new_batch = concatenate((new_batch, points_tmp), dim=2)
|
new_batch = concatenate((new_batch, points_tmp), dim=2)
|
||||||
|
|||||||
@@ -1,62 +1,146 @@
|
|||||||
import torch
|
import torch
|
||||||
from pina.model import AveragingNeuralOperator
|
from pina.model import AveragingNeuralOperator
|
||||||
from pina import LabelTensor
|
from pina import LabelTensor
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
output_numb_fields = 5
|
|
||||||
batch_size = 15
|
batch_size = 15
|
||||||
|
n_layers = 4
|
||||||
|
embedding_dim = 24
|
||||||
|
func = torch.nn.Tanh
|
||||||
|
coordinates_indices = ['p']
|
||||||
|
field_indices = ['v']
|
||||||
|
|
||||||
|
|
||||||
def test_constructor():
|
def test_constructor():
|
||||||
input_numb_fields = 1
|
# working constructor
|
||||||
output_numb_fields = 1
|
lifting_net = torch.nn.Linear(len(coordinates_indices) + len(field_indices),
|
||||||
#minimuum constructor
|
embedding_dim)
|
||||||
AveragingNeuralOperator(input_numb_fields,
|
projecting_net = torch.nn.Linear(embedding_dim + len(field_indices),
|
||||||
output_numb_fields,
|
len(field_indices))
|
||||||
coordinates_indices=['p'],
|
AveragingNeuralOperator(
|
||||||
field_indices=['v'])
|
lifting_net=lifting_net,
|
||||||
|
projecting_net=projecting_net,
|
||||||
|
coordinates_indices=coordinates_indices,
|
||||||
|
field_indices=field_indices,
|
||||||
|
n_layers=n_layers,
|
||||||
|
func=func)
|
||||||
|
|
||||||
#all constructor
|
# not working constructor
|
||||||
AveragingNeuralOperator(input_numb_fields,
|
with pytest.raises(ValueError):
|
||||||
output_numb_fields,
|
AveragingNeuralOperator(
|
||||||
inner_size=5,
|
lifting_net=lifting_net,
|
||||||
n_layers=5,
|
projecting_net=projecting_net,
|
||||||
func=torch.nn.ReLU,
|
coordinates_indices=coordinates_indices,
|
||||||
coordinates_indices=['p'],
|
field_indices=field_indices,
|
||||||
field_indices=['v'])
|
n_layers=3.2, # wrong
|
||||||
|
func=func)
|
||||||
|
|
||||||
|
AveragingNeuralOperator(
|
||||||
|
lifting_net=lifting_net,
|
||||||
|
projecting_net=projecting_net,
|
||||||
|
coordinates_indices=coordinates_indices,
|
||||||
|
field_indices=field_indices,
|
||||||
|
n_layers=n_layers,
|
||||||
|
func=1) # wrong
|
||||||
|
|
||||||
|
AveragingNeuralOperator(
|
||||||
|
lifting_net=[0], # wrong
|
||||||
|
projecting_net=projecting_net,
|
||||||
|
coordinates_indices=coordinates_indices,
|
||||||
|
field_indices=field_indices,
|
||||||
|
n_layers=n_layers,
|
||||||
|
func=func)
|
||||||
|
|
||||||
|
AveragingNeuralOperator(
|
||||||
|
lifting_net=lifting_net,
|
||||||
|
projecting_net=[0], # wront
|
||||||
|
coordinates_indices=coordinates_indices,
|
||||||
|
field_indices=field_indices,
|
||||||
|
n_layers=n_layers,
|
||||||
|
func=func)
|
||||||
|
|
||||||
|
AveragingNeuralOperator(
|
||||||
|
lifting_net=lifting_net,
|
||||||
|
projecting_net=projecting_net,
|
||||||
|
coordinates_indices=[0], #wrong
|
||||||
|
field_indices=field_indices,
|
||||||
|
n_layers=n_layers,
|
||||||
|
func=func)
|
||||||
|
|
||||||
|
AveragingNeuralOperator(
|
||||||
|
lifting_net=lifting_net,
|
||||||
|
projecting_net=projecting_net,
|
||||||
|
coordinates_indices=coordinates_indices,
|
||||||
|
field_indices=[0], #wrong
|
||||||
|
n_layers=n_layers,
|
||||||
|
func=func)
|
||||||
|
|
||||||
|
lifting_net = torch.nn.Linear(len(coordinates_indices),
|
||||||
|
embedding_dim)
|
||||||
|
AveragingNeuralOperator(
|
||||||
|
lifting_net=lifting_net,
|
||||||
|
projecting_net=projecting_net,
|
||||||
|
coordinates_indices=coordinates_indices,
|
||||||
|
field_indices=field_indices,
|
||||||
|
n_layers=n_layers,
|
||||||
|
func=func)
|
||||||
|
|
||||||
|
lifting_net = torch.nn.Linear(len(coordinates_indices) + len(field_indices),
|
||||||
|
embedding_dim)
|
||||||
|
projecting_net = torch.nn.Linear(embedding_dim,
|
||||||
|
len(field_indices))
|
||||||
|
AveragingNeuralOperator(
|
||||||
|
lifting_net=lifting_net,
|
||||||
|
projecting_net=projecting_net,
|
||||||
|
coordinates_indices=coordinates_indices,
|
||||||
|
field_indices=field_indices,
|
||||||
|
n_layers=n_layers,
|
||||||
|
func=func)
|
||||||
|
|
||||||
|
|
||||||
def test_forward():
|
def test_forward():
|
||||||
input_numb_fields = 1
|
lifting_net = torch.nn.Linear(len(coordinates_indices) + len(field_indices),
|
||||||
output_numb_fields = 1
|
embedding_dim)
|
||||||
dimension = 1
|
projecting_net = torch.nn.Linear(embedding_dim + len(field_indices),
|
||||||
|
len(field_indices))
|
||||||
|
avno=AveragingNeuralOperator(
|
||||||
|
lifting_net=lifting_net,
|
||||||
|
projecting_net=projecting_net,
|
||||||
|
coordinates_indices=coordinates_indices,
|
||||||
|
field_indices=field_indices,
|
||||||
|
n_layers=n_layers,
|
||||||
|
func=func)
|
||||||
|
|
||||||
input_ = LabelTensor(
|
input_ = LabelTensor(
|
||||||
torch.rand(batch_size, 1000, input_numb_fields + dimension), ['p', 'v'])
|
torch.rand(batch_size, 100,
|
||||||
ano = AveragingNeuralOperator(input_numb_fields,
|
len(coordinates_indices) + len(field_indices)), ['p', 'v'])
|
||||||
output_numb_fields,
|
|
||||||
dimension=dimension,
|
out = avno(input_)
|
||||||
coordinates_indices=['p'],
|
|
||||||
field_indices=['v'])
|
|
||||||
out = ano(input_)
|
|
||||||
assert out.shape == torch.Size(
|
assert out.shape == torch.Size(
|
||||||
[batch_size, input_.shape[1], output_numb_fields])
|
[batch_size, input_.shape[1], len(field_indices)])
|
||||||
|
|
||||||
|
|
||||||
def test_backward():
|
def test_backward():
|
||||||
input_numb_fields = 1
|
lifting_net = torch.nn.Linear(len(coordinates_indices) + len(field_indices),
|
||||||
dimension = 1
|
embedding_dim)
|
||||||
output_numb_fields = 1
|
projecting_net = torch.nn.Linear(embedding_dim + len(field_indices),
|
||||||
|
len(field_indices))
|
||||||
|
avno=AveragingNeuralOperator(
|
||||||
|
lifting_net=lifting_net,
|
||||||
|
projecting_net=projecting_net,
|
||||||
|
coordinates_indices=coordinates_indices,
|
||||||
|
field_indices=field_indices,
|
||||||
|
n_layers=n_layers,
|
||||||
|
func=func)
|
||||||
input_ = LabelTensor(
|
input_ = LabelTensor(
|
||||||
torch.rand(batch_size, 1000, dimension + input_numb_fields),
|
torch.rand(batch_size, 100,
|
||||||
['p', 'v'])
|
len(coordinates_indices) + len(field_indices)), ['p', 'v'])
|
||||||
input_ = input_.requires_grad_()
|
input_ = input_.requires_grad_()
|
||||||
avno = AveragingNeuralOperator(input_numb_fields,
|
|
||||||
output_numb_fields,
|
|
||||||
dimension=dimension,
|
|
||||||
coordinates_indices=['p'],
|
|
||||||
field_indices=['v'])
|
|
||||||
out = avno(input_)
|
out = avno(input_)
|
||||||
tmp = torch.linalg.norm(out)
|
tmp = torch.linalg.norm(out)
|
||||||
tmp.backward()
|
tmp.backward()
|
||||||
grad = input_.grad
|
grad = input_.grad
|
||||||
assert grad.shape == torch.Size(
|
assert grad.shape == torch.Size(
|
||||||
[batch_size, input_.shape[1], dimension + input_numb_fields])
|
[batch_size, input_.shape[1],
|
||||||
|
len(coordinates_indices) + len(field_indices)])
|
||||||
1
tutorials/README.md
vendored
1
tutorials/README.md
vendored
@@ -22,6 +22,7 @@ Periodic Boundary Conditions for Helmotz Equation |[[.ipynb](tutorial9/tutorial.
|
|||||||
| Description | Tutorial |
|
| Description | Tutorial |
|
||||||
|---------------|-----------|
|
|---------------|-----------|
|
||||||
Two dimensional Darcy flow using the Fourier Neural Operator |[[.ipynb](tutorial5/tutorial.ipynb), [.py](tutorial5/tutorial.py), [.html](http://mathlab.github.io/PINA/_rst/tutorials/tutorial5/tutorial.html)]|
|
Two dimensional Darcy flow using the Fourier Neural Operator |[[.ipynb](tutorial5/tutorial.ipynb), [.py](tutorial5/tutorial.py), [.html](http://mathlab.github.io/PINA/_rst/tutorials/tutorial5/tutorial.html)]|
|
||||||
|
Time dependent Kuramoto Sivashinsky equation using the Averaging Neural Operator |[[.ipynb](tutorial10/tutorial.ipynb), [.py](tutorial10/tutorial.py), [.html](http://mathlab.github.io/PINA/_rst/tutorials/tutorial10/tutorial.html)]|
|
||||||
|
|
||||||
## Supervised Learning
|
## Supervised Learning
|
||||||
| Description | Tutorial |
|
| Description | Tutorial |
|
||||||
|
|||||||
BIN
tutorials/tutorial10/dat/Data_KS.mat
vendored
Normal file
BIN
tutorials/tutorial10/dat/Data_KS.mat
vendored
Normal file
Binary file not shown.
BIN
tutorials/tutorial10/dat/Data_KS2.mat
vendored
Normal file
BIN
tutorials/tutorial10/dat/Data_KS2.mat
vendored
Normal file
Binary file not shown.
412
tutorials/tutorial10/tutorial.ipynb
vendored
Normal file
412
tutorials/tutorial10/tutorial.ipynb
vendored
Normal file
File diff suppressed because one or more lines are too long
252
tutorials/tutorial10/tutorial.py
vendored
Normal file
252
tutorials/tutorial10/tutorial.py
vendored
Normal file
@@ -0,0 +1,252 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# coding: utf-8
|
||||||
|
|
||||||
|
# # Tutorial: Averaging Neural Operator for solving Kuramoto Sivashinsky equation
|
||||||
|
#
|
||||||
|
# In this tutorial we will build a Neural Operator using the
|
||||||
|
# `AveragingNeuralOperator` model and the `SupervisedSolver`. At the end of the
|
||||||
|
# tutorial you will be able to train a Neural Operator for learning
|
||||||
|
# the operator of time dependent PDEs.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# First of all, some useful imports. Note we use `scipy` for i/o operations.
|
||||||
|
#
|
||||||
|
|
||||||
|
# In[1]:
|
||||||
|
|
||||||
|
|
||||||
|
import torch
|
||||||
|
import matplotlib.pyplot as plt
|
||||||
|
from scipy import io
|
||||||
|
from pina import Condition, LabelTensor
|
||||||
|
from pina.problem import AbstractProblem
|
||||||
|
from pina.model import AveragingNeuralOperator
|
||||||
|
from pina.solvers import SupervisedSolver
|
||||||
|
from pina.trainer import Trainer
|
||||||
|
|
||||||
|
|
||||||
|
# ## Data Generation
|
||||||
|
#
|
||||||
|
# We will focus on solving a specific PDE, the **Kuramoto Sivashinsky** (KS) equation.
|
||||||
|
# The KS PDE is a fourth-order nonlinear PDE with the following form:
|
||||||
|
#
|
||||||
|
# $$
|
||||||
|
# \frac{\partial u}{\partial t}(x,t) = -u(x,t)\frac{\partial u}{\partial x}(x,t)- \frac{\partial^{4}u}{\partial x^{4}}(x,t) - \frac{\partial^{2}u}{\partial x^{2}}(x,t).
|
||||||
|
# $$
|
||||||
|
#
|
||||||
|
# In the above $x\in \Omega=[0, 64]$ represents a spatial location, $t\in\mathbb{T}=[0,50]$ the time and $u(x, t)$ is the value of the function $u:\Omega \times\mathbb{T}\in\mathbb{R}$. We indicate with $\mathbb{U}$ a suitable space for $u$, i.e. we have that the solution $u\in\mathbb{U}$.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# We impose Dirichlet boundary conditions on the derivative of $u$ on the border of the domain $\partial \Omega$
|
||||||
|
# $$
|
||||||
|
# \frac{\partial u}{\partial x}(x,t)=0 \quad \forall (x,t)\in \partial \Omega\times\mathbb{T}.
|
||||||
|
# $$
|
||||||
|
#
|
||||||
|
# Initial conditions are sampled from a distribution over truncated Fourier series with random coefficients
|
||||||
|
# $\{A_k, \ell_k, \phi_k\}_k$ as
|
||||||
|
# $$
|
||||||
|
# u(x,0) = \sum_{k=1}^N A_k \sin(2 \pi \ell_k x / L + \phi_k) \ ,
|
||||||
|
# $$
|
||||||
|
#
|
||||||
|
# where $A_k \in [-0.4, -0.3]$, $\ell_k = 2$, $\phi_k = 2\pi \quad \forall k=1,\dots,N$.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# We have already generated some data for differenti initial conditions, and our objective will
|
||||||
|
# be to build a Neural Operator that, given $u(x, t)$ will output $u(x, t+\delta)$, where
|
||||||
|
# $\delta$ is a fixed time step. We will come back on the Neural Operator architecture, for now
|
||||||
|
# we first need to import the data.
|
||||||
|
#
|
||||||
|
# **Note:**
|
||||||
|
# *The numerical integration is obtained by using pseudospectral method for spatial derivative discratization and
|
||||||
|
# implicit Runge Kutta 5 for temporal dynamics.*
|
||||||
|
#
|
||||||
|
|
||||||
|
# In[2]:
|
||||||
|
|
||||||
|
|
||||||
|
# load data
|
||||||
|
data=io.loadmat("dat/Data_KS.mat")
|
||||||
|
|
||||||
|
# converting to label tensor
|
||||||
|
initial_cond_train = LabelTensor(torch.tensor(data['initial_cond_train'], dtype=torch.float), ['t','x','u0'])
|
||||||
|
initial_cond_test = LabelTensor(torch.tensor(data['initial_cond_test'], dtype=torch.float), ['t','x','u0'])
|
||||||
|
sol_train = LabelTensor(torch.tensor(data['sol_train'], dtype=torch.float), ['u'])
|
||||||
|
sol_test = LabelTensor(torch.tensor(data['sol_test'], dtype=torch.float), ['u'])
|
||||||
|
|
||||||
|
print('Data Loaded')
|
||||||
|
print(f' shape initial condition: {initial_cond_train.shape}')
|
||||||
|
print(f' shape solution: {sol_train.shape}')
|
||||||
|
|
||||||
|
|
||||||
|
# The data are saved in the form `B \times N \times D`, where `B` is the batch_size
|
||||||
|
# (basically how many initial conditions we sample), `N` the number of points in the mesh
|
||||||
|
# (which is the product of the discretization in `x` timese the one in `t`), and
|
||||||
|
# `D` the dimension of the problem (in this case we have three variables `[u, t, x]`).
|
||||||
|
#
|
||||||
|
# We are now going to plot some trajectories!
|
||||||
|
|
||||||
|
# In[3]:
|
||||||
|
|
||||||
|
|
||||||
|
# helper function
|
||||||
|
def plot_trajectory(coords, real, no_sol=None):
|
||||||
|
# find the x-t shapes
|
||||||
|
dim_x = len(torch.unique(coords.extract('x')))
|
||||||
|
dim_t = len(torch.unique(coords.extract('t')))
|
||||||
|
# if we don't have the Neural Operator solution we simply plot the real one
|
||||||
|
if no_sol is None:
|
||||||
|
fig, axs = plt.subplots(1, 1, figsize=(15, 5), sharex=True, sharey=True)
|
||||||
|
c = axs.imshow(real.reshape(dim_t, dim_x).T.detach(),extent=[0, 50, 0, 64], cmap='PuOr_r', aspect='auto')
|
||||||
|
axs.set_title('Real solution')
|
||||||
|
fig.colorbar(c, ax=axs)
|
||||||
|
axs.set_xlabel('t')
|
||||||
|
axs.set_ylabel('x')
|
||||||
|
# otherwise we plot the real one, the Neural Operator one, and their difference
|
||||||
|
else:
|
||||||
|
fig, axs = plt.subplots(1, 3, figsize=(15, 5), sharex=True, sharey=True)
|
||||||
|
axs[0].imshow(real.reshape(dim_t, dim_x).T.detach(),extent=[0, 50, 0, 64], cmap='PuOr_r', aspect='auto')
|
||||||
|
axs[0].set_title('Real solution')
|
||||||
|
axs[1].imshow(no_sol.reshape(dim_t, dim_x).T.detach(),extent=[0, 50, 0, 64], cmap='PuOr_r', aspect='auto')
|
||||||
|
axs[1].set_title('NO solution')
|
||||||
|
c = axs[2].imshow((real - no_sol).abs().reshape(dim_t, dim_x).T.detach(),extent=[0, 50, 0, 64], cmap='PuOr_r', aspect='auto')
|
||||||
|
axs[2].set_title('Absolute difference')
|
||||||
|
fig.colorbar(c, ax=axs.ravel().tolist())
|
||||||
|
for ax in axs:
|
||||||
|
ax.set_xlabel('t')
|
||||||
|
ax.set_ylabel('x')
|
||||||
|
plt.show()
|
||||||
|
|
||||||
|
# a sample trajectory (we use the sample 5, feel free to change)
|
||||||
|
sample_number = 20
|
||||||
|
plot_trajectory(coords=initial_cond_train[sample_number].extract(['x', 't']),
|
||||||
|
real=sol_train[sample_number].extract('u'))
|
||||||
|
|
||||||
|
|
||||||
|
# As we can see, as the time progresses the solution becomes chaotic, which makes
|
||||||
|
# it really hard to learn! We will now focus on building a Neural Operator using the
|
||||||
|
# `SupervisedSolver` class to tackle the problem.
|
||||||
|
#
|
||||||
|
# ## Averaging Neural Operator
|
||||||
|
#
|
||||||
|
# We will build a neural operator $\texttt{NO}$ which takes the solution at time $t=0$ for any $x\in\Omega$,
|
||||||
|
# the time $(t)$ at which we want to compute the solution, and gives back the solution to the KS equation $u(x, t)$, mathematically:
|
||||||
|
# $$
|
||||||
|
# \texttt{NO}_\theta : \mathbb{U} \rightarrow \mathbb{U},
|
||||||
|
# $$
|
||||||
|
# such that
|
||||||
|
# $$
|
||||||
|
# \texttt{NO}_\theta[u(t=0)](x, t) \rightarrow u(x, t).
|
||||||
|
# $$
|
||||||
|
#
|
||||||
|
# There are many ways on approximating the following operator, e.g. by 2D [FNO](https://mathlab.github.io/PINA/_rst/models/fno.html) (for regular meshes),
|
||||||
|
# a [DeepOnet](https://mathlab.github.io/PINA/_rst/models/deeponet.html), [Continuous Convolutional Neural Operator](https://mathlab.github.io/PINA/_rst/layers/convolution.html),
|
||||||
|
# [MIONet](https://mathlab.github.io/PINA/_rst/models/mionet.html).
|
||||||
|
# In this tutorial we will use the *Averaging Neural Operator* presented in [*The Nonlocal Neural Operator: Universal Approximation*](https://arxiv.org/abs/2304.13221)
|
||||||
|
# which is a [Kernel Neural Operator](https://mathlab.github.io/PINA/_rst/models/base_no.html) with integral kernel:
|
||||||
|
#
|
||||||
|
# $$
|
||||||
|
# K(v) = \sigma\left(Wv(x) + b + \frac{1}{|\Omega|}\int_\Omega v(y)dy\right)
|
||||||
|
# $$
|
||||||
|
#
|
||||||
|
# where:
|
||||||
|
#
|
||||||
|
# * $v(x)\in\mathbb{R}^{\rm{emb}}$ is the update for a function $v$ with $\mathbb{R}^{\rm{emb}}$ the embedding (hidden) size
|
||||||
|
# * $\sigma$ is a non-linear activation
|
||||||
|
# * $W\in\mathbb{R}^{\rm{emb}\times\rm{emb}}$ is a tunable matrix.
|
||||||
|
# * $b\in\mathbb{R}^{\rm{emb}}$ is a tunable bias.
|
||||||
|
#
|
||||||
|
# If PINA many Kernel Neural Operators are already implemented, and the modular componets of the [Kernel Neural Operator](https://mathlab.github.io/PINA/_rst/models/base_no.html) class permits to create new ones by composing base kernel layers.
|
||||||
|
#
|
||||||
|
# **Note:*** We will use the already built class* `AveragingNeuralOperator`, *as constructive excercise try to use the* [KernelNeuralOperator](https://mathlab.github.io/PINA/_rst/models/base_no.html) *class for building a kernel neural operator from scratch. You might employ the different layers that we have in pina, e.g.* [FeedForward](https://mathlab.github.io/PINA/_rst/models/fnn.html), *and* [AveragingNeuralOperator](https://mathlab.github.io/PINA/_rst/layers/avno_layer.html) *layers*.
|
||||||
|
|
||||||
|
# In[4]:
|
||||||
|
|
||||||
|
|
||||||
|
class SIREN(torch.nn.Module):
|
||||||
|
def forward(self, x):
|
||||||
|
return torch.sin(x)
|
||||||
|
|
||||||
|
embedding_dimesion = 40 # hyperparameter embedding dimension
|
||||||
|
input_dimension = 3 # ['u', 'x', 't']
|
||||||
|
number_of_coordinates = 2 # ['x', 't']
|
||||||
|
lifting_net = torch.nn.Linear(input_dimension, embedding_dimesion) # simple linear layers for lifting and projecting nets
|
||||||
|
projecting_net = torch.nn.Linear(embedding_dimesion + number_of_coordinates, 1)
|
||||||
|
model = AveragingNeuralOperator(lifting_net=lifting_net,
|
||||||
|
projecting_net=projecting_net,
|
||||||
|
coordinates_indices=['x', 't'],
|
||||||
|
field_indices=['u0'],
|
||||||
|
n_layers=4,
|
||||||
|
func=SIREN
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
# Super easy! Notice that we use the `SIREN` activation function, more on [Implicit Neural Representations with Periodic Activation Functions](https://arxiv.org/abs/2006.09661).
|
||||||
|
#
|
||||||
|
# ## Solving the KS problem
|
||||||
|
#
|
||||||
|
# We will now focus on solving the KS equation using the `SupervisedSolver` class
|
||||||
|
# and the `AveragingNeuralOperator` model. As done in the [FNO tutorial](https://github.com/mathLab/PINA/blob/master/tutorials/tutorial5/tutorial.ipynb) we now create the `NeuralOperatorProblem` class with `AbstractProblem`.
|
||||||
|
|
||||||
|
# In[6]:
|
||||||
|
|
||||||
|
|
||||||
|
# expected running time ~ 1 minute
|
||||||
|
|
||||||
|
class NeuralOperatorProblem(AbstractProblem):
|
||||||
|
input_variables = initial_cond_train.labels
|
||||||
|
output_variables = sol_train.labels
|
||||||
|
conditions = {'data' : Condition(input_points=initial_cond_train,
|
||||||
|
output_points=sol_train)}
|
||||||
|
|
||||||
|
|
||||||
|
# initialize problem
|
||||||
|
problem = NeuralOperatorProblem()
|
||||||
|
# initialize solver
|
||||||
|
solver = SupervisedSolver(problem=problem, model=model,optimizer_kwargs={"lr":0.001})
|
||||||
|
# train, only CPU and avoid model summary at beginning of training (optional)
|
||||||
|
trainer = Trainer(solver=solver, max_epochs=40, accelerator='cpu', enable_model_summary=False, log_every_n_steps=-1, batch_size=5) # we train on CPU and avoid model summary at beginning of training (optional)
|
||||||
|
trainer.train()
|
||||||
|
|
||||||
|
|
||||||
|
# We can now see some plots for the solutions
|
||||||
|
|
||||||
|
# In[7]:
|
||||||
|
|
||||||
|
|
||||||
|
sample_number = 2
|
||||||
|
no_sol = solver(initial_cond_test)
|
||||||
|
plot_trajectory(coords=initial_cond_test[sample_number].extract(['x', 't']),
|
||||||
|
real=sol_test[sample_number].extract('u'),
|
||||||
|
no_sol=no_sol[5])
|
||||||
|
|
||||||
|
|
||||||
|
# As we can see we can obtain nice result considering the small trainint time and the difficulty of the problem!
|
||||||
|
# Let's see how the training and testing error:
|
||||||
|
|
||||||
|
# In[8]:
|
||||||
|
|
||||||
|
|
||||||
|
from pina.loss import PowerLoss
|
||||||
|
|
||||||
|
error_metric = PowerLoss(p=2) # we use the MSE loss
|
||||||
|
|
||||||
|
with torch.no_grad():
|
||||||
|
no_sol_train = solver(initial_cond_train)
|
||||||
|
err_train = error_metric(sol_train.extract('u'), no_sol_train).mean() # we average the error over trajectories
|
||||||
|
no_sol_test = solver(initial_cond_test)
|
||||||
|
err_test = error_metric(sol_test.extract('u'),no_sol_test).mean() # we average the error over trajectories
|
||||||
|
print(f'Training error: {float(err_train):.3f}')
|
||||||
|
print(f'Testing error: {float(err_test):.3f}')
|
||||||
|
|
||||||
|
|
||||||
|
# as we can see the error is pretty small, which agrees with what we can see from the previous plots.
|
||||||
|
|
||||||
|
# ## What's next?
|
||||||
|
#
|
||||||
|
# Now you know how to solve a time dependent neural operator problem in **PINA**! There are multiple directions you can go now:
|
||||||
|
#
|
||||||
|
# 1. Train the network for longer or with different layer sizes and assert the finaly accuracy
|
||||||
|
#
|
||||||
|
# 2. We left a more challenging dataset [Data_KS2.mat](tutorial10/dat/Data_KS2.mat) where $A_k \in [-0.5, 0.5]$, $\ell_k \in [1, 2, 3]$, $\phi_k \in [0, 2\pi]$ for loger training
|
||||||
|
#
|
||||||
|
# 3. Compare the performance between the different neural operators (you can even try to implement your favourite one!)
|
||||||
Reference in New Issue
Block a user