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/Imagine2Real: Towards Zero-shot…
PAPR
// RESEARCH PAPER
ARXIV PHYSICAL AI RESEARCH

Imagine2Real: Towards Zero-shot Humanoid-Object Interaction via Video Generative Priors

DATE May 21, 2026SOURCE ARXIV PHYSICAL AI RESEARCHPARTICIPANTS JIAHE CHEN, JINGBO WANG, ET AL. (ARXIV PHYSICAL AI)ARXIV 2605.22272
// KEY TAKEAWAYS5 ITEMS
  1. 01The Core Data Bottleneck in Humanoid Deployment Is Being Attacked from a New Angle
  2. 02Geometry-Free Interaction Is a Meaningful Step Toward Deployment Generality
  3. 03The Behavior Foundation Model Architecture Solves a Real Engineering Problem: Sparse Signals Cause Jitter
  4. 04Progressive Training Dramatically Reduces the Data Required for Each Stage
  5. 05Zero-Shot Real-World Execution Is Demonstrated, Not Just Simulated
// SUMMARY

Summary for Physical AI Investors and Operators


1. Key Themes

The Core Data Bottleneck in Humanoid Deployment Is Being Attacked from a New Angle

The paper's central claim is that the reason humanoids can't generalize to diverse object interactions isn't compute or hardware — it's data scarcity. Specifically, high-fidelity 3D interaction data is nearly nonexistent at scale. The authors propose using video generation models as a synthetic data source and build an entire pipeline — from text prompt to physical robot execution — around this premise. As stated in the introduction: "The primary bottleneck is the lack of high-fidelity 3D interaction data for humanoid robots, which prevents the learning of robust and versatile interaction policies. This data scarcity imposes a generalization ceiling on current HOI methodologies, where task versatility remains strictly limited by the available training samples." (Section 1)

This matters operationally: any company building humanoid manipulation capabilities faces this same wall, and the direction of attack here — using internet-scale video priors instead of expensive teleoperation or mocap data collection — has compounding economic advantages.

Geometry-Free Interaction Is a Meaningful Step Toward Deployment Generality

Most existing approaches require CAD models of objects the robot will interact with. That's a non-starter for unstructured real-world deployment. Imagine2Real eliminates this requirement entirely by representing both robot and object motion as unified 4D point trajectories — shared spatial-temporal paths through 3D space — rather than mesh-based geometric representations. The paper is explicit: "To resolve misalignment, we extract robot and object motions using a unified 3D point tracker, representing both as 4D point trajectories. This shared representation avoids the need of geometric priors and ensures motions are aligned within a common frame." (Section 3) Practically, this means a robot doesn't need a pre-loaded object model to learn how to carry a box — it just needs to see video of someone doing it.

The Behavior Foundation Model Architecture Solves a Real Engineering Problem: Sparse Signals Cause Jitter

A critical finding is that if you try to control a humanoid robot using only three sparse tracking points (left hand, right hand, base position) without a strong motion prior, the robot will generate physically valid but extremely jerky and unnatural motions — essentially useless for real deployment. The ablation study in Table 2 quantifies this precisely: the direct joint-space tracking baseline achieves an action rate of 1.65 and action smoothness of 0.64, compared to 0.22 and 0.09 for the BFM-based approach. As stated in Section 4.2: "The Direct baseline achieves the lowest hands and base errors because it aggressively optimizes for point matching without any physical constraints. However, this comes at the cost of extreme jittering... making it nearly impossible to deploy on a real robot." The BFM latent space acts as a physical constraint — the robot can only move in ways that look like natural human motion, even when given minimal instruction.

Progressive Training Dramatically Reduces the Data Required for Each Stage

The three-stage training cascade demonstrates an important efficiency principle: you don't need interaction-specific data to build most of the capability stack. Stage 1 (BFM backbone) uses ~68.5 hours of general motion data; Stage 2 (Keypoints Tracker) uses ~8.86 hours; Stage 3 (Interaction Adaptor) uses only ~0.43 hours. Each stage inherits the priors of the previous. "By decomposing the complex HOI task, the framework leverages abundant non-interactive data to build foundational priors, reducing the sample complexity required to learn interaction skills." (Section 3.1) For teams thinking about data flywheel economics, this architecture means interaction capability can be bootstrapped from mostly non-interaction data — a significant cost reduction.

Zero-Shot Real-World Execution Is Demonstrated, Not Just Simulated

The paper closes with physical deployment on a Unitree G1 humanoid robot, executing box-lifting tasks and — notably — a semantically novel task (hitting an "Iron Man" pillar) that was never in any training dataset. "The robot successfully lifts various types of boxes, and by leveraging the generative capabilities of the video model, it can also execute semantically rich interactive tasks, such as hitting an 'Iron Man' pillar." (Section 4.3) While the mocap system dependency is a real limitation (discussed below), the zero-shot generalization to novel object interactions driven purely by text prompts is operationally significant.


2. Contrarian Perspectives

Video Generation Models Are a Viable Substitute for Physical Demonstrations — Today, Not Eventually

The dominant assumption in the field is that robots need either massive teleoperation datasets (à la pi0, RT-2) or carefully engineered simulation environments to learn new tasks. Imagine2Real argues that off-the-shelf video generation models (they use ByteDance's Seedance 2.0 Fast) can serve as the upstream "data source" for physical skill acquisition. This is provocative because video generation models were not trained with robotics in mind, yet the paper demonstrates they contain sufficient physical and kinematic priors to drive real-world behavior.

The paper explicitly positions this against the VLA scaling approach: "Scaling-based models such as VLA pursue broad generalization through end-to-end training but are constrained by the lack of massive, humanoid-specific datasets." (Section 1) The contrarian bet here is that video generation models will scale faster and more cheaply than robot-specific datasets, and the infrastructure to tap them for robotics is now tractable.

The evidence: the system achieves an 82.65% success rate on carry-box tasks and 64.91% on push-box tasks (Table 1) — without any task-specific physical demonstrations, driven entirely by generated video.

Retargeting Is the Wrong Abstraction — Sparse Keypoints Beat Dense Joint Matching for Generalization

Most motion tracking systems in humanoid robotics rely on dense joint-angle matching: you extract every joint angle from a human or reference motion and try to reproduce it exactly. Imagine2Real argues this is fundamentally the wrong approach for video-sourced data, because dense retargeting amplifies noise and requires object CAD models that don't exist in practice. The paper states: "In HOI scenarios, this retargeting becomes exceedingly complex: the introduction of object geometry requires intensive, time-consuming morphing to jointly align the robot and object meshes, which inherently amplifies estimation errors from the video source." (Section 1)

The counter-intuitive finding is that tracking only three points (base, left hand, right hand) while letting the BFM fill in the rest produces better real-world behavior than trying to track 20+ joint angles — because the BFM's priors ensure physical plausibility. The motion naturalness metric (mean per joint angle error) is 0.25 rad for the BFM approach versus 0.44 rad for direct tracking (Table 2) — the sparse approach actually produces more natural joint configurations, not less.

Open-Source Video Models Are Currently Inadequate for Physical AI Applications

While the paper advocates for video generation as a robotics prior, it includes a notable self-criticism that most developers would suppress: "A true closed-loop system requires jointly fine-tuning the video generator and motion tracker using physical feedback. This remains challenging, as the most capable video models are closed-source APIs, and open-source alternatives (e.g., Wan2.2) still lack the physical consistency required for complex interactions." (Section 5)

This is a direct indictment of the current open-source video generation ecosystem for Physical AI use cases. Any company building pipelines around Wan, CogVideo, or similar open models should take note — the paper's authors, who are actively trying to make this work, are saying these models are not yet physically consistent enough for complex manipulation tasks.


3. Companies Identified

ByteDance

  • Description: Chinese technology conglomerate, developer of the Seedance video generation model
  • Why relevant: Seedance 2.0 Fast is the video generation backbone chosen for real-world deployment in this paper, selected specifically for instruction-following capability and generation consistency. As cited: "For video generation, we select Seedance 2.0 Fast, which exhibits the best instruction-following capabilities and generation consistency." (Section 4.3) ByteDance is now a direct infrastructure dependency for Physical AI pipelines, not just a consumer app company.

Unitree Robotics

  • Description: Chinese humanoid and quadruped robot manufacturer
  • Why relevant: The Unitree G1 is the physical platform for all real-world experiments. "We deploy the policy on a Unitree G1 humanoid robot within a motion capture (mocap) system." (Section 4.3) The G1's presence as the test platform signals continued momentum as the default research humanoid, with implications for which hardware ecosystems benefit most from software advances like this.

OpenAI

  • Description: AI research company
  • Why relevant: Cited as a reference for video generation as world simulation (Sora). "Video generation models as world simulators." (Reference 38) The paper implicitly positions video generation models as the upstream physics prior — making the trajectory of OpenAI's video generation capabilities directly relevant to Physical AI timelines.

Kuaishou Technology

  • Description: Chinese video platform and AI company, developer of Kling
  • Why relevant: Kling 1.5 is cited alongside Seedance as a capable video generation model for robotics priors. (Reference 24) Relevant as a potential alternative infrastructure provider for video-driven robot learning pipelines.

Runway

  • Description: AI video generation company
  • Why relevant: Gen-3 Alpha is cited as part of the video generation landscape. (Reference 45) Same strategic relevance as Kuaishou — these are the upstream model providers whose physical realism directly gates robot learning quality.

NVIDIA

  • Description: GPU and simulation platform provider
  • Why relevant: All training is conducted in Isaac Gym with 8,192 parallel environments on a single RTX 4090. "We train all policies in Isaac Gym using PPO. The training is accelerated with 8,192 parallel environments on a single RTX 4090 GPU." (Section 4.1) Single-GPU training at this parallelism level is a notable efficiency signal for teams evaluating compute costs.

4. People Identified

Jiangmiao Pang

  • Lab/Institution: Shanghai AI Laboratory (co-corresponding author)
  • Why notable: Senior researcher and co-PI on this work; Shanghai AI Lab is one of the most prolific Physical AI research groups globally, with multiple papers cited throughout (PhysHSI, HumanX, BFM-zero). Pang's group is systematically building the stack from foundation models to real-world humanoid deployment.
  • Quote: Co-corresponding author on Imagine2Real; his group also appears in References 53 (PhysHSI) and 54 (HumanX), indicating a sustained research program on generalizable humanoid interaction.

Jingbo Wang

  • Lab/Institution: Shanghai AI Laboratory (co-corresponding author)
  • Why notable: Co-PI alongside Pang; appears as co-author on multiple cited works including HOMIE (Reference 4) and is building infrastructure for humanoid loco-manipulation at scale. A key figure to track in the Shanghai AI Lab humanoid program.

Jiahe Chen and Zirui Wang

  • Lab/Institution: Zhejiang University / Shanghai AI Laboratory (co-first authors)
  • Why notable: Lead researchers on the paper. Their institutional affiliation — split between Zhejiang University and Shanghai AI Lab — reflects China's academic-industry research integration model for Physical AI. These are emerging researchers to watch as this pipeline matures toward deployment.

Tianfan Xue

  • Lab/Institution: The Chinese University of Hong Kong
  • Why notable: Contributor from CUHK, which has a strong track record in computer vision and video understanding. His involvement reflects the multi-institutional collaboration driving this work and signals CUHK's engagement in the Physical AI pipeline.

Xiaowei Zhou

  • Lab/Institution: Zhejiang University
  • Why notable: Zhou's lab at Zhejiang has produced foundational work in 3D scene understanding and pose estimation; GVHMR (cited as a baseline tool for human pose estimation) originates from his group. His involvement here connects state-of-the-art visual tracking directly to robot control.

5. Operating Insights

Latent Space Constraints Are a Practical Deployment Prerequisite, Not an Academic Nicety

For any team building humanoid manipulation systems: if your motion tracking policy operates directly in joint space from sparse or noisy inputs, it will produce jitter that is physically unsafe and mechanically damaging. The paper's ablation is a direct warning. The BFM approach reduces action rate by 7.5x (1.65 → 0.22) and action smoothness by 7.1x (0.64 → 0.09) compared to direct joint tracking (Table 2). For a CTO making architecture decisions, this means investing in a foundational motion prior is not optional — it's a prerequisite for safe deployment. The practical implication is to build or license a BFM-style backbone before attempting task-specific learning, not after.

Mocap System Dependency Is the Real Deployment Bottleneck — and the Authors Know It

The paper's most important limitation is buried in the conclusion but has major operational implications: the entire real-world deployment depends on a motion capture system for two critical functions — providing real-time global keypoint positions and resolving metric scale from generated videos. "Real-world deployment relies on motion capture systems, which are prone to marker occlusion during close-contact tasks (e.g., pushing boxes). Future work could integrate self-tracking systems using on-device SLAM and multi-camera fusion." (Section 5) This means the current system cannot be deployed outside a controlled lab environment. Any investor or operator evaluating this work needs to understand that the "zero-shot" claim applies to task generalization, not environment generalization. The path to warehouse or household deployment requires solving the self-tracking problem first — which the authors explicitly flag as unsolved.

Progressive Data Staging Is an Immediately Actionable Training Architecture

The data ratios in this paper provide a practical template: ~68.5 hours of general motion data, ~8.86 hours of loco-manipulation data, and only ~0.43 hours of task-specific interaction data. Teams building humanoid manipulation stacks should structure their data collection budgets accordingly — the majority of value comes from the general motion foundation, not from expensive task-specific demonstrations. The Interaction Adaptor stage, which does the heavy lifting for object contact, requires roughly 160x less data than the BFM backbone because it inherits all prior knowledge. "This progressive paradigm fully utilizes multi-level motion datasets under severe data scarcity. By decomposing the complex HOI task, the framework leverages abundant non-interactive data to build foundational priors, reducing the sample complexity required to learn interaction skills." (Section 3.1)


6. Overlooked Insights

The Interaction Adaptor's Object Randomization Ranges Reveal What "Generalization" Actually Means Here

Hidden in Appendix A (Table 5), the domain randomization parameters for the Interaction Adaptor show object mass ranging from 0.05 to 1.5 kg, object friction from 0.1 to 1.2, and object scale from 0.8 to 1.1x default. This is a narrow and benign object space — lightweight, relatively small objects with moderate friction. The paper's box-carrying and pushing demonstrations, while impressive visually, are tested within a carefully bounded physical parameter regime. Teams evaluating whether this framework generalizes to industrial objects (heavy tools, irregular shapes, low-friction surfaces) should note that the randomization envelope does not cover those cases. The 82.65% success rate on carry-box tasks (Table 1) should be read as "works well for objects in this specific physical regime," not as a general manipulation capability.

The Open-Loop Pipeline Has a Scale Ambiguity Problem That Is Papered Over by Mocap

The paper acknowledges that generated videos lack metric depth: "Because the synthesized videos lack metric depth information, the extracted trajectories represent only relative motions. We utilize the mocap system to directly capture the precise global positions of the keypoints at the initial frame and use them to scale and calibrate the generated trajectories to real-world dimensions." (Section 3.2) This is a subtle but critical dependency: every generated motion trajectory must be re-scaled using ground-truth position data from an external tracking system. This means the video generation pipeline does not produce executable robot commands — it produces relative motion shapes that require external calibration before use. Any team attempting to replicate or extend this work without a mocap system will need to solve monocular metric depth estimation to an accuracy sufficient for robot control — a problem the authors explicitly flag as inferior to their current approach: "This approach yields higher calibration accuracy compared to monocular metric depth estimation or stereo vision." (Section 3.2) This is a significant gap between the paper's framing and the actual system requirements.