You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 28, 2024. It is now read-only.
Neural operator is a novel deep learning architecture. It learns a operator, which is a mapping
16
-
between infinite-dimensional function spaces. It can be used to resolve [partial differential equations (PDE)](https://en.wikipedia.org/wiki/Partial_differential_equation).
17
-
Instead of solving by finite element method, a PDE problem can be resolved by learning a neural network to learn an operator
18
-
mapping from infinite-dimensional space (u, t) to infinite-dimensional space f(u, t). Neural operator learns a continuous function
19
-
between two continuous function spaces. The kernel can be trained on different geometry, which is learned from a graph.
15
+
Neural operator is a novel deep learning architecture.
16
+
It learns a operator, which is a mapping between infinite-dimensional function spaces.
17
+
It can be used to resolve [partial differential equations (PDE)](https://en.wikipedia.org/wiki/Partial_differential_equation).
18
+
Instead of solving by finite element method, a PDE problem can be resolved by training a neural network to learn an operator mapping
19
+
from infinite-dimensional space (u, t) to infinite-dimensional space f(u, t).
20
+
Neural operator learns a continuous function between two continuous function spaces.
21
+
The kernel can be trained on different geometry, which is learned from a graph.
20
22
21
-
Fourier neural operator learns a neural operator with Dirichlet kernel to form a Fourier transformation. It performs Fourier transformation across infinite-dimensional function spaces and learns better than neural operator.
23
+
Fourier neural operator learns a neural operator with Dirichlet kernel to form a Fourier transformation.
24
+
It performs Fourier transformation across infinite-dimensional function spaces and learns better than neural operator.
22
25
23
26
Currently, the `FourierOperator` layer is provided in this work.
24
27
As for model, there are `FourierNeuralOperator` and `MarkovNeuralOperator` provided. Please take a glance at them [here](src/model.jl).
@@ -106,3 +109,4 @@ julia> using FlowOverCircle; FlowOverCircle.train()
0 commit comments