Get Started
Home
Topics
Search
Library
Multimodal · Robotics · Jun 26, 2026

Translation as a Bridging Action: Transferring Manipulation Skills from Humans to Robots

Source: research paper via Hugging Face Daily Papers
Robot manipulation policies starve for teleop data, and the usual fix—treating human hand video as a 6DoF embodiment—feeds models rotations that pose estimators hallucinate and two-finger grippers can’t execute anyway. Dropping rotation and sharing only head-camera-relative wrist translation lifts success from 12.5% to 38.3%.
TL;DR
The paper trains a bi-manual robot to learn new skills from cheap egocentric human videos by throwing away wrist rotation and keeping only wrist translation in the head-camera frame as a shared human-robot action, lifting overall success from 12.5% to 38.3% versus using full 6DoF human wrist poses.
Why It Matters
If you’re building a robot product, the bottleneck is teleoperated demonstrations: slow, expensive, hardware-locked. Headset-recorded human videos are orders of magnitude cheaper and cover way more skills and scenes. The standard move is to extract a 6DoF wrist pose from a hand-pose estimator and treat the human as just another embodiment, which is how prior systems like EgoMimic and GR-3 feed human data into a Vision-Language-Action model. Problem: the pose estimator’s rotation estimates are noisy, and a five-fingered hand grasps things in ways a two-finger Parallel gripper physically cannot. So the rotation signal you’re copying is partly hallucinated and partly meaningless for the target hardware.
How It Works
The contribution is a deliberately impoverished action representation. Instead of trying to transfer the full 6DoF wrist pose from human to robot, the authors keep only the 3D translation of each wrist, expressed relative to the head camera at the start of the action chunk. Both a human wearing a PICO 4 Ultra Enterprise headset and the ByteMini robot can produce this signal cleanly, because both agents “act on what they see” from a head-mounted viewpoint. Rotation and gripper state are still learned, but only from data sources where they’re trustworthy (robot teleop, plus hand-closure annotation for in-lab humans).
The model is a roughly 4B-parameter π0 (pi-zero)-style architecture: a frozen-ish vision-language backbone (Qwen2.5-VL) feeds a separate action Transformer that denoises action chunks via Flow matching. The trick that holds everything together is interleaved action tokens: each action chunk is a sequence [wrist-translation, 6DoF-end-effector, gripper], and any component the current data source lacks is masked out of attention and dropped from the loss. So a Web human clip supervises only translation; a robot trajectory supervises all three.
Training is three stages:
# Stage I: ~600h human video, translation-only loss for batch in human_data: loss = flow_matching(pred_wrist_translation, gt) # Stage II: co-train. Critical augmentation: for batch in robot_data: if random() < p: # randomly add or substitute target = wrist_translation_only # force binding else: target = (wrist_translation, eef_6dof, gripper) loss = flow_matching(pred, target) # Stage III: 10 robot trajectories/task fine-tune
The Stage II augmentation, randomly making the robot also predict just the translation channel, is what binds the shared bridging signal to executable robot control. Without it, the two action heads drift apart.
Core Insight
The prevailing approach to learning from human video treats the hand as a noisy 6DoF embodiment and tries to denoise or re-target the full pose. This paper argues the opposite. Drop the rotation channel from human data entirely. A coarse but clean signal that both embodiments can honestly produce transfers better than a rich signal that one of them is faking. The cleanest evidence is the head-to-head where the only variable is 6DoF vs translation-only human supervision, not the headline pre-training scale-up.
What They Found
•
Translation-only beats 6DoF human actions head-to-head. Co-training from scratch with full 6DoF human wrist actions gets 12.5% overall success and visibly distorted wrist poses near contact. Swapping to translation-only more than doubles success to 22.5% with the same data and pipeline. This is the load-bearing result: it isolates the representation choice from everything else.
•
The bridging signal is needed on robot data too. If you keep the representation but stop randomly forcing the robot to predict the translation channel during co-training, overall success collapses from 38.3% to 12.5%. The shared channel only transfers if both sides train on it.
•
Pre-training scales. Adding ~600 hours of human-only pre-training (including EgoDex and out-sourced household video) on top of co-training improves nearly every task category, even though pre-training never sees an executable robot action.
•
Few-shot post-training gets cheaper. With just 10 robot trajectories per task in Stage III, human-pre-trained models hit 55.0% success vs 35.8% for the no-pre-training baseline.
•
Upper-bound probe. Treating in-domain robot demos as if they were human data (translation-only, same objective) reaches 55.8% success, showing the representation itself has headroom; the remaining gap is visual and embodiment noise from real human video.
•
Where it breaks. Tasks needing precise wrist orientation at contact (inserting a straw into a cup, getting the right grip angle to pull a drawer) are the consistent failure mode, exactly as the design predicts.
What’s Useful
Reach for this when you’re building a manipulation policy and your robot-demo budget is the constraint. The recipe: mount a head camera on both the human collector and the robot, express wrist motion as translation relative to that camera at chunk start, and let your policy network mask out whichever channels (rotation, gripper) aren’t reliable for a given data source. Use cheap human video for everything that’s mostly reach-and-position, and reserve teleop budget for contact-rich rotation skills.
The paper reports use of EgoDex plus out-sourced household human video and a robot pick-and-place corpus, but does not release code, weights, or the in-lab dataset in the text provided. Hardware is the ByteMini platform with a PICO 4 Ultra Enterprise headset for human capture. If you want to reproduce, you’re rebuilding the π0 (pi-zero)-style stack yourself.
Takeaway
When transferring across embodiments, pick the signal both sides can produce honestly, even if it’s poorer. A clean 3-DoF channel shared by human and robot beats a noisy 6-DoF channel where the human half is partly hallucinated by a pose estimator and partly meaningless for a two-finger gripper.
Caveats
•
The approach gives up rotation by design, so any skill where contact angle matters (threading, plugging, tight inserts) is structurally weak; the failure analysis confirms this.
•
Absolute success rates are still modest (38% overall without post-training, 55% with 10-shot post-training) on 15 tasks evaluated 8 trials each. Statistical resolution per task is limited.
•
The “head-camera frame” assumption requires a head-mounted camera on the robot at roughly human-like viewpoint. Embodiments without that (table-mounted arms, very different camera geometries) lose the shared observation perspective that makes the bridging signal coherent.
Topics
Don't miss new content
Log in to follow topics and personalize your feed.
By content type
Research Paper171 episodes
AI171 episodes