← VLA Atlas

InternVLA-M1 SimplerEnv-Google 80.7% · LIBERO 95.9%

Shanghai AI Lab · Qwen2.5-VL-3B + DiT action head · 2.3M 空间推理预训练 · 空间 grounding 与 action 双系统 co-training

InternVLA-M1arXiv 2510.13778)的核心命题:指令和动作之间缺一个 "where to act" 的中间量。传统 VLA 直接从 language 映到 action,遇到空间关系变了 / 物体位置换了 就崩。M1 主张先 grounding 到视觉空间位置(box / point / trace),再映到本体感知的动作

两阶段管线:(1) 在 2.3M 空间推理数据上 pretrain 空间 grounding —— 学 "where",与本体无关;(2) 空间引导的 action post-training,通过 plug-and-play spatial prompting 学 "how"—— 本体感知。

关键数字(论文 Table 1-4 口径)

BenchmarkInternVLA-M1Vanilla VLAΔ第二强对手
SimplerEnv Google-Robot VM80.766.1+14.675.1 (SpatialVLA)
SimplerEnv Google-Robot VA76.063.5+12.570.7 (SpatialVLA)
SimplerEnv WidowX VM71.754.7+17.061.9 (GR00T N1.5)
LIBERO 平均95.991.6+4.394.3 (π₀.₅-KI)
  LIBERO-Long92.688.0+4.690.6 (GR00T N1)
  LIBERO-Object99.098.0+1.098.8 (π₀)
200 tasks Isaac-Sim(自建)baseline+6.2baseline+6.2超过 GR00T N1.5
真机 clustered pick-and-placebaseline+7.3baseline+7.3
合成 co-training · unseen objectsbaseline+20.6baseline+20.6

SimplerEnv Google-Robot VM 分任务(论文 Table 1)

任务InternVLA-M1CogACTπ₀OpenVLA
Pick Coke Can95.391.372.718.0
Move Near90.085.065.356.3
Open/Close Drawer75.571.838.363.0
Open Top Drawer & Place Apple62.050.90.0
Avg (VM)80.774.858.834.3

SimplerEnv WidowX(论文 Table 2)

任务InternVLA-M1GR00T N1.5CogACTπ₀-FAST
Put Spoon on Towel87.575.371.729.1
Put Carrot on Plate67.954.350.821.9
Stack Green on Yellow Block31.357.015.010.8
Put Eggplant in Yellow Basket10061.367.566.6
Avg71.761.951.348.3

两阶段管线

Stage 1 · Spatial Grounding Pretrain

2.3M spatial reasoning data · 训 VLM 学 box / point / trace 三种空间输出,与本体无关。

Stage 2 · Spatially-Guided Action Post-training

用 plug-and-play spatial prompting 把 grounding 结果作为条件馈给 DiT action head,产 embodiment-aware 动作。

训练:16× A100 · 50k steps (~2.5 epochs) · robot data batch 256 · multimodal data batch 64 · action chunk 16 · 观察空间 primary camera image + task instruction + spatial prompt。

为什么 co-training 有效(论文 Figure 5)

Projection-space Similarity (PSS)(Raghu 2017 SVD 度量)分析梯度子空间对齐:

Ablation Table 3 里对比更明显:Vanilla co-train 的空间感知(RefCOCO-g box IoU)到 66.7,而 InternVLA-M1 到 71.2;同时操纵性能 Google-VM 从 70.2 提到 80.7 —— 两个能力都增强,不 tradeoff。

长时任务:System-2 planner 打过 GPT-5(论文 Table 5)

M1 的 dual-system 高层 planner 用同一个模型的 3B backbone;对照通用大模型:

模型Sort into DrawersMake SandwichesDesktop SortMath CalcGoods Purchase
Gemini-2.5 Pro5762835361
GPT-57567627982
GPT-4o3757353941
Qwen2.5-VL-72B3171343329
Ours-3B9091919392

3B 领域微调的 planner 在具身长时任务分解上大幅超过 GPT-5 / Gemini —— 说明具身规划是"领域强调优 > 通用能力"的问题。

相关

GR00T N1(同样 dual-system)
System 1/2 架构 · InternVLA-M1 走 spatial grounding 路线
ThinkAct(同样 dual-system)
Reasoning + latent planning · 另一种 dual-system 姿势
π₀ / π₀-FAST(对照)
M1 SimplerEnv WidowX +23.4 point 打过

参考链接

arXiv 2510.13778
InternVLA-M1: Spatially Guided VLA · 2025-10-15
GitHub · InternRobotics/InternVLA-M1
代码 + 模型 · Shanghai AI Lab