[CVPR 2026] WoG: Solving the Precision-Efficiency Trade-off in World Modeling for Action Generation
World Guidance: World Modeling in Condition Space for Action Generation
WoG (World Guidance) is a novel Vision-Language-Action (VLA) framework that achieves state-of-the-art performance in robotic manipulation by mapping future observations into a compact "condition space." It bridges the gap between redundant world models and coarse latent action models, outperforming baselines like OpenVLA and UniVLA in both simulation and real-world experiments.
TL;DR
World Guidance (WoG) is a transformative VLA framework that moves away from predicting "what the future looks like" (pixels) towards "what conditions the future imposes" (latent features). By injecting compressed future observations into the action inference pipeline during training, it allows a robot to "foresee" dynamics—like the way a towel will deform or how a microwave door swings—leading to a 69.4% success rate in simulation and superior generalization in real-world deployments.
The "Information Bottleneck" in Robotics
The robotics community is currently split between two paradigms for world modeling:
- Exemplar World Models: These try to predict future video frames. While rich in detail, they are computationally heavy and full of "noise" (like background textures) that doesn't help with moving a robotic arm.
- Latent Action Models: These compress actions into abstract tokens. While efficient, they often lose the fine-grained spatial information needed for delicate tasks like "Stacking a Green Block."
WoG's Insight: The optimal predictive space for a robot isn't a picture; it's a condition. If we know the features of the future that are sufficient to generate the next action, we should predict those features instead of the whole image.
Methodology: The Two-Stage "Self-Guidance"
WoG employs a clever two-stage curriculum to teach the model how to guide itself:
Stage I: World Guidance (Learning the Condition)
The framework uses frozen foundation models (DINOv2 for semantics and Wan VAE for temporal dynamics). A trainable Q-Former acts as an "information filter," querying these models to extract only what matters for the action. These features are injected into the DiT (Diffusion Transformer) action head.

Stage II: World Inference (Internalizing the Guidance)
At test time, you don't have the "future." Therefore, in Stage II, the encoder is frozen, and the VLA backbone is trained to predict the condition representation from the current image. The model learns to imagine the necessary "guidance" internally before generating the action.
Experimental Results: Precision & Generalization
WoG was tested in the SIMPLER environment across tasks like "Pick Coke" and "Move Near." It consistently outperformed heavyweights like Google's π0 and OpenVLA.
| Model | Overall Success (Google Robot) | Overall Success (WidowX) |
|---|---|---|
| OpenVLA | 33.8% | 1.1% |
| π0 | 56.8% | 27.1% |
| WoG (Ours) | 69.4% | 63.5% |
Real-World Robustness
In physical tests involving a UR5 arm, WoG excelled in Out-of-Distribution (OOD) settings. When the background or lighting was changed, WoG's success rate remained stable, whereas traditional video-prediction policies (VPP) collapsed. This proves that WoG's "condition space" is invariant to visual nuisances.

Scaling with Human Data
Perhaps the most exciting result is WoG’s ability to learn from unlabeled human video. By predicting the conditions of human movement (which are embodiment-agnostic) rather than the exact robot joint angles, WoG can scale using thousands of hours of VR-collected human data. This led to a 42% performance jump on Pick & Place tasks when augmented with Universal Manipulation Interface (UMI) data.
Critical Analysis & Conclusion
Takeaway: WoG effectively demonstrates that "World Modeling" for robots shouldn't be about generating pretty videos; it should be about predicting the minimal sufficient latent conditions for a task.
Limitations: While WoG is excellent at trajectory planning, it still faces challenges in tasks requiring extreme spatial resolution (e.g., millimeter-precise block stacking). This suggests that the next frontier is combining WoG's dynamic foresight with specialized Spatial Foundation Priors to handle fine-grained geometry.
WoG marks a significant step toward a "Self-Guided" VLA that can anticipate the physical consequences of its actions as efficiently as a human does.
