Think Like a World Model, Act Like a VLA: Distilling World-Model Representations into Compact Robot Policies
Vision-Language-Action models map observations to actions with no objective that accounts for how the world actually responds, so their robustness is bounded by data coverage; world models carry exactly that missing objective but cost seconds per decision and cannot sit in a control loop. This paper argues the two can be separated: physical grounding lives in a world model's internal features, while future generation is merely the objective that produced those features, so the grounding can be inherited and the generative machinery discarded. One feature-alignment term is added to ordinary VLA training, with a frozen world model run once over the training frames and cached; no teacher is loaded during training, the projector is dropped afterwards, and the deployed policy is identical to the undistilled baseline at 32 ms and 1.86 GB on a consumer RTX 5090. A 0.8B student reaches 97.9% on LIBERO, lifts RoboCasa-GR1 humanoid manipulation from 48.2% to 50.5%, and transfers to real single-arm and bimanual hardware.
Paper · arXiv:2609.24682Vision-Language-Action models are trained to map observations to actions. Nothing in that objective accounts for how the world responds to those actions, which is why their robustness is essentially a function of data coverage: inside the distribution they can be excellent, and just outside it they have no notion of consequence. World models carry precisely the missing objective — they are trained to predict what happens next, and are better grounded for it — but rolling a future forward costs seconds per decision, which rules them out of any control loop.
Core Innovation
The paper’s argument is that the two capabilities were never inseparable. What a world model knows about physical scenes lives in its internal features; generating the future is just the objective that produced those features. So the grounding can be inherited while the generative machinery is left behind — world-model thinking without world-model acting.
- One alignment term on ordinary VLA training. A frozen world model is run over the training frames once and its features cached; the student simply learns to agree with that cache while continuing to train as a normal VLA.
- Attribution kept clean. No teacher is loaded during training, the projector is discarded after it, and the deployed policy is identical to the undistilled baseline. The authors report the result at 32 ms and 1.86 GB on a consumer RTX 5090, so every gain is attributable to the representation rather than to added capacity or test-time compute.
Results
- A 0.8B student reaches 97.9% on LIBERO.
- RoboCasa-GR1 humanoid manipulation improves from 48.2% to 50.5%.
- The same objective carries over to real hardware, on both a single-arm and a bimanual platform.
- The gain survives changes of student scale, backbone, alignment layer, and teacher, which is the signal that matters: it points to a broad representational prior rather than a fragile alignment between two particular networks.
Limitations
LIBERO is a heavily saturated benchmark, so 97.9% is the least informative number in the abstract; the load-bearing evidence is the 2.3-point RoboCasa-GR1 gain and the hardware transfer. Absolute improvements are modest, and the abstract gives no success rates for the real-robot experiments, no ablation of the alignment weight or of which layers are aligned, and no comparison against alternative distillation targets beyond swapping teachers. The method cannot exceed the quality of the frozen world model it distills from, it requires running that model once over the entire training set (a real caching cost that the abstract does not quantify), and it improves the representation rather than the action expert, so tasks whose difficulty is in the action head would not obviously benefit. Long-horizon behavior, multi-task interference, and language generalization are not characterized, and there is no evidence on locomotion or whole-body control.
Industry Implications
The recipe is attractive because it is nearly free at deployment: no extra latency, no extra memory, no architecture change, and no teacher running on the robot. For teams shipping manipulators at the edge, where a policy must fit a small memory and latency budget, a representation-level improvement is far more useful than a larger model — and it composes with whatever policy architecture is already in production. The honest caveats are that it depends on having a suitable pretrained world model to distill from, and that the measured gains, while real, are incremental. Its clearest fit is as a cheap regularizer for an existing VLA training pipeline rather than as a new policy class.