Semigroup-JEPA: Latent Dynamics Consistency for Zero-Shot Physics Generalization
Abstract: Joint-Embedding Predictive Architecture (JEPA) world models learn a compact latent representation of the world that supports prediction and planning, but their capability to learn physics and generate physically realistic dynamics remains hitherto untested. In this work, we introduce SemiGroup-JEPA (SG-JEPA), which extends the LeWorldModel framework by supplying the parameter governing the physics to the temporal model via action-conditioning and jointly training an encoder and predictor through an autoregressive latent rollout. To evaluate the model's ability to generalize out of distribution, we design dynamical tasks under different gravitational fields that, despite obeying the same physical law, exhibit qualitatively different dynamics, ranging from floating motion in weak gravitational fields to rapid bouncing in strong ones. In contrast to DINO-WM, SG-JEPA reduces open-loop prediction error by up to 2 times on two-dimensional datasets, and increases control success rate up to 2.5 times for three-dimensional robotic datasets, for which we train independent diffusion policies. To explain this advantage, we develop a linear feature model that separates local law-conditioned error from its recursive amplification under rollout. Guided by this model, we find that back-propagating the multi-step rollout loss into the representation trains the encoder to keep the features that the predictor can carry forward, and that those are the features the dynamics depend on, so most of the gain comes from the encoder learning better features rather than from the predictor learning better dynamics. See project page at https://sg-jepa.github.io.
Paper Prompts
Sign up for free to create and run prompts on this paper.
Top Community Prompts
Explain it Like I'm 14
1. What is this paper about?
This paper studies whether an artificial-intelligence model can learn real physical rules, rather than simply memorizing what usually happens in its training examples.
The researchers created a model called Semigroup-JEPA, or SG-JEPA. They tested whether it could understand how objects move under different amounts of gravity. For example, an object moves differently on Earth, the Moon, or Mars because gravity is different.
The model was trained using only a fairly small range of gravity values. Then it was tested on many gravity values it had not seen before. This is called zero-shot generalization: the model tries to handle a new situation without being specially retrained for it.
2. What questions did the researchers ask?
The paper focuses on several main questions:
- Can an AI model learn a general rule for motion, instead of memorizing individual examples?
- Can it predict motion accurately for gravity values that were not included in its training data?
- Can it continue making good predictions for a long time, even when it uses its own earlier predictions?
- Do better results come from the model’s visual understanding, its prediction system, or both?
- Can the model use its understanding of physics to control a robot?
A simple example is this: if the model learns how a ball falls under several Earth-like gravity values, can it predict how the ball behaves under much weaker or stronger gravity?
3. How did the researchers do the study?
Building a “world model”
A world model is an AI system that tries to predict what will happen next in an environment.
For example, if it sees a ball moving upward, it might predict:
- where the ball will be in the next video frame,
- how fast it will be moving,
- when it will start falling,
- whether it will hit another object.
Instead of predicting every future video pixel, SG-JEPA converts each image into a smaller set of numbers called a latent representation. This is like making a useful summary of an image. The summary might contain information about the ball’s position, speed, and surroundings without storing every detail of the picture.
The model has two important parts:
- Encoder: Looks at an image and changes it into a compact numerical summary.
- Predictor: Uses the summary, the action taken, and the gravity value to predict the next summary.
The researchers also gave the model the gravity value as an extra input. This is similar to telling a student, “This experiment is happening on the Moon,” before asking them to predict the motion.
Training with repeated predictions
Many prediction systems are trained only to predict one step ahead. During training, they are given the correct previous state every time.
SG-JEPA was trained differently. It had to predict several steps in a row:
- Predict the next latent representation.
- Use that prediction as the input for the following prediction.
- Continue this process for several steps.
- Compare the final predictions with what actually happened.
This is called an autoregressive rollout. It is similar to planning several moves in a board game: each move depends on the move predicted before it.
This approach matters because small errors can grow over time. If a model predicts that a ball is one centimeter too high, that mistake may cause its next prediction to be even more wrong.
Testing in simulated environments
The researchers used MuJoCo, a computer simulation tool for physics and robots. They created environments involving:
- objects falling and bouncing,
- projectiles moving through the air,
- a robot arm catching a ball,
- a robot arm bouncing a ball with a paddle,
- a robot arm hitting a ball into a basket.
The model was trained on a narrow range of gravity values and tested on a much wider range.
Comparing with other models
SG-JEPA was compared with two other systems:
- DINO-WM, which uses visual features learned beforehand and keeps them fixed.
- LeWM, which predicts one step at a time but does not train as directly on long sequences of its own predictions.
The researchers measured:
- how accurately the models predicted positions, speeds, and rotations,
- how well they worked over long prediction periods,
- how successfully robot arms completed their tasks.
They also performed special experiments. For example, they replaced a model’s predictor with a newly trained one to determine whether the improvement came mainly from the encoder or the predictor.
4. What did the researchers find?
SG-JEPA made better long-term predictions
SG-JEPA generally predicted motion more accurately than the comparison models, especially after many steps.
For a 3D projectile task, SG-JEPA reduced average position error by about 34% compared with DINO-WM and about 50% compared with the original LeWM.
The advantage was especially clear when:
- the model had to predict far into the future,
- the gravity value was very different from the training values.
This suggests that SG-JEPA learned something closer to a general motion rule.
It worked better with unfamiliar gravity values
The model was trained on a narrow range of gravity values but tested on a much wider range. It usually remained accurate even for gravity values outside the training range.
However, performance was not perfect. Very unusual gravity values were still difficult, especially when objects bounced or collided. Collisions can make small mistakes much larger.
It helped robots complete physical tasks
The researchers used the models’ visual representations to train robot-control systems.
For the Arm Catcher Ball task:
- DINO-WM succeeded about 9.5% of the time.
- SG-JEPA succeeded about 23.3% of the time.
For the Arm Paddle Ball task:
- DINO-WM succeeded about 17.7% of the time.
- SG-JEPA succeeded about 23.8% of the time.
For the Franka Paddle-to-Basket task:
- DINO-WM succeeded about 27.4% of the time.
- SG-JEPA succeeded about 30.5% of the time.
These results show that better prediction can lead to better decisions. If a robot understands where a ball will go, it has a better chance of catching or hitting it.
The encoder was especially important
The researchers found that much of SG-JEPA’s advantage came from its encoder, the part that turns images into useful summaries.
They trained new prediction systems using the old encoders. The encoder trained as part of SG-JEPA still gave better results, even when the original predictor was removed.
This means the model was not simply relying on a clever prediction algorithm. Its visual representation had learned to preserve information that mattered for physics, such as position, speed, and motion patterns.
Small early improvements became large later
SG-JEPA sometimes had only a small advantage after one prediction step. But when the model repeatedly used its own predictions, this small advantage became much larger.
This is like missing a turn by only a few degrees while hiking. At first the mistake seems tiny, but after walking for a long time, you may end up far from the correct destination.
The paper’s mathematical analysis explains how prediction errors can be repeatedly carried forward and amplified during a long rollout.
5. Why is this research important?
The main lesson is that an AI system may be more useful if it learns how the world works, instead of memorizing what it has already seen.
SG-JEPA could be useful for:
- robots working in unfamiliar environments,
- spacecraft or vehicles operating under different gravity,
- simulations of physical systems,
- planning actions over long periods,
- predicting the results of actions before performing them.
For example, a robot trained mostly on Earth might be better prepared for a different environment if it has learned the general relationship between gravity and motion.
However, the research also has limitations:
- It mainly changes one physical variable: gravity.
- It uses simulated environments rather than the messy real world.
- It does not always generalize well to completely new object shapes.
- Its mathematical explanation is simplified compared with the full neural network.
Overall, the paper shows that training an AI to make several connected predictions, rather than just one prediction at a time, can help it learn stronger and more general physical representations. This could be an important step toward robots and AI systems that can understand and adapt to new physical situations.
Knowledge Gaps
Knowledge gaps, limitations, and open questions
- Generalization beyond gravity is unresolved. The experiments vary only one scalar physical parameter, so it is unknown whether SG-JEPA can generalize to multiple interacting parameters such as mass, friction, restitution, damping, object size, or actuator properties.
- Vector-valued and structured physical parameters have not been tested. Future work should evaluate whether the model can condition on parameters such as a gravity vector, spatially varying fields, friction tensors, or combinations of continuous and discrete environment properties.
- The model does not infer unknown physics from observations. Gravity is supplied explicitly during training, policy execution, and evaluation; it remains unclear whether SG-JEPA can estimate latent physical parameters online when the parameter is missing, noisy, or incorrectly specified.
- Robustness to inaccurate parameter conditioning is only partially characterized. The counterfactual gravity experiment shows that mismatched gravity increases error, but the paper does not quantify performance under realistic parameter-estimation noise, time-varying parameter estimates, or systematic conditioning bias.
- The tested distribution shift is narrow and highly controlled. OOD evaluation remains within MuJoCo scenes governed by the same simulator and largely the same visual and physical structure. Transfer across simulators, rendering conditions, real-world camera observations, sensor noise, and hardware dynamics is untested.
- Long-horizon performance beyond 44 frames is unknown. The reported rollouts are limited to the episode length and relatively short horizons; it remains unclear whether SG-JEPA avoids eventual divergence over hundreds or thousands of steps.
- The relationship between rollout horizon, discounting, and stability is not fully established. The paper selects and based on ablations, but does not determine how these choices scale with task difficulty, model capacity, episode length, or the desired deployment horizon.
- The source of the encoder advantage is not mechanistically identified at the feature level. The replacement experiments show that representations learned with the GRU are more useful, but they do not identify which visual features, latent dimensions, or invariances preserve the relevant dynamics.
- The causal role of SIGReg remains unclear. Although the coefficient is ablated, the paper does not establish whether SIGReg improves physical identifiability, prevents latent collapse, improves optimization, or interacts with recursive rollout training in a specific way.
- The benefits of recursive rollout training are not isolated from other architectural changes. SG-JEPA differs from the baselines in rollout loss, predictor architecture, gravity conditioning, encoder training, and optimization choices; a fully factorial comparison is needed to attribute gains to each component.
- The comparison with baselines may not equalize all modeling and optimization factors. DINO-WM uses a frozen pretrained encoder, while SG-JEPA and LeWM train encoders from scratch; the contribution of pretrained versus learned visual features, parameter count, compute, and data efficiency is therefore not completely separated.
- Predictor architecture conclusions are limited. The GRU and SSM variants perform similarly in some experiments, but the study does not systematically compare recurrent, Transformer, and state-space predictors under matched parameter counts, training budgets, context lengths, and optimization settings.
- The theoretical analysis does not cover the actual nonlinear, history-dependent model. The linear feature model assumes a linear transition operator, a linear projection, bounded states, and a finite law basis, whereas the deployed predictor is nonlinear and uses history windows. The extent to which the derived bounds predict neural-model behavior remains unknown.
- Contact dynamics and discontinuities are not theoretically characterized sufficiently. Collisions and impacts can switch transition branches, but the analysis does not provide guarantees for hybrid systems, discontinuous derivatives, multiple simultaneous contacts, or chaotic contact sequences.
- The semigroup interpretation is incomplete for action-conditioned control. The strongest theoretical claims concern fixed-gravity or action-free dynamics; how the learned composition law behaves under arbitrary, adaptive, or long action sequences remains unresolved.
- The role of history length is not explained mechanistically. Although is selected through an ablation, the paper does not determine what information is encoded in the history, how much is needed to infer velocity and contacts, or whether shorter histories with explicit state estimation would perform comparably.
- The physical-state probes may not fully reflect world-model quality. Evaluation relies on separately trained MLP probes and subtracts probe error, but probe capacity, probe-window length, and probe distribution can affect the measured physical errors. Direct latent-state identifiability and uncertainty are not reported.
- Uncertainty and calibrated prediction are not evaluated. The model produces point predictions, so it is unclear how it represents uncertainty near collisions, under far-OOD gravity, or when multiple futures are plausible.
- Failure modes in collision-heavy regimes remain insufficiently analyzed. The paper attributes some errors to asymmetric contacts and strong-gravity bouncing, but does not systematically report collision timing, restitution errors, branch-selection errors, or the frequency and severity of physically impossible predictions.
- Shape and morphology generalization is limited. Transfer from triangles and squares to a composite house shape is uneven, while pentagons remain challenging. It remains unknown whether a single model can generalize across substantially different topology, mass distributions, articulated objects, or unseen object interactions.
- The control evaluation does not establish broad task generalization. Policies are trained separately for each task on frozen features, so the results do not show zero-shot transfer to new goals, action spaces, robot embodiments, or manipulation tasks.
- The contribution of improved representations to control is confounded by the downstream policy. Differences in success could arise from the interaction between each representation and the separately trained Diffusion Policy; experiments with matched policy architectures, alternative controllers, model-predictive planning, or raw-state policies are needed.
- Control robustness is not tested under disturbances. The manipulation experiments do not evaluate perturbations such as initial-state variation, observation noise, action latency, actuator noise, object-property changes, or unmodeled contacts.
- Success-rate improvements remain modest and task-specific. Absolute performance is still low for several tasks, including basket placement and repeated paddle control; the paper does not identify whether the main bottleneck is representation quality, policy learning, planning horizon, or task ambiguity.
- Data and compute efficiency are incompletely characterized. The paper reports an optimizer comparison and fixed training schedules, but does not quantify how performance scales with the number of trajectories, gravity coverage, model size, image resolution, or training computation.
- The effect of training-gravity coverage is not fully validated. The proposed law-coverage quantity motivates OOD error, but experiments do not systematically vary the number, spacing, variance, or multimodality of training gravity values to test whether the predicted relationship holds empirically.
- Extrapolation versus interpolation is not cleanly separated. The evaluation grid includes both in-range and OOD values, but the paper does not provide a systematic comparison of interpolation, near extrapolation, and extreme extrapolation under matched distances from the training support.
- Real-time deployment constraints are not reported. Inference latency, memory use, throughput, and the computational cost of maintaining a 20-frame history and recursive latent rollout are not evaluated for robotic deployment.
- The stability of training and results across random seeds is only partly documented. Control results report multiple seeds, but the reproducibility of representation learning, prediction errors, ablations, and far-OOD behavior across seeds is not comprehensively quantified.
- The relationship between latent geometry and physical conservation laws is unexplored. The model is not tested for preserving energy, momentum, angular momentum, ballistic trajectories, or other known invariants, leaving open whether its apparent generalization reflects physical structure or interpolation in latent space.
- No formal identifiability result is provided for the learned physical law. Accurate prediction does not establish that gravity or other parameters are uniquely represented; different latent parameterizations may yield equivalent rollouts. The conditions under which physical parameters are identifiable remain open.
Practical Applications
Immediate Applications
The paper’s strongest near-term value is as a trainable latent world-modeling workflow for simulated environments and controlled robotic experiments. The reported gains are demonstrated in MuJoCo and under variations of a single physical parameter, so immediate deployment should be understood as application in simulation, benchmarking, and carefully instrumented robotics rather than unrestricted real-world autonomy.
- Long-horizon prediction for robotics simulation and benchmarking
- Sector: Robotics, simulation, autonomous systems.
- SG-JEPA can replace one-step latent predictors in simulation pipelines where accurate multi-step forecasts are needed, such as projectile interception, collision prediction, robot-arm manipulation, and contact-rich control.
- A practical workflow would be:
- 1. collect image-action trajectories over a limited range of physical parameters;
- 2. train a gravity- or parameter-conditioned SG-JEPA model;
- 3. evaluate open-loop rollouts at longer horizons;
- 4. use the latent predictions for planning or policy training.
- Its recursive rollout loss is particularly suitable for identifying models that remain stable when their own predictions are fed back, rather than models that perform well only under teacher forcing.
- Dependencies: The environment must be sufficiently represented by visual observations and action histories; the relevant physical parameter must be known or estimated; performance outside the training range may degrade when the test parameter is poorly covered.
- Gravity-conditioned robot manipulation policies
- Sector: Industrial robotics and laboratory automation.
- The paper demonstrates that diffusion policies trained on frozen SG-JEPA features improve performance on catching, paddling, and ball-to-basket tasks. The same architecture could support robot behaviors involving moving objects whose trajectories vary with payload, workspace orientation, or effective gravity.
- Potential products or tools include a
physics-conditioned visuomotor policymodule for: - catching moving parts;
- intercepting objects on conveyor systems;
- maintaining repeated contact with an object;
- adapting manipulation timing to altered motion dynamics.
- A receding-horizon workflow—predicting a short action block, executing only part of it, and replanning from new observations—can reduce the risks of model error.
- Dependencies: The reported success rates remain modest in absolute terms for some tasks, and the experiments are simulated. Real deployment would require camera calibration, latency compensation, safety constraints, hardware-in-the-loop validation, and adaptation to friction, actuator dynamics, and unmodeled contacts.
- Simulation-to-simulation transfer across physical conditions
- Sector: Digital twins, engineering simulation, game physics, robotics.
- SG-JEPA can be trained on a narrow distribution of gravity values and evaluated on a wider range. This enables rapid testing of policies or designs under conditions not explicitly included in the original training set.
- Example workflows include:
- testing robot controllers under altered gravity in a simulator;
- evaluating vehicle or drone behaviors across environmental parameters;
- generating synthetic training data for unusual physical regimes;
- stress-testing planners against weak- or strong-gravity scenarios.
- The linear feature analysis provides a practical diagnostic: estimate whether the training distribution provides adequate coverage of the target physical regime before trusting extrapolated predictions.
- Dependencies: The physical law must be sufficiently shared across training and test conditions. The paper does not establish reliable transfer across arbitrary changes in friction, mass, geometry, contact mechanics, or dynamics with discontinuous regime changes.
- Model selection for world models
- Sector: Machine learning engineering and MLOps.
- The paper suggests replacing one-step validation with a multi-part evaluation suite that includes:
- teacher-forced local prediction error;
- free-running rollout error;
- error as a function of horizon;
- performance across held-out physical parameters;
- downstream closed-loop control success.
- This can become a reusable benchmark or evaluation dashboard for selecting visual world models. The key practical insight is that a small local prediction advantage can become a substantial long-horizon advantage after recursive feedback.
- Dependencies: Physical-state probes or other task-specific evaluators are needed to translate latent errors into meaningful quantities. Latent-space similarity alone is insufficient.
- Efficient representation learning for predictive control
- Sector: Computer vision, reinforcement learning, robotics.
- The findings indicate that much of SG-JEPA’s benefit comes from the encoder learning features that preserve dynamically relevant information, rather than solely from the choice of GRU or state-space predictor.
- Practitioners can therefore use recursive latent training to learn compact visual representations for downstream policies, potentially reducing the need to retrain a large policy whenever the control task changes.
- A frozen encoder followed by lightweight task-specific policy heads could support multiple tasks such as interception, tracking, and manipulation.
- Dependencies: Transfer is not uniform across object shapes; the paper reports weaker transfer for rotational dynamics and more complex geometries. Representation reuse should therefore be validated per task and object class.
- Sparse-data adaptation to new operating conditions
- Sector: Industrial automation and adaptive control.
- The reported post-training experiment suggests that updating on a small set of episodes at several new parameter values can improve interpolation to unseen values more effectively than adapting only to one target value.
- A practical calibration procedure would collect demonstrations at a sparse support set of operating conditions, such as low, nominal, and high payload or motion regimes, then fine-tune the model before deployment.
- Dependencies: The new conditions must be related by a shared parameterized law. The paper only demonstrates this for gravity-like variation and does not establish how much real-world data is required.
- Educational and research tools for learning physical dynamics
- Sector: Education and academic research.
- SG-JEPA can serve as the predictive core of an interactive laboratory in which students vary gravity and observe how a learned model predicts trajectories, collisions, or control actions.
- Researchers can use the released-style MuJoCo setup to study:
- latent representations of physical laws;
- error accumulation in autoregressive models;
- parameter-conditioned prediction;
- differences between teacher forcing and free rollout.
- Dependencies: Educational use would require a clean implementation, reproducible datasets, visualization tools, and clarification of the paper’s incomplete or malformed source material.
Long-Term Applications
The broader applications require validation beyond simulated gravity variation, especially with real sensors, unknown parameters, nonideal contacts, and safety-critical control. They are plausible extensions of the method rather than demonstrated deployments.
- Robots that adapt across planets or unusual gravity environments
- Sector: Space robotics and aerospace.
- The paper explicitly motivates transfer from Earth-like to Martian or other gravity conditions. A mature SG-JEPA-style system could support landing-site manipulation, rover interaction, object catching, or construction tasks under altered gravity.
- A future system would condition the world model on gravity and other environmental variables, then use the predicted latent dynamics for receding-horizon planning.
- Dependencies: Real planetary environments introduce dust, uncertain terrain, communication delays, sensor degradation, unknown friction, variable contact mechanics, and limited opportunities for data collection. Gravity conditioning alone will not address these factors.
- General-purpose parameter-conditioned world models
- Sector: Robotics, autonomous vehicles, engineering, industrial control.
- The scalar gravity input could be generalized to a vector of physical variables, including mass, friction, damping, wind, fluid properties, actuator limits, and surface compliance.
- Potential tools include a
physics parameter APIfor world models, allowing planners to query counterfactual futures under different conditions before selecting an action. - Such models could support rapid controller retuning when a robot changes payload, operates on a new surface, or encounters altered environmental conditions.
- Dependencies: The model must learn identifiable parameters from observations or receive reliable external estimates. The paper lists vector-valued variables and direct parameter inference as unresolved directions.
- Online system identification from visual observations
- Sector: Autonomous systems and adaptive control.
- A future extension could infer gravity or other dynamics parameters directly from a short observation history rather than requiring them as an input.
- The system could maintain a belief over possible dynamics, roll out each candidate latent model, and choose actions that are both useful and informative.
- Applications include robots that estimate payload mass, detect changes in surface friction, or identify altered actuator behavior during operation.
- Dependencies: Reliable uncertainty estimation is essential. The current paper assumes that gravity is supplied to the model and does not demonstrate online identification or calibrated confidence.
- Model-based planning with learned latent semigroups
- Sector: Planning, reinforcement learning, autonomous vehicles, robotics.
- The semigroup formulation suggests using repeated latent transitions as a compact planning operator. A planner could compare candidate action sequences without reconstructing full future images, reducing computational cost.
- Possible products include:
- latent model-predictive control;
- physics-aware trajectory optimizers;
- counterfactual action evaluators;
- long-horizon safety monitors.
- The model could be paired with diffusion policies, sampling-based planners, or value functions in a hybrid control stack.
- Dependencies: Long-horizon latent accuracy does not guarantee safe or physically valid behavior. Planners would need uncertainty bounds, constraint handling, collision guarantees, and recovery policies.
- Digital twins for industrial process and equipment monitoring
- Sector: Manufacturing, energy, logistics, and predictive maintenance.
- A parameter-conditioned latent dynamics model could serve as a compact digital twin for forecasting equipment behavior under changing loads or operating conditions.
- Potential workflows include detecting deviations between predicted and observed trajectories, simulating maintenance scenarios, and evaluating control changes before applying them to physical equipment.
- The paper’s distinction between local error and recursive error is relevant for detecting systems that appear accurate over short intervals but become unreliable over extended forecasts.
- Dependencies: Industrial processes may involve high-dimensional thermodynamics, delays, hidden variables, and stochastic failures. Extensive domain-specific data and uncertainty calibration would be required.
- Physics-aware synthetic data generation
- Sector: Computer vision, robotics, simulation, and training-data production.
- Once validated across richer dynamics, SG-JEPA-like models could generate latent trajectories or guide simulation parameter sampling for rare conditions that are expensive to collect.
- This could help produce training data for unusual collision geometries, extreme environmental conditions, or underrepresented robot configurations.
- Dependencies: The model must preserve events such as collisions and contacts, where the paper notes that small errors can change transition branches. Synthetic data should be validated against real trajectories rather than assumed to be physically correct.
- Safety and robustness testing for autonomous agents
- Sector: Policy, transportation, robotics safety, and certification.
- Regulators and internal safety teams could use parameter sweeps and long-horizon rollouts to test whether an autonomous system remains reliable under plausible changes in environmental dynamics.
- A standardized test protocol could report:
- performance inside and outside the training parameter range;
- degradation with rollout horizon;
- sensitivity to incorrect parameter inputs;
- downstream task success and failure modes.
- Dependencies: Simulation results cannot substitute for certification or real-world testing. Safety claims would require validated simulators, formal constraints, uncertainty estimates, and evidence that simulated failures correspond to physical failures.
- Generalization to deformable objects, fluids, and complex contact dynamics
- Sector: Healthcare robotics, warehouse automation, soft robotics, and industrial manipulation.
- The approach could eventually be applied to tasks such as handling cloth, packaging, surgical tools, or liquid containers, where long-horizon prediction and contact-aware control are important.
- A future model might combine SG-JEPA-style recursive latent training with object-centric representations and explicit event modeling.
- Dependencies: The current experiments use relatively structured rigid-body environments. Deformability, occlusion, partial observability, stochastic contact, and topology changes may violate the assumptions behind the current representation and linear analysis.
- Policy design for responsible deployment of learned world models
- Sector: AI governance and public policy.
- The paper supports a policy principle that autonomous systems should be evaluated not only on in-distribution accuracy but also on physical-parameter coverage and long-horizon closed-loop behavior.
- Procurement or safety standards could require vendors to document:
- which environmental parameters were present during training;
- the supported extrapolation range;
- performance under parameter mismatch;
- the rate of failure accumulation over time;
- whether the model uses supplied physical parameters correctly.
- Dependencies: Such standards require agreed benchmarks, reproducible test environments, and domain-specific definitions of acceptable risk. The paper’s results are not yet sufficient to define universal thresholds.
- Everyday interactive physics applications
- Sector: Consumer software, games, education, and accessibility.
- A validated version could power interactive applications that predict how objects move under altered conditions, such as educational physics tutors, game agents, augmented-reality simulations, or assistive interfaces that anticipate object motion.
- For example, an educational application could let users change gravity, launch objects, and compare model predictions with observed trajectories.
- Dependencies: Consumer-facing systems would need fast inference, robust camera tracking, intuitive uncertainty displays, and reliable handling of everyday objects and occlusions. The current paper does not demonstrate operation on uncontrolled household scenes.
Glossary
- Adaptive Layer Normalization (AdaLN): A normalization method whose scale and shift parameters are conditioned on additional inputs such as actions. “Adaptive Layer Normalization (AdaLN)”
- autoregressive rollout: Sequential prediction in which each predicted state is fed back as input for later predictions. “jointly training an encoder and predictor through an autoregressive latent rollout”
- causal Transformer: A Transformer that restricts attention so each position can use only preceding positions. “a causal Transformer predictor”
- closure error: Error caused by a representation discarding information needed to predict the next state. “ are the training-average predictor and closure errors.”
- conditional mean defect: The discrepancy between the true conditional expected next representation and the predictor’s estimate. “its conditional-mean defect is”
- counterfactual: An evaluation in which an input condition is deliberately changed while other factors remain fixed. “an evaluation-time counterfactual”
- discrete semigroup: A collection of repeatedly composed transformations satisfying an associative composition law. “the repeated updates form a discrete semigroup”
- diffusion policy: A policy that generates actions by iteratively denoising a randomly perturbed action sequence. “we train independent diffusion policies”
- dynamical regime: A qualitatively distinct pattern of system behavior under particular physical conditions. “dynamical regime changes at events such as collisions”
- finite law basis: A finite set of basis functions used to express how a physical transition operator varies with a parameter. “the projected and learned operators share this finite law basis”
- free-rollout error: Prediction error accumulated when a model repeatedly uses its own previous predictions. “the free-rollout error ”
- gravity-conditioned: Designed to receive gravity as an input so that its behavior can depend on the gravitational parameter. “a gravity-conditioned extension of LeWM”
- history window: A fixed-length sequence of previous states or observations supplied to a temporal model. “inserting each prediction into the next length- history window”
- intertwining defect: A measure of how poorly two dynamical systems’ transformations correspond under a representation map. “a semigroup-intertwining defect theorem”
- latent representation: A learned, typically lower-dimensional encoding of data that preserves information useful for prediction or control. “learn a compact latent representation of the world”
- law coverage: The extent to which the training distribution represents a test physical parameter value. “which measures how well the test gravity value is covered by the training distribution”
- long-horizon rollout: Repeated model prediction over many future time steps. “SG-JEPA's long-horizon OOD advantage”
- MuJoCo: A physics simulation engine commonly used for robotics and model-based control research. “We generate eight datasets in MuJoCo”
- normalized mean-squared error (NMSE): Mean-squared prediction error scaled using a normalization convention, often to make values comparable across variables. “where denotes the normalized mean-squared error”
- open-loop prediction: Prediction performed without correcting the model using subsequent real observations. “reduces open-loop prediction error by up to ”
- operator: A mathematical transformation that maps one function, vector, or state representation to another. “the projected and learned operators share this finite law basis”
- out-of-distribution (OOD): Referring to inputs or conditions not represented, or insufficiently represented, in the training data. “evaluate on a wider grid that extends far beyond it”
- predictively closed: Describing a representation that contains all information needed to predict the conditional mean of the next representation. “the representation is predictively closed at gravity ”
- receding-horizon loop: A control strategy that repeatedly plans a sequence of actions, executes only an initial portion, and replans using new observations. “The policy runs in a receding-horizon loop using real observations.”
- recursive amplification: The growth of an initial prediction discrepancy as it is propagated through repeated model updates. “its recursive amplification under rollout”
- residual layer: A neural-network layer that adds a learned transformation to its input, creating a skip connection. “The GRU predictor defaults to 3 residual layers of width 512.”
- row-orthonormal: Describing a matrix whose rows are mutually orthogonal unit vectors. “ is row-orthonormal”
- selective state-space block: A state-space neural component whose state-update behavior is dynamically selected based on the input. “a Mamba/S6-style selective state-space block”
- SIGReg: A latent-space regularizer that encourages random one-dimensional projections of representations to follow a standard Gaussian distribution. “SIGReg acts only on encoded latents”
- state-space model (SSM): A model that represents temporal dynamics through an evolving hidden state and state-transition equations. “a Transformer, a GRU, and a state-space model (SSM)”
- teacher forcing: Training or evaluation in which the model receives the true previous state rather than its own prediction. “Unlike LeWM's one-step teacher-forced objective”
- temporal convolution: A convolution operation applied along the time dimension to process sequential data. “the action encoder, a temporal convolution followed by a SiLU MLP”
- transition law: The rule governing how a system state changes from one time step to the next. “under a fixed frame-to-frame transition law”
- zero-shot generalization: Successful performance on conditions not used during task-specific training, without additional adaptation. “demonstrating zero-shot physics generalization”



