Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions physicsnemo/experimental/models/geotransolver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@
Main model class combining GALE attention with geometry and global context.
GALE
Geometry-Aware Latent Embeddings attention layer.
GALE_FA
GALE with FLARE self-attention backend.
GALE_block
Transformer block using GALE attention.
Transformer block using GALE or GALE_FA attention.
ContextProjector
Projects context features onto physical state slices.
GlobalContextBuilder
Expand Down Expand Up @@ -56,17 +58,31 @@
collect_concrete_dropout_losses,
get_concrete_dropout_rates,
)
from .context_projector import ContextProjector, GlobalContextBuilder
from .gale import GALE, GALE_block
from .context_projector import (
ContextProjector,
GlobalContextBuilder,
StructuredContextProjector,
)
from .gale import (
GALE,
GALE_FA,
GALE_block,
GALEStructuredMesh2D,
GALEStructuredMesh3D,
)
from .geotransolver import GeoTransolver, GeoTransolverMetaData

__all__ = [
"GeoTransolver",
"GeoTransolverMetaData",
"GALE",
"GALE_FA",
"GALE_block",
"GALEStructuredMesh2D",
"GALEStructuredMesh3D",
"ContextProjector",
"GlobalContextBuilder",
"StructuredContextProjector",
"ConcreteDropout",
"collect_concrete_dropout_losses",
"get_concrete_dropout_rates",
Expand Down
Loading
Loading