MotionWAM: Towards Foundation World Action Models for Real-Time Humanoid Loco-Manipulation
- 01Video World Models Are Now Fast Enough for Humanoid Deployment
- 02The Upper-Lower Body Split Is Architecturally Broken
- 03Egocentric Video Pretraining Is the Bottleneck, Not Action Data
- 04Semantic Priors Alone Fail at Contact-Rich Whole-Body Tasks
- 05Three-Stage Curriculum Is the Operational Training Paradigm for Foundation Humanoid Policies
TL;DR: A team from Mondo Robotics and HKUST has cracked a core bottleneck in humanoid robotics: getting world-model-based policies to run fast enough for real-time whole-body control. The result is a 30%+ performance jump over the best VLA baselines on tasks that require coordinated full-body movement — including leg-driven behaviors that hierarchical systems literally cannot execute.
1. Key Themes
Video World Models Are Now Fast Enough for Humanoid Deployment
The single biggest barrier to deploying World Action Models (WAMs) on physical humanoids wasn't accuracy — it was speed. Prior WAMs required iteratively denoising high-dimensional video-action latents, making them too slow for closed-loop humanoid balance. MotionWAM solves this with a architectural trick: instead of fully denoising future video frames, it intercepts intermediate activations from a single forward pass through the Video DiT at near-pure-noise conditions.
"We fix τ_f at the pure-noise end of the schedule (τ_f ≈ 1), so the Video DiT runs in its one-shot imagination regime: given clean conditioning z_t^0 and Gaussian noise for the future, one pass yields activations that encode where the scene is about to go, never denoising those frames. This single pass is what keeps MotionWAM real time on a closed-loop humanoid." (Section 3.2)
The result: MotionWAM runs at 4.9 Hz versus Cosmos Policy's 0.7 Hz — a 7x speedup at comparable parameter count (2.5B vs 2.0B). (Table 3)
The Upper-Lower Body Split Is Architecturally Broken
The dominant approach in humanoid robotics — a high-level manipulation policy for the arms paired with a low-level locomotion controller for the legs — is not just suboptimal, it's architecturally incapable of a whole class of tasks. When legs can only receive coarse base commands (velocity, height, orientation), they are locked out of task participation entirely.
"This forces the two halves into inconsistent action spaces and restricts the legs to balance-preserving locomotion, ruling out task-driven foot interaction such as stepping on a pedal or kicking an object." (Section 1)
MotionWAM's unified whole-body motion token covers "locomotion, torso motion, height regulation, foot interaction, and hand manipulation" in a single latent. The performance gap is clearest on tasks like Kick Soccer (+40%) and Wipe Board (+45%) over the strongest baseline (GR00T-N1.7). (Section 4.2)
Egocentric Video Pretraining Is the Bottleneck, Not Action Data
The team's insight on data strategy is counterintuitive: at pretraining scale, the limiting resource is egocentric visual dynamics, not labeled action demonstrations. They assembled ~2,136 hours of first-person human and humanoid video — action-free — to shift the world model toward robot-centric visual dynamics before touching any action data.
"Our key insight is that egocentric visual dynamics, not action diversity, is the bottleneck at this stage: by training the Video DiT alone on cheap, action-free video, the trunk absorbs scale without being throttled by the much smaller pool of action-labelled demonstrations." (Section 3.3, Stage 1)
The ablation confirms this: skipping Stage 1 (egocentric pretraining) drops average performance by 11 percentage points; skipping Stage 2 (cross-embodiment action grounding) drops it by 28 points. Both are necessary but serve distinct functions. (Table 2)
Semantic Priors Alone Fail at Contact-Rich Whole-Body Tasks
Strong vision-language models carry rich semantic priors, but those priors do not encode contact physics or temporal visual dynamics — and that gap is catastrophic on real humanoid tasks.
"The VLM-only baseline (Qwen3DiT) collapses to near-zero success on every locomotion-heavy task and even π_0.5 stays under 20% overall, indicating that strong semantic priors alone do not transfer to the closed-loop physics humanoid loco-manipulation demands. Coupling the policy to a video world model is what closes that gap." (Section 4.2)
This is a direct head-to-head: Qwen3DiT uses the same Motion DiT, same action space, same training data as MotionWAM — the only difference is a static VLM backbone versus a video world model backbone.
Three-Stage Curriculum Is the Operational Training Paradigm for Foundation Humanoid Policies
Rather than joint training from scratch, MotionWAM proposes a progressive specialization curriculum: (1) egocentric video dynamics, (2) cross-embodiment action grounding, (3) task-specific fine-tuning on only ~200 episodes per task.
"Stage 3 fine-tunes the full network end-to-end on our in-house teleoperated whole-body dataset. We collect 200 episodes per task on the nine real-world loco-manipulation tasks." (Appendix E)
200 episodes per task to achieve 76.1% average success on nine demanding whole-body tasks is a data-efficiency benchmark that operators should pay close attention to.
2. Contrarian Perspectives
The Best Foundation Model Backbone for Robotics Is a Video Generator, Not a VLM
The robotics field has largely converged on VLMs (GPT-4V, LLaMA, Qwen-VL, etc.) as the backbone for robot policies, reasoning that internet-scale language and image pretraining provides useful priors. MotionWAM directly challenges this, arguing that temporal visual dynamics — not semantic understanding — is the missing ingredient for physical task success.
The paper provides unusually clean evidence: Qwen3DiT is a parameter-matched ablation that substitutes Qwen3-VL 2B for the Cosmos Video DiT while keeping everything else identical.
"This setting isolates the contribution of the video world model prior over a static VLM prior at matched capacity and under a matched training budget." (Appendix D)
The result: Qwen3DiT collapses on locomotion-heavy tasks. If VLMs were sufficient, this ablation would be competitive. The implication is that robotics companies building on VLM spines may be optimizing the wrong substrate.
Hierarchical Humanoid Control Architectures Are a Dead End for Dexterous Tasks
Most humanoid deployments — including those from major robotics companies — use hierarchical architectures with decoupled upper/lower body control. This is treated as a practical engineering necessity. MotionWAM argues it's a fundamental capability ceiling, not a design choice to optimize around.
"The suite is designed so that no single task can be solved by upper-body manipulation alone; each one forces the legs and torso to actively contribute, exposing behaviors that decoupled upper–lower policies cannot express." (Section 4.1)
Tasks like ball kicking and pedal stepping aren't edge cases — they represent any scenario where the task objective involves the lower body. As humanoids move into warehouses, care facilities, and construction sites, leg-task integration becomes unavoidable. Companies that have built production systems on hierarchical architectures may face architectural refactoring, not just retraining.
4.9 Hz Is Sufficient — and Speed Competition Is Now About Architecture, Not Hardware
Conventional wisdom holds that higher inference frequency is always better for real-time control. MotionWAM's operators validated a different threshold: 4.9 Hz (action chunk rate) is sufficient for closed-loop humanoid balance on dynamic tasks. The more important comparison is against Cosmos Policy at 0.7 Hz — a 7x gap driven entirely by whether you run one forward pass or iterative denoising.
"Against Cosmos Policy — another world-model-based policy with a comparable parameter count — MotionWAM is seven times faster (4.9 Hz vs. 0.7 Hz), because Cosmos Policy must iteratively denoise the future video before producing actions whereas MotionWAM reads off intermediate denoising features in a single pass." (Section 4.4)
The implication: future performance gains will come from smarter feature extraction, not just faster GPUs or smaller models.
3. Companies Identified
Unitree Robotics
- Hardware platform for all experiments
- The Unitree G1 is the sole validation platform; all 9 tasks, all 200-episode collections, and all real-world results are on G1 hardware
- Unitree's own teleoperation dataset (UnifoLM-WBT) is used in Stage 1 pretraining
-
"We conduct all real-world experiments on a Unitree G1 humanoid with dual ALOHA2 grippers." (Section 4.1)
- Competitive relevance: MotionWAM demonstrates capabilities (task-driven foot interaction) that no published Unitree-based system has previously shown
NVIDIA
- GR00T-N1.7 is the strongest baseline tested and is directly beaten by 32%+ absolute
- Cosmos-Predict2.5-2B is the Video DiT backbone MotionWAM is initialized from; Cosmos-Reason1 provides language embeddings
-
"A Video DiT initialized from Cosmos-Predict2.5-2B — a causal spatio-temporal VAE plus a flow-matching diffusion transformer conditioned on Cosmos-Reason1 language embeddings." (Section 3.2)
- Competitive relevance: NVIDIA's own Cosmos Policy runs at 0.7 Hz; MotionWAM is 7x faster using the same Cosmos backbone differently
Physical Intelligence (π)
- π_0.5 is one of the five baselines tested
- Achieved less than 20% overall success on the nine tasks
-
"Even π_0.5 stays under 20% overall, indicating that strong semantic priors alone do not transfer to the closed-loop physics humanoid loco-manipulation demands." (Section 4.2)
- Competitive relevance: Direct evidence that a leading commercial VLA product fails on whole-body humanoid tasks at the task suite designed here
Mondo Robotics
- Primary institutional affiliation for the paper's authors (alongside HKUST GZ)
- The VR-based teleoperation pipeline, Stage 3 demonstration collection, and hardware integration are all Mondo Robotics infrastructure
-
"Jia Zheng, Teli Ma, Yudong Fan, Zifan Wang, Shuo Yang, Junwei Liang — Mondo Robotics, HKUST (GZ)" (Paper header)
- This is an emerging robotics company whose research output directly benchmarks against NVIDIA and Physical Intelligence products
Fourier Intelligence (GR1)
- GR1 humanoid simulation and real data appear in Stage 1 pretraining mixture
-
"GR00T-X-Embodiment-Sim (GR1): Fourier GR1 (sim), weight 0.255" and "GR00T-Teleop-GR1-Robot: Fourier GR1 (real), weight 0.071" (Appendix E, Table 6)
- Competitive relevance: GR1 data contributes 32.6% of Stage 1 training weight, making Fourier's platform a significant upstream data contributor to a competing system
Agility Robotics / Boston Dynamics (implicit)
- Not directly named, but the paper's framing of hierarchical upper-lower architectures as the "dominant paradigm" indirectly critiques the control approach used across most commercial humanoid platforms
- The capability gap on task-driven foot interaction is a direct challenge to any deployed fleet using decoupled controllers
4. People Identified
Jia Zheng
- Mondo Robotics / HKUST (GZ), Equal first author
- Lead architect of MotionWAM's training pipeline and real-world evaluation
-
"Equal contribution." (Paper header)
- Notable: Coming out of Mondo Robotics, a company with limited prior public profile — this paper represents a significant research debut
Teli Ma
- Mondo Robotics / HKUST (GZ), Equal first author; also corresponding author on the DiT4DiT paper (the architectural predecessor to MotionWAM)
-
"Ma et al. [2026] T. Ma, J. Zheng, Z. Wang, C. Jiang, A. Cui, J. Liang, and S. Yang. DiT4DiT: Jointly modeling video dynamics and actions for generalizable robot control." (References)
- Notable: The dual-DiT video-motion architecture in MotionWAM is directly derived from DiT4DiT, of which Ma is the lead author — making them the primary architect of this entire line of research
Shuo Yang
- Mondo Robotics, Co-corresponding author
-
"∗ Corresponding author, Co-advising." (Paper header)
- Notable: Principal investigator at Mondo Robotics; the co-advising credit with Junwei Liang signals an academic-industry bridge role
Junwei Liang
- HKUST (GZ) and HKUST, Co-corresponding author
-
"∗ Corresponding author, Co-advising." (Paper header)
- Notable: Academic PI overseeing the research; HKUST (GZ) is an increasingly prominent node in Physical AI research in Asia
Zhengyi Luo (SONIC, referenced)
- Not a MotionWAM author, but the creator of SONIC — the whole-body controller that serves as MotionWAM's low-level action decoder
-
"We instantiate m_t on top of SONIC [4], a universal whole-body controller that fuses different motion targets through a single shared latent." (Section 3.1)
- Notable: SONIC's tokenized latent space is architecturally load-bearing in MotionWAM; Luo's work is a prerequisite for this system
5. Operating Insights
Intermediate Denoising Features Are the Practical Path to Real-Time WAMs
For any team evaluating world-model-based policies for deployment, the key engineering decision is when in the denoising process to extract features for action generation. MotionWAM demonstrates that a single forward pass at the pure-noise end of the schedule (τ_f ≈ 1) provides sufficient dynamics information to outperform fully-denoised approaches — while being 7x faster.
"Rather than consuming a fully denoised future, we install a forward hook on a single transformer block to intercept its activations at a fixed flow timestep τ_f." (Section 3.2)
Operational implication: Any team currently deploying or evaluating Cosmos Policy, UniPi-style systems, or other iterative-denoising WAMs should audit whether full denoising is actually necessary for their task. The MotionWAM result suggests it isn't — and the speed penalty is severe (0.7 Hz is not viable for dynamic humanoid control).
200 Demonstrations Per Task Is a Viable Production Data Budget When Pretraining Is Right
One of the most operationally relevant findings is the Stage 3 data efficiency. MotionWAM achieves 76.1% average success across nine demanding whole-body tasks with only 200 teleoperated episodes per task — collected on a single platform.
"We collect 200 episodes per task on the nine real-world loco-manipulation tasks listed in Table 4, recorded at 50 Hz on the Unitree G1 platform." (Appendix E)
Operational implication: The pretraining pipeline (egocentric video → cross-embodiment action → task fine-tuning) dramatically reduces the teleoperation burden at deployment time. For operators worried about data collection costs at scale, this three-stage curriculum is the architecture to study. The ROI on upstream pretraining investment is measurable: without Stage 2, performance drops 28 points on the same 200-episode fine-tuning budget. (Table 2)
Build Your Task Suite to Expose Architecture Failures, Not Just Benchmark Performance
The nine-task evaluation suite in MotionWAM is a template worth adopting. Every task was designed to require active leg/torso involvement — explicitly ruling out tasks solvable by upper-body manipulation alone. This exposed a class of failures (decoupled policies scoring 0% on Kick Soccer, Wipe Board, etc.) that standard tabletop benchmarks would never reveal.
"The suite is designed so that no single task can be solved by upper-body manipulation alone; each one forces the legs and torso to actively contribute, exposing behaviors that decoupled upper–lower policies cannot express." (Section 4.1)
Operational implication: If you're evaluating humanoid vendors or internal systems, your benchmark suite is probably too easy. Any evaluation that only tests arm-and-gripper tasks is systematically blind to whole-body coordination failures. Operators deploying humanoids in real environments (warehouses, hospitals, construction) should require task suites that include lower-body task contribution as an explicit success criterion.
6. Overlooked Insights
The Single Egocentric Camera Is Both the System's Core Innovation and Its Critical Production Risk
MotionWAM's entire pipeline — pretraining, inference, and the visual dynamics prior — is built around a single head-mounted RGB camera. This is architecturally elegant (no depth sensors, no multi-camera rigs, no calibration overhead) but creates a brittle failure mode that only becomes visible in the appendix.
"Relying on a single egocentric camera, MotionWAM falters when the manipulated object leaves the field of view or the head-camera viewpoint drifts from the training distribution, losing visual grounding and stalling." (Section 6, Limitations; also Appendix F)
This isn't a minor edge case — for humanoids performing dynamic tasks (squatting, kicking, loading carts), objects leaving the field of view is a predictable and frequent event. Any operator evaluating this system for production deployment needs to quantify failure rate from occlusion/viewpoint drift as a first-order metric, not a footnote. The paper does not report what fraction of the 20-trial failures per task were attributable to this specific failure mode, which is a significant gap in the evaluation.
The Cross-Embodiment Action Post-Training Data Mix Is Heavily Concentrated on a Single Hardware Vendor
Stage 1 pretraining draws from nine data sources across three embodiment categories. However, 71.4% of the humanoid-robot category budget (which itself receives 50% of total Stage 1 budget) comes from Fourier GR1 data — a robot with a meaningfully different morphology from the Unitree G1 deployment target.
"GR00T-X-Embodiment-Sim (GR1): weight 0.255; GR00T-Teleop-GR1-Robot: weight 0.071 — combined 32.6% of total Stage 1 budget from a single non-target embodiment." (Appendix E, Table 6)
The paper demonstrates the three-stage recipe works for Unitree G1, but explicitly flags: "the three-stage paradigm has not been verified on other humanoid platforms to confirm that the recipe transfers across hardware." (Section 6, Limitations)
For investors: this means the dataset strategy and compute investment at Stages 1-2 may need to be substantially rebuilt for each new hardware platform — the cross-embodiment generalization claim is aspirational, not validated. The paper's own limitation statement is more conservative than the abstract's framing of "foundation world action models."