Papers
Topics
Authors
Recent
Search
2000 character limit reached

Meta Neural Graph Operator (MaNGO)

Updated 14 July 2026
  • The paper introduces MaNGO, a simulator that infers latent task codes from few context trajectories for one-shot trajectory prediction.
  • MaNGO is a meta neural graph operator that fuses a CNP-like spatiotemporal encoder with a neural operator decoder to mitigate error accumulation.
  • MaNGO achieves near-oracle accuracy across diverse dynamics domains while efficiently adapting to new physical parameters without test-time gradient updates.

Searching arXiv for the specified MaNGO paper and related work to ground the article in current papers. Meta Neural Graph Operator (MaNGO) denotes a meta-learned, graph-based simulator for dynamics prediction that adapts rapidly to unseen physical parameters by encoding a few context trajectories into a task-specific latent representation and conditioning a neural graph operator on that latent (Dahlinger et al., 7 Oct 2025). The framework was introduced to address two limitations of standard Graph Network Simulators (GNSs): the need to retrain from scratch for even minor variations in physical parameters, and the requirement for labor-intensive data collection for each new parameter setting. MaNGO couples a Conditional Neural Process (CNP) encoder over spatiotemporal graph data with a neural operator-style decoder that predicts entire future trajectories in one pass, with the explicit goal of fast, gradient-free adaptation and reduced error accumulation over long horizons (Dahlinger et al., 7 Oct 2025).

1. Problem setting and motivation

MaNGO is formulated for time-evolving graph systems G=(V,E)G=(V,E) in which each node iVi\in V has state xitRdx_i^t \in \mathbb{R}^d at time tt, and edges may carry features eije_{ij}. The target application class is physics simulation with varying material properties such as Young’s modulus, Poisson’s ratio, density, and viscosity. Traditional mesh-based solvers, including the finite element method, are described as accurate but computationally expensive and dependent on precise physical parameters being known a priori. Standard GNS methods provide fast forward prediction, but typically must be retrained for each new parameter setting and often require labeled parameter inputs at test time to generalize under conditional training (Dahlinger et al., 7 Oct 2025).

The central premise of MaNGO is that simulations across different parameter settings share latent structure. Objects with similar material properties obey similar laws, and their trajectories exhibit statistically consistent spatiotemporal patterns. Meta-learning is used to exploit this shared structure: multiple context trials from a task with common but unknown parameters are summarized into a task-specific latent code, which is then used to condition prediction for a new initial condition. The adaptation protocol is explicitly gradient-free: at test time, a few context trials under an unseen parameter setting are encoded, and no retraining or test-time optimization is required (Dahlinger et al., 7 Oct 2025).

A recurring point of contrast in the MaNGO paper is the distinction between latent parameter inference from trajectories and “oracle” conditioning. In the oracle setting, the model is trained and tested with access to the true simulation parameters ρ\rho, which are injected directly rather than inferred from context. MaNGO is designed to approach oracle-level accuracy without requiring ρ\rho at test time (Dahlinger et al., 7 Oct 2025).

2. Architecture and conditioning mechanism

MaNGO consists of two coupled components: a CNP-like spatiotemporal encoder and a latent-conditioned neural graph operator decoder. The encoder operates on a context set CT={(xc,yc)}c=1CC_{\mathcal{T}}=\{(x_c,y_c)\}_{c=1}^{|C|} for a task T\mathcal{T}, where xcx_c denotes inputs such as initial conditions and exogenous signals and iVi\in V0 denotes observed trajectories. Its aggregation rule is

iVi\in V1

The encoder iVi\in V2 first removes global translation bias, applies a temporal 1D CNN across time frames, and then aggregates node-wise features through a Deep Sets encoder with inner and outer MLPs, producing the task representation iVi\in V3. An optional head iVi\in V4 maps iVi\in V5 to iVi\in V6 (Dahlinger et al., 7 Oct 2025).

The decoder is a neural operator built from blocks that alternate spatial message passing over the graph at each time step with temporal 1D convolutions across steps. Its operator form is given by

iVi\in V7

where iVi\in V8 is the concatenation of all node states at time iVi\in V9. An example message-passing layer is

xitRdx_i^t \in \mathbb{R}^d0

Conditioning is implemented by concatenating the latent xitRdx_i^t \in \mathbb{R}^d1 or xitRdx_i^t \in \mathbb{R}^d2 to node features at every time and layer. The paper explicitly clarifies that there is no hypernetwork reparameterizing layer weights; the latent acts as a global task code modulating message passing via the inputs. Temporal mixing is performed with a residual 1D convolution,

xitRdx_i^t \in \mathbb{R}^d3

The decoder outputs node displacements xitRdx_i^t \in \mathbb{R}^d4, and positions are reconstructed as xitRdx_i^t \in \mathbb{R}^d5. Edge features include relative positions to ensure translation invariance; node features include time embeddings and velocities (Dahlinger et al., 7 Oct 2025).

A defining architectural property is that the decoder predicts an entire trajectory in one pass rather than iterating autoregressively. This is presented as the primary mechanism for mitigating compounding rollout error (Dahlinger et al., 7 Oct 2025).

3. Mathematical formulation and training objective

Prediction in MaNGO is written either probabilistically or deterministically:

xitRdx_i^t \in \mathbb{R}^d6

Within MaNGO, xitRdx_i^t \in \mathbb{R}^d7 is fixed to stabilize training. The episodic meta-learning objective is

xitRdx_i^t \in \mathbb{R}^d8

Long-horizon supervision is introduced through a multi-step trajectory rollout loss,

xitRdx_i^t \in \mathbb{R}^d9

The full loss is the negative log-likelihood of the decoder, with fixed variance, plus rollout MSE. Weight decay may be used as regularization, whereas the latent norm tt0 is not explicitly regularized in the paper (Dahlinger et al., 7 Oct 2025).

The training procedure also admits auxiliary supervision of physical parameters during training, though not at test time. In that variant, the encoder representation is trained to support prediction of known task parameters tt1 through tt2, with joint likelihood

tt3

The stated rationale is that optimizing this joint objective improves the encoder representation tt4 by backpropagating signal from known training-time parameters (Dahlinger et al., 7 Oct 2025).

This mathematical structure implies a specific notion of adaptation. A few trajectories define a task embedding, and the dynamics model is conditioned on that embedding without any gradient step. A plausible implication is that MaNGO is designed to trade explicit parameter estimation for latent task inference, with the latter supervised only indirectly unless auxiliary parameter prediction is enabled.

4. Datasets, episodic protocol, and implementation

The paper evaluates MaNGO on three dynamics domains with varying material properties. Each task dataset tt5 contains 16 trials sharing the same material properties tt6 but differing initial conditions such as force locations or collider positions and sizes. Graph connectivity is fixed across time and tasks (Dahlinger et al., 7 Oct 2025).

Dataset Varying properties Steps / prediction nodes
Deformable Plate (DP) DP-easy varies Poisson’s ratio; DP-hard varies Poisson’s ratio, Young’s modulus, and initial velocity across trials 52 steps; 81 nodes
Planar Bending (PB) Young’s modulus 50 steps; 225 nodes
Sphere Cloth Coupling (SCC) Sphere radius/density varies; sphere density modulates cloth deformation 100 steps; 400 cloth + 98 sphere nodes

Training is episodic. The context set size is sampled uniformly between 1 and 8 trials so that the encoder remains robust to small context sets. Within each batch, a random trial is selected as the target to be predicted from the context-derived latent; this choice is described as empirically beneficial. The rollout horizon is the full sequence length, and there is no teacher forcing because the decoder predicts entire trajectories (Dahlinger et al., 7 Oct 2025).

Optimization is end-to-end via stochastic gradients. Residual connections in the message-passing network and temporal Conv1D stabilize optimization. Translation invariance is enforced by subtracting the initial mean position from inputs, and relative edge positions are used as edge features. Complexity per MaNGO block is proportional to tt7 for spatial updates and tt8 for temporal convolutions, where tt9 is the channel width; the overall forward-pass cost is stated as eije_{ij}0 (Dahlinger et al., 7 Oct 2025).

The adaptation protocol is succinct. Given eije_{ij}1 context trajectories, potentially as few as 2–3, the model computes

eije_{ij}2

then feeds eije_{ij}3 or eije_{ij}4 together with a new initial state into the decoder to predict the full target trajectory. Optional fine-tuning is not used in the paper (Dahlinger et al., 7 Oct 2025).

5. Empirical performance, error accumulation, and robustness

Evaluation uses Full Rollout MSE averaged over time steps as the primary metric. The comparison set includes meta-learning decoders, non-meta decoders without context conditioning, and oracle variants with direct access to true simulation parameters at test time. The reported trend is consistent across datasets: MaNGO outperforms non-meta baselines on unseen material properties and approaches oracle accuracy (Dahlinger et al., 7 Oct 2025).

Representative values from the reported figures illustrate the scale of the effect. On DP-easy, meta MaNGO achieves approximately eije_{ij}5 MSE with 2–4 context trials, close to MaNGO-Oracle at approximately eije_{ij}6, while non-meta decoders are around eije_{ij}7. On DP-hard, meta MaNGO is approximately eije_{ij}8, oracle approximately eije_{ij}9, and non-meta decoders approximately ρ\rho0. On PB, meta MaNGO reaches approximately ρ\rho1, compared with oracle approximately ρ\rho2 and non-meta decoders approximately ρ\rho3. On SCC, meta MaNGO is approximately ρ\rho4, oracle approximately ρ\rho5, and non-meta decoders approximately ρ\rho6 (Dahlinger et al., 7 Oct 2025).

The paper attributes MaNGO’s long-horizon behavior to three interacting design choices. First, the decoder predicts the entire sequence ρ\rho7 in one shot, avoiding stepwise drift associated with autoregressive updates. Second, ρ\rho8 penalizes errors across all time steps jointly. Third, alternating spatial message passing and temporal residual Conv1D layers is intended to capture spatiotemporal correlations while time embeddings encode causality and relative positions enforce translation invariance (Dahlinger et al., 7 Oct 2025).

Sensitivity analyses indicate that accuracy improves with more context trials, but good performance is already achieved with 2–3 contexts, including on DP-hard. Removing the CNP conditioning and using non-meta decoders degrades performance by 1–2 orders of magnitude. Under oracle information, the MaNGO decoder outperforms MGN and EGNO, with a particularly pronounced SCC gap attributed to nonlinear contact dynamics (Dahlinger et al., 7 Oct 2025).

The robustness experiments are also explicit. On DP, adding up to 10% Gaussian noise relative to mesh width and 10% node dropout in the context set leads to minimal degradation, characterized as near-optimal normalized MSE. Even with 50% node dropout, the performance decrease is described as modest, around 15%, which the paper interprets as evidence of robust spatiotemporal encoding (Dahlinger et al., 7 Oct 2025).

6. Relation to prior work, broader uses of the term, and limitations

MaNGO is positioned relative to several research lines. MeshGraphNet and other GNS methods predict next states autoregressively and are fast, but they typically need retraining for new parameters and can accumulate long-horizon errors. Neural operators such as GNO and FNO learn mappings from input functions to output functions directly. CNPs and Neural Processes provide the context-aggregation mechanism used to infer a latent task code at test time. Gradient-based meta-learning methods such as MAML adapt through test-time gradient steps, whereas MaNGO performs gradient-free adaptation through the latent ρ\rho9 (Dahlinger et al., 7 Oct 2025).

The paper also records a specific limitation of strict equivariance-based graph operators. EGNO fails on Planar Bending because of an equivariance-induced planar mapping limitation; the appendix analysis is summarized as showing that planar inputs remain planar throughout EGNN/EGNO layers. More generally, the limitations section states that models relying on strict ρ\rho0-equivariance can fail when physics breaks symmetry, including cases with gravity, friction, and boundary conditions (Dahlinger et al., 7 Oct 2025).

A broader, parameter-space interpretation of “Meta Neural Graph Operator” appears in the metanetwork literature. In "Graph Metanetworks for Processing Diverse Neural Architectures," Graph Metanetworks are described as instantiating the MaNGO concept by turning the parameters of a neural network into a graph and applying a graph neural network that is expressive and equivariant to parameter-permutation symmetries that leave the input network function unchanged (Lim et al., 2023). In that construction, a MaNGO is an operator on a graph representation of neural-network parameters rather than a simulator over physical meshes. This suggests that the phrase can denote a broader operator-on-graphs meta-architecture, while the 2025 MaNGO paper gives it a specific realization for adaptable physics simulation (Lim et al., 2023).

The simulator paper lists several limitations and future directions. Current adaptation uses simulation trajectories as the sole data modality at test time; extending the method to other sensor modalities such as camera point clouds would require new encoders. Predicting full trajectories is more memory-intensive than autoregressive alternatives. Extreme extrapolation beyond training parameter ranges or transfer to topologically different meshes may require additional priors or uncertainty estimation. Datasets are stated to be released, and the paper notes that graph topology remaining fixed over time simplifies batching (Dahlinger et al., 7 Oct 2025).

Taken together, MaNGO defines a meta-learned simulator in which a few trajectories are sufficient to infer a latent task description and condition a graph operator that predicts an entire rollout. In the narrower sense established by the 2025 simulator paper, its distinguishing features are fast gradient-free adaptation, one-shot trajectory prediction, and accuracy close to oracle conditioning on unseen material properties. In the broader sense suggested by related metanetwork work, it also aligns with a general design principle: represent structured objects as graphs, encode the relevant symmetry or latent task information, and apply a graph operator whose inductive bias matches the target family of transformations (Dahlinger et al., 7 Oct 2025).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (2)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Meta Neural Graph Operator (MaNGO).