2026-07-21 08:32:30 +00:00
|
|
|
"""Baseline model definitions."""
|
|
|
|
|
|
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-21 08:32:30 +00:00
|
|
|
from airfrans_frontier.models.mlp import PointwiseMLP
|
|
|
|
|
|
2026-07-25 16:12:49 +00:00
|
|
|
__all__ = [
|
|
|
|
|
"DeepONetBranchTrunk",
|
|
|
|
|
"FourierFiLMMLP",
|
|
|
|
|
"LocalPointTransformer",
|
|
|
|
|
"NeRFCFDMultiRes",
|
|
|
|
|
"PointContextPerceiver",
|
|
|
|
|
"PointwiseMLP",
|
|
|
|
|
"RasterFNOUNet",
|
|
|
|
|
"SirenConditionedINR",
|
|
|
|
|
]
|