Implement Graph Neural Operator #231

This commit is contained in:
FilippoOlivo
2025-02-04 18:11:06 +01:00
committed by Nicola Demo
parent e63c3d9061
commit 86fe41261b
4 changed files with 259 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ __all__ = [
"AVNOBlock",
"LowRankBlock",
"RBFBlock",
"GraphIntegralLayer"
]
from .convolution_2d import ContinuousConvBlock
@@ -31,3 +32,4 @@ from .embedding import PeriodicBoundaryEmbedding, FourierFeatureEmbedding
from .avno_layer import AVNOBlock
from .lowrank_layer import LowRankBlock
from .rbf_layer import RBFBlock
from .graph_integral_kernel import GraphIntegralLayer