OpenVLA 是一个 70 亿参数的开源视觉-语言-动作模型,在 970k 真实机器人演示上训练。它在 BridgeData V2 基准上以 71.3% 的任务成功率超越闭源 RT-2-X(55B 参数)16.5%,同时支持在消费级 GPU 上通过 LoRA 进行参数高效微调,将显存需求从 163 GB 降至 60 GB。OpenVLA is an open-source vision-language-action model with seven billion parameters, trained on 970k real-world robot demonstrations. On the BridgeData V2 benchmark it reaches a 71.3% task success rate, outperforming the closed-source RT-2-X (55B parameters) by 16.5%, while supporting parameter-efficient fine-tuning with LoRA on consumer-grade GPUs, cutting memory requirements from 163 GB to 60 GB.
当前最强的视觉-语言-动作(VLA)模型(如 RT-2-X)均为闭源,架构、训练数据、部署方法均不公开;而开源社区的替代方案又缺乏在消费级硬件上高效适配新机器人和任务的实用手段。OpenVLA 旨在填补这一空白。The strongest current vision-language-action (VLA) models, such as RT-2-X, are all closed-source: their architectures, training data and deployment methods are undisclosed; meanwhile, open-source alternatives lack practical means for efficiently adapting to new robots and tasks on consumer-grade hardware. OpenVLA aims to fill this gap.
"We present OpenVLA, a 7B-parameter open-source VLA trained on 970k real-world robot demonstrations from the Open X-Embodiment dataset, and show that it outperforms RT-2-X (55B parameters) by 16.5% on manipulation tasks while requiring 7× fewer parameters."
RT-2-X 等顶尖 VLA 不公开权重与训练代码,研究者无法复现、改进或深入理解其决策机制。学术界和工业界被迫从头开发,资源浪费严重。Top-tier VLAs such as RT-2-X release neither weights nor training code, so researchers cannot reproduce, improve or deeply understand their decision-making mechanisms. Academia and industry are forced to build from scratch, at a heavy cost in wasted resources.
现有 VLA 论文几乎没有讨论如何高效地将模型适配到新机器人、新场景、新任务。全量微调需要多台 A100,普通实验室无法承受。量化和 LoRA 等方法在 VLA 场景下的效果尚未系统研究。Existing VLA papers hardly discuss how to efficiently adapt a model to new robots, new scenes and new tasks. Full fine-tuning requires several A100 GPUs, which is out of reach for an ordinary lab. The effectiveness of methods such as quantization and LoRA has not been systematically studied in the VLA setting.
OpenVLA 将机器人控制重新表述为视觉-语言任务:给定图像观测和语言指令,模型以自回归 token 序列方式预测连续动作。核心创新在于双视觉编码器融合、动作 token 化方案,以及基于 Open X-Embodiment 的大规模多机器人训练。OpenVLA reformulates robot control as a vision-language task: given an image observation and a language instruction, the model predicts continuous actions as an autoregressive token sequence. The core innovations are the fusion of dual vision encoders, the action tokenization scheme, and large-scale multi-robot training on Open X-Embodiment.
OpenVLA 将 DINOv2(擅长空间推理与细粒度定位)和 SigLIP(擅长语义理解与语言对齐)的特征在 token 维度直接拼接,输入 224×224 像素图像。实验证明:更高分辨率(如 384×384)在机器人操作任务上没有带来性能提升,却使训练时间增加了 3 倍。OpenVLA directly concatenates, along the token dimension, the features of DINOv2 (strong at spatial reasoning and fine-grained localization) and SigLIP (strong at semantic understanding and language alignment), taking 224×224 pixel images as input. Experiments show that higher resolution (e.g. 384×384) brings no performance gain on robot manipulation tasks, yet increases training time threefold.
对每个动作维度,使用训练数据的 1st–99th 百分位范围均匀离散化为 256 个 bin。为最小化对语言知识的干扰,将 Llama 2 词表中使用频率最低的 256 个 token 直接覆写为动作 token,并在交叉熵损失中只计算动作 token 的梯度。For each action dimension, the 1st–99th percentile range of the training data is uniformly discretized into 256 bins. To minimize interference with linguistic knowledge, the 256 least frequently used tokens of the Llama 2 vocabulary are directly overwritten as action tokens, and the cross-entropy loss takes gradients only on action tokens.
针对将 OpenVLA 适配至新机器人设置(如 Franka Emika Panda),作者系统评估了 LoRA、Sandwich adapter 及全量微调方案。LoRA r=32 仅需训练 97.6M 参数(全量的 1.4%),在单块 A100 上完成微调(10–15 小时),显存需求从 163.3 GB 降至 59.7 GB,且性能与全量微调持平。For adapting OpenVLA to a new robot setup (e.g. Franka Emika Panda), the authors systematically evaluate LoRA, a Sandwich adapter and full fine-tuning. LoRA r=32 trains only 97.6M parameters (1.4% of the full model), completes fine-tuning on a single A100 (10–15 hours) and lowers memory demand from 163.3 GB to 59.7 GB, while matching the performance of full fine-tuning.
使用 bitsandbytes 库的 int4 量化,在保持 71.9% 成功率(与 bfloat16 的 71.3% 相当)的同时,将推理显存从 16.8 GB 压缩至 7.0 GB,使 OpenVLA 可在单张消费级 GPU 上运行。With int4 quantization from the bitsandbytes library, the success rate is kept at 71.9% (on par with 71.3% at bfloat16) while inference memory is compressed from 16.8 GB to 7.0 GB, letting OpenVLA run on a single consumer-grade GPU.
在三个真实机器人平台(WidowX、Google Robot、Franka)上评估,对比基线包括 RT-2-X、RT-1-X、Octo 和 Diffusion Policy。评测维度涵盖视觉泛化(新背景、干扰物)、运动泛化(新位置)、物理泛化(新大小/形状)和语义泛化(新物体、新指令)。Evaluation is carried out on three real robot platforms (WidowX, Google Robot, Franka), with baselines including RT-2-X, RT-1-X, Octo and Diffusion Policy. The evaluated dimensions cover visual generalization (new backgrounds, distractors), motion generalization (new positions), physical generalization (new sizes/shapes) and semantic generalization (new objects, new instructions).
| 模型Model | BridgeData V2 成功率BridgeData V2 Success Rate | Google Robot 成功率Google Robot Success Rate | 参数量Parameters |
|---|---|---|---|
| RT-2-X(闭源)RT-2-X (closed-source) | 54.8% | ~75% | 55B |
| RT-1-X | — | <75% | 35M |
| Octo | <54.8% | <75% | 93M |
| OpenVLA(本文)OpenVLA (ours) | 71.3% ±4.8% | 75.0% | 7B |
| 方法Method | 综合成功率Overall Success Rate | 最低单任务成功率Lowest Per-Task Success Rate |
|---|---|---|
| Diffusion Policy | 47.4% ±5.4% | — |
| Octo 微调Octo fine-tuned | 47.0% ±5.5% | ~0%(部分任务)~0% (some tasks) |
| OpenVLA 从头训练OpenVLA trained from scratch | 42.2% ±5.9% | — |
| OpenVLA 微调OpenVLA fine-tuned | 56.6% ±5.8% | ≥50%(全部任务)≥50% (all tasks) |
| 微调策略Fine-Tuning Strategy | 成功率Success Rate | 可训练参数(M)Trainable Params (M) | 显存(batch 16)Memory (batch 16) |
|---|---|---|---|
| Full FT(全量微调)Full FT (full fine-tuning) | 69.7 ±7.2% | 7,188.1 | 163.3 GB* |
| LoRA r=32 | 68.2 ±7.5% | 97.6 | 59.7 GB |
| LoRA r=64 | 68.2 ±7.8% | 195.2 | 60.5 GB |
| Sandwich Adapter | 62.1 ±7.9% | 914.2 | 64.0 GB |
| 精度Precision | 成功率Success Rate | 推理显存Inference Memory |
|---|---|---|
| bfloat16 | 71.3 ±4.8% | 16.8 GB |
| int8 | 58.1 ±5.1% | 10.2 GB |
| int4 | 71.9 ±4.7% | 7.0 GB |
OpenVLA 当前仅支持单张图像作为观测输入,不支持观测历史序列,也不支持 proprioceptive(本体感知)信息(如关节角度)。这使其无法处理需要时序推理的任务(如 ALOHA 双臂操作),也与 Octo 等支持多模态输入的策略存在差距。OpenVLA currently accepts only a single image as observation input; it supports neither observation history sequences nor proprioceptive information (such as joint angles). This makes it unable to handle tasks requiring temporal reasoning (e.g. bimanual ALOHA manipulation) and leaves a gap to policies such as Octo that accept multimodal inputs.
受 Llama 2 自回归解码的限制,OpenVLA 的推理速度约为 6 Hz,远低于 ALOHA 等高频控制系统所需的 50 Hz。这限制了其在需要快速响应的灵巧操作任务中的应用。Constrained by the autoregressive decoding of Llama 2, OpenVLA runs at about 6 Hz, far below the 50 Hz required by high-frequency control systems such as ALOHA. This limits its use in dexterous manipulation tasks that demand fast responses.
尽管在多个基准上超越现有方法,OpenVLA 在大多数任务上的成功率仍低于 90%,离真实部署所需的鲁棒性存在差距。Although it surpasses existing methods on several benchmarks, OpenVLA's success rate on most tasks is still below 90%, short of the robustness needed for real-world deployment.
作者指出以下问题未被充分研究:① 基础 VLM 规模(7B 是否最优);② 与 Internet 数据联合训练的效果;③ 视觉特征选择的最优方案(DINOv2 + SigLIP 组合是否是最优选择)。这些问题留待未来工作解答。The authors point out the following insufficiently studied questions: ① the scale of the base VLM (is 7B optimal?); ② the effect of co-training with Internet data; ③ the best scheme for choosing visual features (is the DINOv2 + SigLIP combination the optimal choice?). These are left to future work.