Teahose.
SIGN IN
NEW HERE — WHAT TEAHOSE DOES
We read the entire AI & tech firehose — so you don't have to.
PODPodcastsAll-In, No Priors, Acquired…
NEWNewslettersStratechery, Newcomer…
PAPPapersPhysical AI research
PHProduct Huntdaily launches
VCInvestor ScoutSequoia, a16z, Benchmark…
CLAUDE DISTILLS →
7 reads, 30 sec each — free, 6 AM ET.
+ a live graph of the companies, people & themes underneath.
HOME/ARXIV PHYSICAL AI RESEARCH/Scaling World Model for Hierarch…
PAPR
// RESEARCH PAPER
ARXIV PHYSICAL AI RESEARCH

Scaling World Model for Hierarchical Manipulation Policies

DATE March 30, 2026SOURCE ARXIV PHYSICAL AI RESEARCHPARTICIPANTS QIAN LONG, XINGHANG LI, ET AL. (ARXIV PHYSICAL AI)ARXIV 2602.10983
// KEY TAKEAWAYS5 ITEMS
  1. 01From 14% to 69% Success Rate on Unseen Objects Using Only 2 Hours of Real Robot Data
  2. 02Visual Subgoals Outperform Language Instructions as the Intermediate Representation for Robot Control
  3. 03A 34B-Parameter World Model Trained on 1.2 Million Robot Trajectories Becomes the Planning Brain
  4. 04Automated Pipeline Converts 1.2M Unlabeled Trajectories into Structured Training Data at Scale
  5. 05Multi-View Spatial Consistency Is a First-Class Citizen, Not an Afterthought
// SUMMARY

1. Key Themes

From 14% to 69% Success Rate on Unseen Objects Using Only 2 Hours of Real Robot Data

The central result of this paper is a dramatic generalization improvement achieved with remarkably little real-world data. The standard VLA baseline (π₀, Physical Intelligence's flagship model) achieves only 14% success when faced with novel objects, backgrounds, and layouts. VISTA achieves 69% on the same benchmark — a 5x improvement — while trained on just 2 hours of teleoperation data across 5 objects, then evaluated against 21 entirely unseen objects across 63 novel scenarios.

"Using only 2 hours of real-world teleoperation data collected on 5 objects, VISTA achieves 69% success in novel scenarios spanning 21 unseen objects, outperforming the baseline π₀ guided by language instruction, which only achieves 14% success." (Section I)

This is the core signal: the bottleneck to robot generalization is not more real-world data collection — it's smarter use of existing large-scale video and internet data to generate visual guidance that compensates for data scarcity.

Visual Subgoals Outperform Language Instructions as the Intermediate Representation for Robot Control

The paper's central argument is that telling a robot what to do (language) is insufficient — you need to show it how the world should look at each step (goal images). The authors run a direct ablation: π₀ with subtask language instructions (π₀-subtask) achieves 31% execution success on unseen targets versus VISTA's 67%. Language decomposition helps, but visual subgoals provide the spatial grounding that language cannot express.

"In unseen-target settings, the policy π₀ performs poorly in both approach and execution... π₀-subtask improves approach success via subtask guidance but still fails during execution, revealing the limitations of language-only conditioning. In contrast, our model achieves a 100% approach success rate and significantly higher execution success, enabled by goal-image guidance that provides explicit spatial cues for accurate grasping." (Section V-C-1)

A concrete failure mode illustrates why this matters: "Without visual goal guidance, π₀ and π₀-subtask baseline fail to grasp [a soda bottle]... the closest object is a cola can, causing the baselines to adopt a horizontal can-grasping posture rather than a vertical bottle grasp, leading to failure." (Section V-C-2)

A 34B-Parameter World Model Trained on 1.2 Million Robot Trajectories Becomes the Planning Brain

The world model at the heart of VISTA is massive: 34.1 billion parameters (31.2B transformer + 2.9B embedding layers), trained on 1.2 million robot trajectories auto-labeled from Open-X-Embodiment, AgiBot World Beta, and Mobile Aloha — totaling 15.2B tokens of robot data plus 15.0B tokens of general image editing data.

"We construct the World Model with a total of 34.1 billion parameters... This process converts 1.2M trajectories into interleaved subtask and goal-image sequences, covering 14 embodiments with multi-view support and totaling 15.2B tokens." (Appendix A-A; Section IV-C)

This is not a lightweight planning module bolted onto a policy — it is a foundation-model-scale system fine-tuned for embodied planning. The world model (built on EMU3.5) generates multi-view consistent goal images that serve as spatial targets for the low-level executor. The scale of pretraining is what enables zero-shot generalization to unseen objects, embodiments, and environments.

Automated Pipeline Converts 1.2M Unlabeled Trajectories into Structured Training Data at Scale

One of the paper's most underappreciated contributions is an automated data curation pipeline that takes raw robot trajectories (which contain only global instructions and image-action pairs) and converts them into richly annotated, interleaved sequences of textual subtasks and goal images — without human annotation.

"Although the corpus exceeds 1M trajectories, annotations include only global instructions and image–action pairs, lacking intermediate milestones. We therefore introduce an automated trajectory decomposition pipeline... First, we build a library of 50 atomic skills by clustering instruction verbs with Qwen3. Second, candidate milestone boundaries are detected via physical state changes... Finally, Qwen2.5-VL 72B merges adjacent segments with identical skills and generates natural language subtask descriptions." (Section IV-C)

This matters enormously for anyone building robot training infrastructure. It means the massive open-source robot data already collected can be retroactively structured into hierarchical training data without re-collection.

Multi-View Spatial Consistency Is a First-Class Citizen, Not an Afterthought

Unlike most VLA work that uses a single camera, VISTA explicitly generates spatially consistent goal images across multiple camera views simultaneously (head, left-wrist, right-wrist). The paper demonstrates that multi-view goal images provide complementary spatial constraints — a top-down view shows placement location, while wrist cameras encode grasp orientation.

"Even under unseen scene layouts, objects, backgrounds, and viewpoints, the generated sequences maintain coherent spatial relationships between target objects and surrounding distractors across all views, including top-down perspectives. This indicates robust 3D spatial reasoning and generalization to novel multi-view observations." (Section V-B-2)

"The generated images of cucumber placement: the cucumber in the plate and the gripper of the right arm are clearly visible from the wrist camera of the left arm, with their relative spatial positions being almost perfectly consistent." (Appendix E)


2. Contrarian Perspectives

More Real-World Robot Data Is NOT the Primary Path to Generalization

The dominant belief in the industry — exemplified by Physical Intelligence's π₀ and its successors, Agility, Figure, and others — is that scaling real-world demonstration data is the key to building generalizable manipulation policies. VISTA directly challenges this. The system achieves a 5x improvement over the baseline with identical real-world data (2 hours, 737 trajectories), simply by using a world model to generate visual guidance at inference time.

"We evaluate VISTA on multi-stage manipulation with an emphasis on out-of-distribution (OOD) generalization. Using only 2 hours of real-world teleoperation data collected on 5 objects, VISTA achieves 69% success in novel scenarios spanning 21 unseen objects." (Section I)

The implication is that the research community is solving the wrong problem when it focuses primarily on scaling teleoperation data collection. The generalization bottleneck is not data volume — it's the form of the intermediate representation used to guide execution.

Dense Video Prediction (the Approach Most World Model Papers Pursue) Is Counterproductive for Long-Horizon Manipulation

A significant number of world model papers for robotics — including GR-1, UniVLA, and others — generate dense video sequences as future predictions to guide robot policies. VISTA explicitly argues this is a dead end for reliable manipulation, and demonstrates an alternative: predict only key frames (goal states), not full trajectories.

"In contrast to prevalent VLAs that often discard interaction history... or video generation frameworks that suffer from the stochasticity of pixel prediction, our formulation adopts a structured hierarchical decomposition. We abstract the continuous task into discrete key milestones rather than relying on the generation of dense future frames. This approach leverages the heuristics of sub-goal invariance and hence avoids ambiguity of video prediction." (Section III)

"Dense video prediction provides richer detail but suffers from temporal drift and physical inconsistency over long horizons. This motivates a central question: How can we leverage foundation model generalization to abstract manipulation into an intermediate representation that improves both robustness and data efficiency?" (Section I)

The practical implication: companies building robot planning systems on top of video diffusion models (e.g., generating full trajectory videos) may be building on a fundamentally unstable foundation. Sparse keyframe prediction is more robust and verifiable.

Cross-Embodiment Transfer Emerges Spontaneously from Scale — It Doesn't Require Embodiment-Specific Training

Most robot AI companies treat each robot form factor as a separate training problem, with embodiment-specific data pipelines and models. VISTA demonstrates that at sufficient scale, cross-embodiment transfer emerges without explicit design. The system, trained primarily on Mobile Aloha, generates valid manipulation plans for AgiBot G1, WidowX, RT-1, and Bridge embodiments — including for objects never seen in those embodiment contexts.

"VISTA exhibits cross-embodiment generalization. For example, the spray bottle is unseen in RT-1 and the laptop is unseen in Bridge, yet the model successfully transfers object affordances and skill knowledge across embodiments. This suggests that VISTA encodes skills, objects, and embodiments in a shared representation space, enabling linear rather than combinatorial generalization." (Section V-B-1)

"When prompted with Mobile Aloha head-camera images and different robot arms, the model successfully generates interleaved goal sequences for Aloha, AgiBot G1, and WidowX in unseen environments." (Section V-B-2)


3. Companies Identified

Physical Intelligence (π₀) The primary baseline and competitive reference throughout the paper. Physical Intelligence's π₀ model is used as the direct comparison in all real-robot experiments. VISTA outperforms it dramatically in OOD settings (69% vs. 14% success) while using identical real-world training data.

"We selected the π₀ model, which features remarkable influence and outstanding performance, as our baseline... the performance of the same-structured VLA in novel scenarios could boost from 14% to 69% with the guidance generated by the world model." (Sections V-A, I)

AgiBot AgiBot's World Beta dataset is one of three primary training data sources for VISTA's world model, and AgiBot's AgiBot-Beta dataset is used for the first stage of GoalVLA training (200,000 trajectory samples). AgiBot G1 is one of the embodiments VISTA successfully transfers to without explicit training.

"We train the world model on large-scale embodied manipulation data from Open-X-Embodiment, AgiBot World Beta, and our Mobile Aloha dataset." (Section IV-C); "We leverage 200,000 trajectory samples from the AgiBot-Beta dataset." (Appendix A-B)

Figure AI (Helix) Referenced as a representative of the dual-system VLA architecture (high-level semantic planner + low-level motor controller). The paper positions VISTA as solving a problem that Helix-style architectures leave open: they use textual sub-goals, which lack spatial precision.

"Dual-system frameworks such as Helix and G0 implicitly adopt this decomposition principle by separating low-frequency semantic reasoning from high-frequency motor control... these methods typically rely on textual sub-goals, which lack the expressiveness required to enforce strict visual and physical constraints." (Section II-C)

Galaxea (G0) Referenced alongside Helix as another dual-system VLA with the same limitation of language-only sub-goal representation.

"Dual-system frameworks such as Helix and G0 implicitly adopt this decomposition principle... However, these methods typically rely on textual sub-goals." (Sections II-A, II-C)

Google DeepMind (Dreamer, RT-1, RT-2, Open-X-Embodiment) Multiple Google DeepMind systems are referenced. Open-X-Embodiment is one of the three primary training datasets for VISTA. RT-1 and RT-2 are baseline VLA architectures cited in the related work. Dreamer is referenced as a latent-space world model planning approach.

"We train the world model on large-scale embodied manipulation data from Open-X-Embodiment." (Section IV-C)

Alibaba (Qwen3, Qwen2.5-VL 72B) Qwen3 is used as the text tokenizer for the world model, and Qwen2.5-VL 72B is used as the automated annotation engine for generating subtask descriptions across 1.2 million trajectories. Qwen3 is also used for clustering instruction verbs to build the 50-skill atomic library.

"We utilize the Qwen3 tokenizer with a vocabulary size of 151,854... Qwen2.5-VL 72B merges adjacent segments with identical skills and generates natural language subtask descriptions." (Sections IV-A, IV-C)

Google DeepMind (Gemini / Nano Banana) The Gemini-based Nano Banana image generation model is used to synthesize OOD evaluation scenarios by modifying real robot images to change object appearance, layout, background, and viewpoint while preserving semantic type.

"We generate out-of-distribution initial frames using Nano Banana, based on phone-captured images and real robot trajectories. Nano Banana is prompted to preserve object semantic types while varying object appearance, layout, background, and camera viewpoint." (Section V-B-1)


4. People Identified

Xinghang Li — Beijing Academy of Artificial Intelligence (BAAI), Project Lead Project lead on VISTA. Based at BAAI, which is positioning itself as a major node in China's Physical AI research ecosystem. Li is also co-first author on the Nature Machine Intelligence paper cited as reference [31]: "What matters in building vision–language–action models for generalist robots" — indicating sustained, high-output research on VLA foundations.

"Xinghang Li, Project Lead... What matters in building vision–language–action models for generalist robots, Nature Machine Intelligence." (Author list; Reference [31])

Huaping Liu — Tsinghua University, Corresponding Author One of three corresponding authors, based at Tsinghua. Liu's lab (with co-authors Jiaxi Song and Junbo Zhang also from Tsinghua) represents a major academic node contributing to this work. Tsinghua's involvement signals academic-to-industry pipeline relevance in China's robotics ecosystem.

"Huaping Liu, Corresponding Author, Tsinghua University." (Author list)

Xuguang Lan — Xi'an Jiao Tong University, Corresponding Author Co-corresponding author and supervisor of lead author Qian Long. XJTU's involvement adds a second major Chinese academic institution to the collaboration.

"Xuguang Lan, Corresponding Author, Xi'an Jiao Tong University." (Author list)

Hanbo Zhang — National University of Singapore Only author outside China (NUS), suggesting the research has international academic connectivity beyond BAAI/Tsinghua/XJTU.

"Hanbo Zhang, National University of Singapore." (Author list)

Xinlong Wang & Zhongyuan Wang — BAAI Senior BAAI researchers contributing to the world model architecture, likely connected to the EMU3.5 lineage which forms the backbone of VISTA's world model.

"Xinlong Wang, Zhongyuan Wang, Beijing Academy of Artificial Intelligence." (Author list); "We perform 2,000 steps of continued training on the open-source EMU3.5 checkpoint." (Appendix A-A)


5. Operating Insights

For CTOs: Your VLA Generalization Problem Is a Representation Problem, Not a Data Volume Problem

If your robot is failing on unseen objects or novel environments, and your instinct is to collect more demonstration data, this paper suggests you may be solving the wrong problem. The core failure mode of current VLAs — demonstrated directly on π₀ — is that language instructions are insufficient spatial guidance for precise manipulation. A robot told "pick up the bottle" will interpolate from its nearest training example (a can) and use the wrong grasp orientation.

The actionable insight: invest in intermediate representation infrastructure — specifically, systems that can generate goal-state images or spatial keyframes at inference time — rather than scaling up teleoperation data collection alone. VISTA demonstrates this can be achieved by fine-tuning a large pre-trained vision-language model on structured robot data, combined with a goal-conditioned low-level policy.

"With only two hours of real-robot data, the closest object is a cola can, causing the baselines to adopt a horizontal can-grasping posture rather than a vertical bottle grasp, leading to failure under distribution shift. In contrast, our method generates temporally aligned, multi-view goal images that explicitly encode the interaction region and desired end-effector pose." (Section V-C-2)

For Data Infrastructure Teams: Your Existing Robot Trajectory Datasets Can Be Retroactively Structured into Hierarchical Training Data

The automated milestone labeling pipeline described in this paper converts any raw robot trajectory (instruction + image-action pairs) into structured subtask sequences with goal images, using only open-source models (Qwen3 for skill clustering, Qwen2.5-VL 72B for annotation, RDP algorithm for boundary detection). This pipeline processed 1.2 million trajectories without human annotation.

If you have large robot data assets — whether from teleoperation, simulation, or third-party datasets — this pipeline design means you can extract significantly more training signal from them without additional collection. The key engineering investment is the automated labeling infrastructure, not more robots or operators.

"We therefore introduce an automated trajectory decomposition pipeline... This process converts 1.2M trajectories into interleaved subtask and goal image sequences, covering 14 embodiments with multi-view support and totaling 15.2B tokens." (Section IV-C)


6. Overlooked Insights

The Failure Mode Analysis in Appendix G Is More Valuable Than the Success Metrics

The paper's appendix contains a candid and detailed failure case analysis that is buried at the end but has direct implications for anyone deploying VISTA-like systems. Two failure categories are identified: (1) goal images generated with incorrect timing (too early or too late relative to the actual grasp moment), and (2) goal images with spatial misalignment (e.g., shifted slightly left, causing gripper collision).

What makes this significant for operators: the GoalVLA policy is over-reliant on goal image fidelity. When the world model generates a slightly early goal image (arm not yet fully descended, gripper not yet closed), the low-level policy matches to that pose and stops descending — resulting in grasp failure. The policy has limited ability to compensate for world model errors using its own online visual feedback.

"GoalVLA overly focuses on matching the robot pose depicted in the goal image, resulting in insufficient downward motion and eventual grasp failure. This suggests that GoalVLA relies heavily on accurate grasping position cues provided by the goal images, while exhibiting limited capability to adapt to the actual execution state observed online." (Appendix G)

This is a critical systems integration risk: the two-module hierarchy creates a hard dependency — errors in the world model's spatial or temporal predictions propagate directly into execution failures, and the low-level policy does not have robust error correction. Any deployment of hierarchical VLA architectures needs explicit failure detection and replanning loops, which this paper does not yet address.

The 15B-Token General Image Editing Dataset Co-Trained with Robot Data Is the Hidden Enabling Ingredient

The paper's data section reveals that the world model is jointly trained on 15.0B tokens of general image editing data (SEED-Data-Edit, WeatherStream, ShareGPT-4o-Image, OmniGen, and others) alongside 15.2B tokens of robot trajectory data — an almost exactly 50/50 split. This co-training is not presented as a primary contribution, but it is likely the reason the world model can generate physically plausible, instruction-following goal images for entirely novel scenarios.

"We co-train the world model with a 15.0B-token Any-to-Image dataset built from SEED-Data-Edit, WeatherStream, ShareGPT-4o-Image, etc." (Section IV-C); "We attribute these instruction-following capabilities to the strong text-to-image generation and editing abilities of Emu3.5." (Appendix F)

The implication for anyone building embodied world models: general image editing and generation capability is not a separate concern from robot planning capability — it is foundational to it. Teams that treat robot world model training as purely a robotics data problem, ignoring the contribution of general visual generation pretraining, will likely build systems with poor generalization to novel visual conditions.