Skip to content
This repository was archived by the owner on Sep 28, 2024. It is now read-only.

Commit fea3108

Browse files
committed
readme for FlowOverCircle
1 parent 51144cf commit fea3108

File tree

2 files changed

+19
-15
lines changed

2 files changed

+19
-15
lines changed

README.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -70,27 +70,15 @@ Flux.@epochs 50 Flux.train!(loss, params(model), data, opt)
7070

7171
PDE training examples are provided in `example` folder.
7272

73-
### One-dimensional
73+
### One-dimensional Fourier neural operator
7474

7575
[Burgers' equation](example/Burgers)
7676

7777
### Two-dimensional with time Navier-Stokes equation
7878

79-
The Navier-Stokes equation is learned by the `MarkovNeuralOperator` with only one time step information.
80-
Example can be found in `example/FlowOverCircle`.
81-
The result is also provided [here](https://foldfelis.github.io/NeuralOperators.jl/dev/assets/notebook/mno.jl.html)
79+
### Markov Neural Operator
8280

83-
| **Ground Truth** | **Inferenced** |
84-
|:----------------:|:--------------:|
85-
| ![](example/FlowOverCircle/gallery/ans.gif) | ![](example/FlowOverCircle/gallery/inferenced.gif) |
86-
87-
Use following commend to train model:
88-
89-
```julia
90-
$ julia --proj
91-
92-
julia> using FlowOverCircle; FlowOverCircle.train()
93-
```
81+
[Time dependent Navier-Stokes equation](example/FlowOverCircle)
9482

9583
## Roadmap
9684

example/FlowOverCircle/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Flow over the circle
2+
3+
The time dependent Navier-Stokes equation is learned by the `MarkovNeuralOperator` with only one time step information.
4+
The result of this example can be found [here](https://foldfelis.github.io/NeuralOperators.jl/dev/assets/notebook/mno.jl.html).
5+
6+
| **Ground Truth** | **Inferenced** |
7+
|:----------------:|:--------------:|
8+
| ![](gallery/ans.gif) | ![](gallery/inferenced.gif) |
9+
10+
Change directory to `example/FlowOverCircle` and use following commend to train model:
11+
12+
```julia
13+
$ julia --proj
14+
15+
julia> using FlowOverCircle; FlowOverCircle.train()
16+
```

0 commit comments

Comments
 (0)