@@ -14,6 +14,8 @@ The demonstration showing above is Navier-Stokes equation learned by the `Markov
14
14
Example can be found in [ ` example/FlowOverCircle ` ] ( https://github.com/foldfelis/NeuralOperators.jl/tree/master/example/FlowOverCircle ) .
15
15
The result is also provided [ here] ( assets/notebook/mno.jl.html )
16
16
17
+ ## Abstract
18
+
17
19
Neural operator is a novel deep learning architecture.
18
20
It learns a operator, which is a mapping between infinite-dimensional function spaces.
19
21
It can be used to resolve [ partial differential equations (PDE)] ( https://en.wikipedia.org/wiki/Partial_differential_equation ) .
@@ -22,12 +24,16 @@ from infinite-dimensional space (u, t) to infinite-dimensional space f(u, t).
22
24
Neural operator learns a continuous function between two continuous function spaces.
23
25
The kernel can be trained on different geometry, which is learned from a graph.
24
26
25
- Fourier neural operator learns a neural operator with Dirichlet kernel to form a Fourier transformation.
27
+ ** Fourier neural operator** learns a neural operator with Dirichlet kernel to form a Fourier transformation.
26
28
It performs Fourier transformation across infinite-dimensional function spaces and learns better than neural operator.
27
29
30
+ ** Markov neural operator** learns a neural operator with Fourier operators.
31
+ With only one time step information of learning, it can predict the following few steps with low loss
32
+ by linking the operators into a Markov chain.
33
+
28
34
Currently, the ` FourierOperator ` layer is provided in this work.
29
35
As for model, there are ` FourierNeuralOperator ` and ` MarkovNeuralOperator ` provided.
30
- Please take a glance at them [ here] ( https://github.com/foldfelis/NeuralOperators.jl/blob/master/src/model.jl ) .
36
+ Please take a glance at them [ here] ( apis.html#Models ) .
31
37
32
38
## Quick start
33
39
@@ -55,7 +61,7 @@ model = Chain(
55
61
)
56
62
```
57
63
58
- Or you can just call:
64
+ Or one can just call:
59
65
60
66
``` julia
61
67
model = FourierNeuralOperator (
0 commit comments