Research
Latent Action as Intention Enables Efficient Future Imagination for World Action Models
Overview Research area: Robotics — world action models (WAMs) for visuomotor manipulation, combining action learning with predictive modeling of future visual dynamics. Technical level: Advanced. The
- arXiv
- 2608.24882
- Published
- 2026-08-25
- Authors
- Xiang Li, Yupeng Zheng, Songen Gu, Huailiang Ma, Feng Yu, Xian Nie, Shanshuai Yuan, Yujie Zang, Weize Li, Shuai Tian, Moyang Liu, Ya-Qin Zhang, Wenchao Ding
AI summary
Overview
- Research area: Robotics — world action models (WAMs) for visuomotor manipulation, combining action learning with predictive modeling of future visual dynamics.
- Technical level: Advanced. The paper assumes familiarity with diffusion/flow-matching policies, discrete codebook tokenizers, vision transformers, and VLA/WAM terminology.
- Scope: The paper introduces LAWA, a WAM that represents future intentions as compact latent actions instead of generated future video frames, and evaluates it on RoboCasa, LIBERO-Plus, and four real-world manipulation tasks.
What This Paper Is About
World action models predict how a scene will evolve to help a robot decide what to do, but generating those future observations at test time is slow. Simply deleting future prediction for speed (the Fast-WAM approach) makes models generalize worse, especially when robot demonstrations are scarce or the environment shifts. LAWA's goal is to keep a test-time future representation — a sequence of latent actions interpreted as "future intentions" — while avoiding the cost of generating future observations.
Key Contributions
- LAWA architecture: A WAM that treats compact latent actions as an operational representation of future intentions, retaining test-time future imagination without generating future observations. At inference it discards the future-video branch and jointly denoises latent intentions and action chunks.
- Mask-supervised latent action tokenizer: A discrete tokenizer built on ViPRA, enhanced by action-free pre-training, with an auxiliary SAM-style mask-prediction objective whose targets are generated automatically with SAM 2, biasing codes toward hands, manipulators, and interaction regions.
- Scalable action-free egocentric pre-training: A pipeline that co-trains the tokenizer and forward decoder on action-free robot and egocentric video, with per-source frame sampling to align motion-speed distributions and weighted rebalancing so robot videos constitute approximately 20% of expected training samples.
- Empirical validation across simulation and real hardware: State-of-the-art RoboCasa results, competitive zero-shot LIBERO-Plus results, real-world results on four tasks, and ablations isolating latent actions, egocentric pre-training, and auxiliary loss choice.
Main Findings
- RoboCasa state-of-the-art: LAWA reaches 65.6% average success in the few-shot setting and 80.8% with full data across 24 tabletop tasks, exceeding matched Fast-WAM by 9.6 and 4.5 points. Matched Joint-WAM reaches 64.1% and 78.8%, so LAWA attains comparable success while requiring 42.9% lower inference latency. LAWA also exceeds DIAL by 7.3 points in the few-shot setting.
- Few-shot context: The 65.6% figure corresponds to 100 demonstrations per task (a 10% subset), while the full setting uses 24,000 trajectories (1,000 per task). Average success rates are reported over 50 trials per task.
- Zero-shot LIBERO-Plus: LAWA reaches 74.4% overall, above matched Fast-WAM's 60.0% by 14.4 points, above matched Joint-WAM's 70.4% by 4.0 points, and above OpenVLA-OFT's 69.6% by 4.8 points. It achieves higher success across all six non-linguistic observation- and proprioceptive-level perturbations, with gains of 44.3 points on camera-viewpoint shifts and 27.5 points on sensor-noise shifts.
- Latent actions are functionally used: Perturbing only the model-visible latent-action state at inference drops full-data RoboCasa success from 80.8% to 52.2% under Gaussian noise (σ = 1.0) and to 56.4% under temporal shuffling, showing action generation depends on both the content and the temporal ordering of the latent sequence.
- Egocentric pre-training helps LAWA most: Action-free egocentric pre-training improves Fast-WAM by 1.5 and 1.7 points, Joint-WAM by 1.0 and 0.5 points, and LAWA by 5.9 and 4.5 points in the few-shot and full settings. Without it, LAWA trails Joint-WAM by 3.4 and 2.0 points — latent-action prediction alone is not uniformly stronger than explicit future-observation prediction.
- Scalability with video volume: Increasing the fraction of action-free egocentric videos from 10% to 100% raises LAWA from 77.2% to 80.8% (full data) and from 61.6% to 65.6% (few-shot), gains of 3.6 and 4.0 points, while Fast-WAM improves by only 1.0 and 1.1 points.
- Latency trade-off: Per action-chunk latency on one NVIDIA A800 GPU is 196.5 ms for Fast-WAM, 593.1 ms for Joint-WAM, and 338.5 ms for LAWA.
- Ablation components are complementary: Adding latent actions alone improves the Fast-WAM baseline by 5.2 and 1.7 points in the few-shot and full settings; egocentric pre-training adds a further 5.1 and 3.0 points. For auxiliary supervision, optical flow prediction degrades performance by 1.3 and 0.7 points relative to no auxiliary loss, whereas mask prediction improves it by 0.8 and 1.5 points.
- Real-world results: On a UFACTORY xArm7 with a RealSense D435 base camera and two fisheye wrist cameras, LAWA outperforms Fast-WAM by 31.2, 36.3, and 33.8 points at 25%, 50%, and 100% of demonstrations. With 25% of data (50 trajectories per task), LAWA averages 40.0%, surpassing Fast-WAM's 33.8% with the full training set. In the full-data setting the largest margins appear on long-horizon tasks, where LAWA leads Fast-WAM by 45 points on both Block and Laboratory; on fine-grained assembly it leads by 20 points on Gear and 25 on Battery.
- Qualitative attention behavior: On RoboCasa WineToCabinetClose, Fast-WAM distributes attention broadly over the countertop and background and fails, while LAWA tracks the manipulated object and task-relevant region and completes the task.
Methodology in Plain English
The pipeline has two stages.
First, the authors build a "tokenizer" that watches short sequences of video frames and compresses the change between consecutive frames into a small set of discrete codes. A DINOv2 encoder extracts patch features from each frame, a non-causal transformer contextualizes them, and the difference between consecutive frame features is compressed into L tokens that are snapped to their nearest entry in a learned codebook. A forward decoder must reconstruct the next frame from the previous frame plus the latent code, forcing the code to carry transition information that cannot be guessed from static appearance. To stop the tokenizer from focusing on large static scenery instead of the small interactions that decide task success, an auxiliary mask decoder predicts hand or robot-manipulator masks, with targets generated automatically by SAM 2 so no manual annotation is required. This tokenizer is pre-trained on action-free video from both robot data and egocentric datasets, with frame sampling aligned across sources by motion speed and weighted resampling so that roughly 20% of expected training samples come from robot video.
Second, the pre-trained tokenizer is frozen and used to produce target latent-action sequences. Three experts — video, latent action, and action — are coupled through joint attention with a structured mask: current-observation tokens cannot see the future, noisy future-video tokens attend to all video tokens, latent action tokens attend only to the current observation and the latent action sequence, and action tokens attend to the current observation plus the latent and action sequences. This lets the action expert use the evolving future intention without leaking future-video information. Training uses flow matching on all three modalities. At inference, the future-video branch is dropped entirely and only the latent action and action experts are denoised, with current-observation features cached, so iterative denoising is cheap. The discrete codebook defines the training targets, but the latent expert denoises in the continuous embedding space without nearest-neighbor projection.
Why This Matters
The paper reframes a design trade-off that has been treated as binary: either pay for test-time visual generation (better generalization, high latency) or remove it (fast, worse generalization). It argues the third option — imagine the future in a compact latent action space — preserves the generalization benefit at a fraction of the cost, and it supports that claim with controlled comparisons against matched Fast-WAM and Joint-WAM implementations, plus evidence that the latent pathway is genuinely used rather than ignored.
Real-world applications:
- Assembly and fine-grained insertion, such as orienting a gear so its teeth mesh or pressing a battery fully into a slot, where small interaction regions determine success.
- Long-horizon multi-stage manipulation, such as block rearrangement or laboratory procedures, where knowing task progress matters more than predicting exact pixels.
- Low-data robot deployment, where a facility has only tens of demonstrations per task (the paper shows LAWA with 25% of data beating Fast-WAM with 100%).
- Learning from internet-scale action-free video, since the tokenizer pre-trains without action labels and improves as the video corpus scales from 10% to 100%.
Industry relevance: the latency measurement (338.5 ms versus 593.1 ms per action chunk on an A800) is directly relevant to real-time control, and the ability to convert cheap, unlabeled egocentric video into downstream policy gains addresses a central cost bottleneck in robot data collection. The 42.9% latency reduction at comparable success to Joint-WAM makes latent-action future imagination a plausible production-side alternative to full video generation.
Future Directions
- Semantic interpretation of the learned codes. The authors explicitly frame the mask objective as a manipulation-oriented inductive bias rather than proof of what the latent codes mean; characterizing the semantics of the discrete codebook remains open.
- Extending the matched-video comparison. The paper notes that the matched-video comparison uses the same clips and preprocessing, but each paradigm has its own native objective, trainable modules, and parameter counts, leaving room for tighter controlled studies.
- Scale of action-free pre-training. The 10%-to-100% scaling curve shows continued improvement for LAWA but not Fast-WAM; how far that trend extends with larger egocentric corpora is unresolved.
- Broadening beyond the evaluated tasks. Evaluation covers RoboCasa's 24 tasks, LIBERO-Plus perturbations, and four real-world tasks on one xArm7 platform; transfer to other embodiments, deformable objects, and multi-robot settings is untested.
Target Audience
Robotics and embodied-AI researchers working on visuomotor policies, world models, and video pre-training for manipulation; engineers building real-time robot control stacks who care about the latency cost of predictive components; and graduate students already comfortable with diffusion or flow-matching policies who want a clear treatment of how latent actions can substitute for explicit future-observation generation. Readers without background in action chunking, codebook tokenizers, or joint-attention architectures will find the method sections demanding.
Authors’ abstract
World action models (WAMs) improve robot control by modeling how observations evolve, but generating future observations at test time incurs substantial latency. Fast-WAM removes this process for efficiency; however, our matched implementations show lower generalization for Fast-WAM than for future-aware alternatives, especially with scarce robot demonstrations and in out-of-distribution scenarios. To bridge this gap, we introduce **LAWA**, a WAM architecture that uses compact latent actions as an operational representation of future intentions, enabling efficient test-time future imagination without generating future observations. Specifically, a discrete tokenizer enhanced by action-free pre-training produces manipulation-centric codebook targets. LAWA jointly denoises a continuous latent state anchored to these targets with executable action chunks while omitting the future-video branch at inference. On RoboCasa, LAWA achieves state-of-the-art average success rates of 65.6% and 80.8% in the few-shot and full data settings, improving over the matched Fast-WAM baseline by 9.6 and 4.5 points, respectively. It also preserves the performance level of the matched Joint-WAM variant while requiring 42.9% lower inference latency. LAWA also demonstrates competitive zero-shot robustness on LIBERO-Plus and superior performance on real-world tasks. These results show that future imagination need not be discarded: retaining it with compact latent actions yields an effective trade-off among performance, generalization, and latency. Code and models will be released.