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

Commit ab30e18

Browse files
committed
correct description
1 parent 79009ca commit ab30e18

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,15 @@ As for model, there are `FourierNeuralOperator` and `MarkovNeuralOperator` provi
4343

4444
```julia
4545
model = Chain(
46-
# project finite-dimensional data to infinite-dimensional space
46+
# lift (d + 1)-dimensional vector field to n-dimensional vector field
47+
# here, d == 1 and n == 64
4748
Dense(2, 64),
4849
# operator projects data between infinite-dimensional spaces
4950
FourierOperator(64=>64, (16, ), gelu),
5051
FourierOperator(64=>64, (16, ), gelu),
5152
FourierOperator(64=>64, (16, ), gelu),
5253
FourierOperator(64=>64, (16, )),
53-
# project infinite-dimensional function to finite-dimensional space
54+
# project back to the scalar field of interest space
5455
Dense(64, 128, gelu),
5556
Dense(128, 1),
5657
flatten

0 commit comments

Comments
 (0)