Optional Frontier Survey: LoopWM, WAM, and Architecture Selection
Common Misconceptions
"A more capable dynamics model needs more parameters." LoopWM's entire premise is that depth and parameter count are separable: the same parameter-shared Recurrent Block can loop more times on a hard transition and fewer on an easy one, buying prediction accuracy from additional computation rather than additional weights. Iterative latent depth is a third scaling axis alongside model size and data volume, not a restatement of either.
"A world model and a policy are necessarily two separate modules, that is what makes something a world model architecturally." L01's contract defined a world model by its interfaces, state estimation, transition, emission, prediction, not by which modules implement them or how many modules there are. WAM is the sharpest demonstration of that point: the same forward pass that predicts future frames also outputs motor commands, with no separate policy network at all. Whether the interfaces live in one module or several is an engineering choice, not part of the definition.
Architecture Eight: Looped Dynamics Models (LoopWM)
Representative systems: LoopWM (Looped World Models, Lu et al., 2026)
The architecture families above mostly share an implicit assumption about the dynamics predictor's depth: longer-horizon, higher-fidelity simulation requires a deeper network, and a deeper network means more parameters, higher inference cost, and a greater tendency to accumulate error over long rollouts. LoopWM breaks the assumption that "depth equals parameter count": an encoder

Lu et al. (2026) LoopWM's full architecture: the observation and action are each compressed by an encoder
Alongside spectral stabilization, LoopWM defers decoding to the final step of a rollout sequence (deferred decoding, which lowers compute cost and produces a latent structure better suited to long-horizon planning), and uses a learned exit gate for adaptive computation: the loop halts early once the gate signal crosses a threshold
Learning paradigm: interactive, an action-conditioned latent dynamics predictor that can directly replace an RSSM or standard Transformer dynamics model as the backbone.
Limitations: the spectral stabilization constraint only applies to the linear retention term in the update rule. The nonlinear residual term has no equivalent stability guarantee. The paper is validated mainly on text-based interactive environments and has not yet been thoroughly validated on pixel-level continuous control or real robots.
Architecture Nine: From World Model to World Action Model (WAM)
Representative systems: Motus (2025, Bi et al.), DreamZero / WAM (NVIDIA 2026)
Genie demonstrated that discovering action representations implicitly from video is feasible. The WAM family picks up this idea and pushes further: do the world model and the policy model actually need to be two separate modules? Picture a robotic arm shown a short video of itself successfully picking up a cup, frame by frame, before it ever moves: WAM asks whether a model trained to predict that video can, in the same forward pass, also output the motor commands that make it happen.
| Paradigm | Input | Output |
|---|---|---|
| World Model | observation + action | future observation or state |
| VLA (Vision-Language-Action model) | observation + language instruction | action |
| WAM | observation + language instruction | future observation + action |
The traditional World Model takes actions as input and predicts future states, functioning as a simulator sitting alongside the policy. VLA bypasses the world model entirely, predicting actions directly from visual observations and language instructions as an end-to-end reactive policy. WAM attempts to do both simultaneously: predict the future state of the world while also predicting the action to take. The visual evolution of the world becomes dense supervision for action learning rather than merely an auxiliary task. Contrast this with sparse supervision, where a reward arrives only at the end of an episode: here every frame of video provides a gradient signal, so the learning signal is richer and more frequent.
Motus (Bi et al., 2025) reuses the latent action idea from Genie's LAM module, but pushes it toward real robot control instead of interactive video generation. Continuous latent actions are automatically extracted from heterogeneous video data, including large quantities of unannotated human video and robot demonstrations. A small amount of labeled data then aligns those latent actions to real robot control. The core contribution of Motus is combining two steps, discovering latent actions from unannotated video and transferring them to real control via a small alignment dataset, into a single unified framework, with cross-embodiment transfer validated on dexterous manipulation and locomotion tasks.
DreamZero / WAM (NVIDIA 2026) uses a pretrained video generation backbone to simultaneously predict future world states and robot actions, treating video sequences as dense supervision. NVIDIA's WAM (World Action Models) paper explicitly proposes "WAM as a zero-shot policy": a pretrained video generation model can serve directly as a policy inference engine without additional RL fine-tuning:
| Paradigm | Supervision signal | Loss |
|---|---|---|
| VLA | observation sequence as input. Action sequence as output | action loss only |
| WAM | observation sequence as input. Future frames and actions as outputs | video reconstruction loss + action loss, mutually reinforcing |
Learning paradigm: the fourth paradigm, joint learning. Video and actions are two facets of the same physical process. WAM leverages the dense physical supervision from video to let the policy learn about physical motion and action consequences, rather than performing action regression alone.
Emerging trend revealed by this line of work: the world model is no longer just a simulator sitting beside the policy. It is becoming part of the policy itself. In the traditional model-based RL framework, the world model and the policy are two separate modules. The WAM family is dismantling this separation by training a unified model that jointly captures world dynamics and decision logic. Cosmos (NVIDIA 2025) goes further still: as a general-purpose physical AI foundation model, it is pretrained on massive real-world video and then fine-tuned for downstream tasks such as autonomous driving and robotics, pushing the concept of a world model from "single-task simulator" toward "general-purpose physical world infrastructure."
Comparative Summary Table
| Architecture Family | Learning Paradigm | Core Strengths | Main Weaknesses | Typical Use Cases |
|---|---|---|---|---|
| RNN / RSSM | Interactive | Low compute, low latency | Weak long-term memory, limited generation quality | Online RL, real-time control |
| Transformer | Interactive/Observation | Strong long-range dependencies, fast parallel training | Compute scales quadratically with sequence length | Complex games, multi-step planning |
| Diffusion | Observation/Interactive | Very high visual fidelity | Slow inference, difficult to use for real-time control | Offline simulation, video generation |
| JEPA | Observation-only | Robust and efficient, ignores irrelevant noise | No pixel output, control applications not yet mature | Semantic representation pretraining |
| RWM | Interactive | Stable long-horizon rollout, policy does not drift | High compute (ensemble) | High-frequency robot control, sim-to-real |
| Spatial 3D/4D | Observation-only (mostly) | Explicit multi-view consistency, object permanence | Expensive rendering, needs multi-view or pose data | Driving perception/forecasting, precise manipulation |
| Genie | Observation-trained, interactive at inference | Supports interactive generation without action labels | latent actions not aligned with real actions | Interactive video generation, data pretraining |
| LoopWM | Interactive | Parameter-efficient, provably stable long-horizon rollout | No stability guarantee on the nonlinear term, not yet validated on pixels/real robots | Long-horizon planning, resource-constrained deployment |
| WAM | Joint learning | World prediction and action planning jointly optimized | Complex architecture, high data requirements | Embodied intelligence, dexterous manipulation |
How to Choose an Architecture?
Practical advice: start with RNN/RSSM. P02 already walks you through this step. Upgrade only when you hit a bottleneck: if long-sequence prediction accuracy keeps declining, or the task requires causal reasoning across many steps, consider switching to Transformer. If the bottleneck is specifically diverging error accumulation over long rollouts, LoopWM's spectral stabilization offers a more parameter-efficient path. Reserve Diffusion for offline scenarios. The JEPA control interface is not yet mature, but representation learning tasks have produced substantive results and are worth tracking. When you have large amounts of unannotated video but lack action labels, Genie's latent action discovery mechanism is currently the most direct entry point, though an alignment step is still needed for real control. When object permanence or multi-view geometric consistency is a hard requirement, such as driving forecasting or precise manipulation, a spatial 3D/4D representation is worth the added rendering cost. For real robotics, engineering techniques such as Self-Forcing and ensemble uncertainty are more impactful than switching architectures. Solve long-horizon stability first.