2026-07-21 08:32:30 +00:00
|
|
|
"""Baseline model definitions."""
|
|
|
|
|
|
2026-07-27 17:51:28 +00:00
|
|
|
from airfrans_frontier.models.coordinate_encoding import CoordinateEncoder, CoordinateEncodingSpec
|
2026-07-23 08:36:59 +00:00
|
|
|
from airfrans_frontier.models.film import FourierFiLMMLP
|
2026-07-25 16:12:49 +00:00
|
|
|
from airfrans_frontier.models.frontier import (
|
|
|
|
|
DeepONetBranchTrunk,
|
|
|
|
|
LocalPointTransformer,
|
|
|
|
|
NeRFCFDMultiRes,
|
|
|
|
|
PointContextPerceiver,
|
|
|
|
|
RasterFNOUNet,
|
|
|
|
|
SirenConditionedINR,
|
|
|
|
|
)
|
2026-07-29 09:42:52 +00:00
|
|
|
from airfrans_frontier.models.mlp import EncodedPointwiseMLP, PointwiseMLP
|
2026-07-21 08:32:30 +00:00
|
|
|
|
2026-07-25 16:12:49 +00:00
|
|
|
__all__ = [
|
2026-07-27 17:51:28 +00:00
|
|
|
"CoordinateEncoder",
|
|
|
|
|
"CoordinateEncodingSpec",
|
2026-07-25 16:12:49 +00:00
|
|
|
"DeepONetBranchTrunk",
|
2026-07-29 09:42:52 +00:00
|
|
|
"EncodedPointwiseMLP",
|
2026-07-25 16:12:49 +00:00
|
|
|
"FourierFiLMMLP",
|
|
|
|
|
"LocalPointTransformer",
|
|
|
|
|
"NeRFCFDMultiRes",
|
|
|
|
|
"PointContextPerceiver",
|
|
|
|
|
"PointwiseMLP",
|
|
|
|
|
"RasterFNOUNet",
|
|
|
|
|
"SirenConditionedINR",
|
|
|
|
|
]
|