Emergence of Human to Robot Transfer in Vision-Language-Action Models
Emergence of Human to Robot Transfer in Vision-Language-Action Models
Simar Kareer · Karl Pertsch · James Darpinian · Judy Hoffman · Danfei Xu · Sergey Levine · Chelsea Finn · Suraj Nair
一句话结论
这篇论文的关键判断是:`human-to-robot transfer` 不是简单靠对齐技巧手工做出来的,而是会随着 VLA 预训练规模和多样性增长而“涌现”。也就是说,当机器人预训练覆盖足够多任务、场景和 embodiment 后,模型开始能够真正从 human video 中学到对机器人有用的东西。
关键词
摘要
中文摘要
VLA 能支持广泛的开放世界泛化,但需要大规模多样化数据。一个自然问题是:这些数据能否部分来自 human video?然而仅用 human video 训练 VLA 很困难,而且建立 human 与 robot 之间的映射通常需要大量手工工程。作者借鉴大语言模型中的“能力随规模涌现”现象,提出一个问题:对包含 human video 的 VLA,这种现象是否也成立?他们提出一种简单的 co-training recipe,并发现当 VLA 在足够多样的场景、任务和 embodiment 上预训练后,human-to-robot transfer 能力会涌现出来。分析表明,这种能力来自于多样预训练所形成的 embodiment-agnostic 表示。实验进一步显示,在只出现在 human data 中的泛化设置上,加入 human data 几乎可以把性能翻倍。
英文摘要
Vision-language-action (VLA) models can enable broad open world generalization, but require large and diverse datasets. It is appealing to consider whether some of this data can come from human videos, which cover diverse real-world situations and are easy to obtain. However, it is difficult to train VLAs with human videos alone, and establishing a mapping between humans and robots requires manual engineering and presents a major research challenge. Drawing inspiration from advances in large language models, where the ability to learn from diverse supervision emerges with scale, we ask whether a similar phenomenon holds for VLAs that incorporate human video data. We introduce a simple co-training recipe, and find that human-to-robot transfer emerges once the VLA is pre-trained on sufficient scenes, tasks, and embodiments. Our analysis suggests that this emergent capability arises because diverse pretraining produces embodiment-agnostic representations for human and robot data. We validate these findings through a series of experiments probing human to robot skill transfer and find that with sufficiently diverse robot pre-training our method can nearly double the performance on generalization settings seen only in human data.
直观理解
背景与问题
为什么做
Human video 覆盖范围大、便宜、自然,但直接拿来训练机器人策略一直很难,因为 humans 和 robots 在外观、动力学和动作空间上差异太大。
问题缺口
以往方法往往要显式设计 human-robot 映射。作者则想验证一种更像 LLM scaling law 的观点:当 VLA 预训练足够大、足够多样时,human-to-robot transfer 会不会自然出现。
方法
方法概述
这篇工作不是靠显式人机对齐工程去解决 transfer,而是提出一个更简单的 co-training recipe:把 human video 视作额外 embodiment,并在与机器人数据相近的训练目标下联合微调,再观察能力是否会随着预训练多样性而涌现。
核心机制
- 把 human video 当作额外 embodiment 参与 co-training
- 同时使用高层 sub-task prediction 和低层 action prediction
- 用只存在于 human data 的 generalization benchmark 验证 transfer 是否真的发生
- 分析 latent representation 是否随着 pretraining diversity 增长而对齐
方法拆解
- 对 human data,作者使用 3D hand tracks 和 dense language annotations 构造与机器人数据近似的监督目标
- co-finetuning 时混合 human data 与相关 robot data
- 预训练多样性被系统控制:从较弱 pretraining 到覆盖 scenes/tasks/embodiments 的更强预训练
- 然后比较 human+robot finetuning 与 robot-only finetuning 在 unseen scene/object/task 设置下的差异
结果
- human-to-robot transfer 随着 robot pretraining diversity 增长而显著增强
- 在 scene、object、task 三类 generalization benchmark 上,co-training 带来明显提升
- 论文给出的典型数字包括:Spice 32% -> 71%,dresser 25% -> 50%,bussing 53 -> 63
- 在 egg sorting 任务上,robot-only policy 只有 57% sorting accuracy,而 co-trained 后提升到 78%
- 作者认为这说明 transfer 不是手工对齐的偶然产物,而是随规模与多样性增长而涌现出的能力
洞察
- 这篇论文真正重要的地方,在于它把 “scaling brings emergence” 从 LLM 语境移到了 embodied learning。它不是简单证明 human video useful,而是证明“随着预训练足够多样,模型开始自己学会利用 human data”。
- 相对显式 human-robot alignment 路线,它更依赖 representation 自然形成
- 相对只看 robot teleoperation 的路线,它尝试把更廉价、更广覆盖的人类数据吸纳进来
- 相对单纯追求更大数据量,它更强调 diversity of scenes, tasks, embodiments
- 对具身智能来说,多样性可能比单一目标域精调更关键
- 人类视频不一定要先被完全“翻译成机器人动作”才有价值
- 这条路线很适合和 cross-embodiment transfer、world-model / VLA pretraining scale 一起看
风险与判断
局限
- 结论依赖非常强的预训练多样性,普通团队复制门槛高
- 所谓“涌现”也可能部分来自大规模 remix,而不一定完全意味着更深层抽象理解
- human data 与 robot data 的融合仍然需要 carefully designed training recipe,不是零成本接入
适用场景
- 关注 human video 利用、cross-embodiment transfer、数据扩展性的研究
- 想研究具身智能中 scaling law 类现象的场景
- 想把 “human data as another embodiment” 作为系统设计前提的方向
最终判断
- 这篇是 human-to-robot transfer 方向里很值得保留的强论文,也很适合作为你后续 topic 页的种子。
相关主题
继续阅读
上一篇
Reactive Diffusion Policy: Slow-Fast Visual-Tactile Policy Learning for Contact-Rich Manipulation
RDP 的关键不是“把力塞进 Diffusion Policy”,而是把力放到正确的时间尺度和网络位置:低频 latent diffusion policy 负责生成约 0.67 秒的高层动作块,快速 asymmetric tokenizer 则以 24 FPS 读取最新触觉或六维 wrench,把潜在动作解码成末端相对位姿。模型不输出目标力、阻抗或力矩,学到的是“看到这种受力与任务阶段时,位置应该再压入、退出还是沿曲面移动一点”。 这正面回应“小位移很难学、策略浮在表面”的问题。论文观察到有效修正确实只有亚毫米级:削皮器受力突增时向上卸力,接近黄瓜末端时向下压入以继续贴面,双臂夹杯接触后向外修正以免压瘪。真正决定能否学到的不是位移绝对值,而是示范中是否有稳定的“力变化—微位移—接触结果”相关性,以及训练、推理和机器人执行是否在时间上对齐。
下一篇
DexImit: Learning Bimanual Dexterous Manipulation from Monocular Human Videos
DexImit 的价值在于把大量单目人类操作视频转成可训练的双手灵巧机器人数据,而不是直接把 human embodiment 当成 policy 输入。它通过重建、调度、动作生成和增强四阶段,把 Internet 或生成模型产生的人类视频变成物理可行的机器人轨迹,并在零真实机器人数据下支持 sim-to-real 部署。
