# Does Humanoid AI Need Separate Locomotion and Manipulation Policies?
**ω-0 says no — and backs it up across 11 real-world household tasks.**
A research team led by Zhe Li, Zhenzhe Zhang, Yangyang Wei, and colleagues has published ω-0, a latent predictive whole-body world-action model designed specifically for concurrent [loco-manipulation](https://humanoidintel.ai/glossary/loco-manipulation) — the class of behaviors where a humanoid must walk, rebalance, and manipulate objects simultaneously rather than in sequence. Evaluated against representative [imitation learning](https://humanoidintel.ai/glossary/imitation-learning), [Vision-Language-Action Model](https://humanoidintel.ai/glossary/vision-language-action-model) (VLA), humanoid, and world-action model (WAM) baselines across 11 household tasks, a single ω-0 policy consistently outperformed all of them. The team also releases ω-HOME, a real-world household dataset exceeding 40 hours of synchronized multi-view observations, whole-body SMPL motions, robot states, and action latents — one of the more substantive open data contributions in humanoid manipulation research this year.
The core architectural bet: instead of predicting future video frames (computationally expensive and often irrelevant to control), ω-0 learns compact latent embeddings of future observations as a lightweight predictive objective, then couples that latent foresight with diffusion-based [whole-body control](https://humanoidintel.ai/glossary/whole-body-control) action generation. The result is a model that receives a language instruction, a current visual observation, and robot [proprioception](https://humanoidintel.ai/glossary/proprioception) — and directly outputs controller-compatible whole-body action latents ready for real-robot execution.
---
## The Decomposition Problem That ω-0 Targets
The dominant architecture pattern in deployed humanoid software today treats locomotion and manipulation as separate subsystems — a walking controller hands off to a manipulation controller at some task boundary. This decomposition is operationally clean but physically wrong for household work. Fetching a glass from a high shelf while walking toward a table, loading a dishwasher while shifting weight, wiping a surface while stepping around obstacles: these all require the upper and lower body to co-optimize in real time.
The authors frame the gap precisely: existing world-action models are either arm-centric (they model the world from a fixed-base manipulator perspective) or video-centered (they reconstruct full future frames, which is expensive and doesn't translate directly to control). ω-0 is positioned as the first model in this lineage to operate whole-body in a latent predictive regime for real humanoid hardware.
This is a meaningful architectural distinction, not a marketing one. Arm-centric policies that have driven much of the recent [dexterous manipulation](https://humanoidintel.ai/glossary/dexterous-manipulation) progress — including work from [Physical Intelligence (π)](https://humanoidintel.ai/companies/physical-intelligence) and others — are fundamentally not designed for a robot whose center of mass shifts when it reaches across a counter. ω-0's whole-body formulation treats the kinematic chain as a single planning unit.
---
## How ω-0 Works: Architecture Specifics
Given three inputs — a language instruction, current visual observation (the model supports egocentric RGB, exocentric RGB, and exocentric depth), and robot proprioceptive state — ω-0 predicts whole-body action latents compatible with an existing low-level controller.
The predictive component is deliberately lean. Rather than training a video diffusion model to hallucinate photorealistic futures, ω-0 learns a compact latent representation of what the scene will look like after the action, then uses that latent prediction to condition the action generation process. The action generation itself is diffusion-based, which is now a fairly standard choice for continuous control in humanoid research (π0 from Physical Intelligence popularized this in the manipulation context) but is less common in whole-body settings where the action space dimension is substantially higher.
A notable detail: the team uses controller-based simulation replay to bridge the sim-to-real gap. Rather than training purely on real demonstrations or purely in sim, they replay human and public visual-motion priors through a controller in simulation to generate robot-executable action latents. This is a practical [sim-to-real transfer](https://humanoidintel.ai/glossary/sim-to-real-transfer) strategy that sidesteps the need for exhaustive real-robot teleoperation at every configuration.
---
## ω-HOME: 40+ Hours of Whole-Body Household Data
The dataset contribution deserves attention independent of the model. ω-HOME comprises more than 40 hours of real-world household demonstrations with synchronized multi-view camera observations (egocentric and exocentric), whole-body SMPL motion capture, robot state logs, and the corresponding action latents. That combination — particularly the SMPL whole-body motion alongside robot states — is designed to make the dataset useful for researchers who want to retarget human motion to different robot morphologies, not just replicate ω-0.
The 11 task categories span typical household scenarios requiring concurrent movement and object interaction. The authors do not enumerate the specific tasks in the abstract, but the framing — "manipulate-while-moving behaviors" — implies tasks where static-base manipulation is not a viable option.
**The honest data caveat:** 40+ hours is a reasonable dataset for a research paper, but it is well below the scale that commercial deployments are accumulating. [Figure AI](https://humanoidintel.ai/companies/figure-ai) and others have not disclosed their internal dataset sizes, but companies with active factory deployments are generating data at rates that academic groups cannot match through collection campaigns alone. ω-HOME's value is in its annotation richness (SMPL + multi-view + action latents simultaneously), not raw volume.
---
## Baseline Comparisons: What "Consistently Outperforms" Actually Means
The paper compares ω-0 against four baseline categories: imitation learning, VLA, humanoid-specific policies, and world-action models. The abstract states that ω-0 "consistently outperforms" all of them across 11 tasks, but the specific success rate numbers, latency figures, and per-task breakdowns are in the full paper body rather than the abstract — and responsible coverage requires noting that we are grounding this analysis in the abstract alone.
What the abstract does establish clearly:
- The comparison set includes VLA baselines, meaning ω-0 is being benchmarked against the current generation of language-conditioned visuomotor policies, not just older IL approaches.
- "Consistent" across 11 tasks is a stronger claim than cherry-picked demos. If the full paper supports this with per-task numbers, it would represent a genuine step forward for the concurrent loco-manipulation problem.
- The "smooth manipulate-while-moving behaviors" language suggests the authors are specifically measuring motion quality, not just binary task success — which is harder to fake.
Skeptical read: real-world evaluations in academic papers typically involve a controlled environment, a fixed hardware platform, and a limited range of object configurations. How ω-0 degrades when object placement varies, lighting changes, or the robot encounters an obstacle mid-manipulation is the question that separates a strong paper from a deployable system.
---
## Industry Trajectory: Why This Research Direction Matters Now
The timing of ω-0 aligns with a broader inflection in the field. Most humanoid companies shipping or piloting hardware today are running decomposed architectures because they are safer and easier to debug — the walking controller can be validated independently, and the manipulation policy can be swapped without touching gait. That engineering pragmatism has a ceiling: household and general-purpose applications require the robot to do things like carry a laundry basket up stairs, which no decomposed architecture handles gracefully.
The research community is converging on whole-body formulations from multiple directions: reinforcement learning researchers are training whole-body RL policies in simulation; imitation learning groups are scaling teleoperation datasets; and now world-model researchers are entering with latent predictive approaches like ω-0. The commercial question is which of these methods scales to the diversity of household environments without per-task fine-tuning — zero-shot generalization remains the unsolved problem across all three camps.
ω-0's latent predictive framing is an interesting middle path: it uses world-model structure (predicting future states) to improve action generation without paying the full cost of video reconstruction. Whether the latent predictions actually provide useful signal at deployment — versus the model learning to ignore them and relying on the diffusion prior — is the ablation study to scrutinize in the full paper.
---
## Key Takeaways
- **ω-0** is a whole-body world-action model for concurrent loco-manipulation, outperforming VLA, imitation learning, and world-action model baselines across 11 household tasks on real hardware.
- The model uses **latent future observation prediction** (not video reconstruction) coupled with **diffusion-based whole-body action generation** — a lighter-weight approach than video-centered world models.
- It accepts **egocentric RGB, exocentric RGB, and exocentric depth** inputs and produces controller-compatible action latents directly.
- **ω-HOME**, a 40+ hour real-world dataset with synchronized multi-view observations, SMPL motions, robot states, and action latents, is released alongside the model.
- The work directly targets the **decomposition bottleneck** that limits most current humanoid deployments to sequential rather than concurrent loco-manipulation.
- Key open questions: generalization to novel environments, performance degradation metrics, and whether latent prediction provides measurable gains over a diffusion-only baseline.
---
## Frequently Asked Questions
**What is concurrent loco-manipulation in humanoids?**
Concurrent loco-manipulation refers to tasks where a humanoid robot must move its base (walk, step, shift weight) and manipulate objects simultaneously, as a single coordinated behavior — rather than stopping to manipulate and then resuming locomotion. Household tasks like carrying objects between rooms or wiping surfaces while repositioning require this capability.
**How is ω-0 different from existing VLA models?**
Most [Vision-Language-Action Model](https://humanoidintel.ai/glossary/vision-language-action-model) architectures were designed for fixed-base or arm-centric settings. ω-0 extends the world-action model paradigm to whole-body control, adding a latent predictive objective that anticipates future visual states without reconstructing full video frames — and it outputs action latents compatible with a whole-body controller rather than end-effector deltas.
**What is the ω-HOME dataset and who can use it?**
ω-HOME is a real-world household dataset exceeding 40 hours, containing synchronized multi-view RGB and depth observations, whole-body SMPL motion data, robot states, and action latents. The combination of SMPL annotations alongside robot states makes it potentially useful for motion retargeting research across different humanoid morphologies, not just ω-0 replication.
**Why does the paper use latent prediction instead of video prediction?**
Full video prediction (reconstructing future frames) is computationally expensive and generates information — pixel-level visual detail — that is largely irrelevant to control. ω-0's latent predictive objective learns a compact embedding of future observations sufficient to improve action generation, without the cost of a video diffusion model.
**Does ω-0 eliminate the need for separate locomotion and manipulation controllers?**
At the policy level, yes — a single ω-0 model generates whole-body action latents. However, the paper describes using a low-level controller to execute those latents, meaning there is still a controller layer below the policy. The advance is in unifying the high-level decision-making, not necessarily eliminating all lower-level control structure.
RESEARCH
ω-0 Unifies Walking and Manipulation in One Policy
Published: August 6, 2026 at 13:59 EDTLast updated: August 8, 2026 at 07:21 EDTBy Alex Reiner, Senior EditorLast reviewed by Alex Reiner on August 8, 20269 min read
ω-0 is a single whole-body world-action model that beats VLA and imitation learning baselines across 11 household tasks.
loco-manipulationwhole-body-controlworld-modelimitation-learningVLAdataset