AI Skills AI技能 3h ago Updated 1h ago 更新于 1小时前 50

The End of the Modular Stack: Comparing AutoVLA, Alpamayo, and Qwen-Drive-1.0 模块化栈的终结:AutoVLA、Alpamayo 与 Qwen-Drive-1.0 对比

Vision-Language-Action (VLA) models are replacing the traditional modular autonomous driving stack (perception → prediction → planning → control) with unified transformer-based architectures that handle sensing, reasoning, and control in a single model Three flagship models dominate the current landscape: AutoVLA (3B, edge-deployable, token-based action discretization), NVIDIA's Alpamayo (34B teacher model with Chain-of-Causation reasoning and diffusion decoding), and Qwen-Drive-1.0 (frozen VLM 端到端VLA模型正在取代传统模块化自动驾驶软件栈,AutoVLA、NVIDIA Alpamayo和Qwen-Drive-1.0代表了三种不同的技术路线 AutoVLA采用3B参数、token-based解码方案,适合边缘部署;Alpamayo是34B云端教师模型,提供Chain-of-Causation推理能力;Qwen-Drive-1.0采用冻结骨干+模块化heads设计,提供显式3D感知 三种方案的核心差异在于感知隐式编码vs显式BEV、推理速度vs可解释性、边缘部署vs云端蒸馏的权衡 端到端架构已成为自动驾驶技术演进的主流方向,但"在哪里放置计算权重"比"哪个模型最准确"更重要

68
Hot 热度
76
Quality 质量
72
Impact 影响力

Analysis 深度分析

TL;DR

  • Vision-Language-Action (VLA) models are replacing the traditional modular autonomous driving stack (perception → prediction → planning → control) with unified transformer-based architectures that handle sensing, reasoning, and control in a single model
  • Three flagship models dominate the current landscape: AutoVLA (3B, edge-deployable, token-based action discretization), NVIDIA's Alpamayo (34B teacher model with Chain-of-Causation reasoning and diffusion decoding), and Qwen-Drive-1.0 (frozen VLM backbone with modular, swappable task heads including an explicit BEV perception probe)
  • The core architectural fault line is implicit perception (folded into the backbone) versus explicit, inspectable perception heads — a design choice that determines deployability, interpretability, and upgrade path
  • AutoVLA's physical action tokens (2,048-entry codebook) make trajectory generation mechanically identical to next-token prediction, enabling lightweight deployment on embedded hardware like Jetson Thor
  • Alpamayo's teacher-student paradigm and Qwen-Drive-1.0's modular head architecture represent two divergent strategies: one optimized for training-data generation and distillation, the other for incremental, inspectable deployment upgrades

Why It Matters

This article captures a pivotal architectural shift in autonomous driving from brittle, handoff-based modular stacks to unified end-to-end VLA models — a transition that will redefine how companies build, deploy, and maintain self-driving software. For AI practitioners, the key takeaway is that the choice between implicit vs. explicit perception, token-based vs. diffusion-based action decoding, and monolithic vs. modular design is no longer theoretical; it directly determines whether a model can run on edge hardware today or serves as a teacher for tomorrow's systems.

Technical Details

  • AutoVLA (UCLA): Built on a Qwen2.5-VL-3B backbone with zero separate perception head. Continuous trajectories are quantized into a 2,048-entry codebook of "physical action tokens" ( through ), making planning indistinguishable from autoregressive token generation. Features a dual-thinking planner (fast: trajectory-only; slow: full chain-of-thought). Inputs: 3 RGB cameras, 4 frames @ 2Hz, navigation instruction, ego state. Trained with SFT + GRPO-based RL fine-tuning. Validated on nuPlan, nuScenes, Waymo E2E Challenge, and CARLA.
  • NVIDIA Alpamayo: A teacher-model family (not for direct vehicle deployment). Alpamayo 2 Super uses a 64-layer, hidden-5120 Cosmos 3 Super Reasoner backbone (~32B) + 2.3B diffusion action expert (34B total). Task heads include: diffusion trajectory decoder (64 waypoints, 0.1–6.4s @ 10Hz, XYZ + 3×3 rotation), Chain-of-Causation reasoning, meta-action labels, VQA with 2D grounding, and structured auto-labeling. Only the trajectory head invokes the diffusion expert. Inputs: 6–7 RGB cameras, 4 frames, full egomotion history, text prompts. Trained on ~115K hours video + 3.7M CoC traces. Peak ~72GB VRAM on H100.
  • Qwen-Drive-1.0: Takes a frozen pretrained Qwen3.5–4B VLM backbone (~9.1GB) with externally attached modular heads. BEV Perception Head (0.5GB): explicit 3D detection + occupancy + segmentation. Planning Expert (2.1GB): two variants — planner-sft (flow matching, direct + reasoning) and planner-rl (reward-optimized on NAVSIM PDMS and WOD-E2E RFS). VQA mode uses the untouched backbone. All heads share the frozen VLM representation and load as subfolders. Multi-camera RGB + text inputs. Achieves WOD-E2E RFS of 8.45 and NAVSIM PDMS of 90.7.
  • Other notable VLAs: OpenDriveVLA (hierarchical vision-language alignment, 0.5B/3B variants), Waymo EMMA (Gemini-based, natural-language unified representation, research-only), Qwen-RobotNav (general navigation VLA, 91.4 PDMS on NAVSIM), SpanVLA, MindVLA-U1, SimWAM-IL (benchmark baselines with limited documentation).

Industry Insight

  • The implicit-vs-explicit perception divide will become the defining architectural choice for the next generation of driving VLAs: teams prioritizing deployability on constrained hardware should favor implicit perception (AutoVLA-style), while those needing regulatory compliance and inspectability should invest in explicit BEV heads (Qwen-Drive-1.0-style)
  • Teacher-student distillation pipelines (as pioneered by Alpamayo) will likely become the standard for scaling reasoning capability in production models, meaning companies should prioritize building CoC-annotated training datasets now rather than retrofitting them later
  • The modular-head paradigm (frozen backbone + swappable task heads) offers the most pragmatic deployment path for teams with existing VLM infrastructure, as it enables incremental upgrades to perception or planning without retraining the entire stack — a significant advantage over monolithic end-to-end approaches

TL;DR

  • 端到端VLA模型正在取代传统模块化自动驾驶软件栈,AutoVLA、NVIDIA Alpamayo和Qwen-Drive-1.0代表了三种不同的技术路线
  • AutoVLA采用3B参数、token-based解码方案,适合边缘部署;Alpamayo是34B云端教师模型,提供Chain-of-Causation推理能力;Qwen-Drive-1.0采用冻结骨干+模块化heads设计,提供显式3D感知
  • 三种方案的核心差异在于感知隐式编码vs显式BEV、推理速度vs可解释性、边缘部署vs云端蒸馏的权衡
  • 端到端架构已成为自动驾驶技术演进的主流方向,但"在哪里放置计算权重"比"哪个模型最准确"更重要

为什么值得看

本文系统对比了当前最具代表性的三款端到端自动驾驶VLA模型,为从业者提供了从边缘部署到云端训练的全景技术参考。文章揭示了自动驾驶软件架构从模块化向端到端转型的关键趋势,帮助团队根据自身硬件约束和部署目标做出架构选型决策。

技术解析

AutoVLA:基于Qwen2.5-VL-3B骨干,无独立感知头,将连续轨迹量化为2048个action token融入LLM词表,实现"生成轨迹=生成下一个词"。支持双模式推理(快速模式仅输出轨迹,慢速模式输出CoT推理链)。输入仅需3个RGB摄像头、4帧2Hz序列、导航指令和自车状态,适合Jetson Thor等边缘平台部署。

Alpamayo:NVIDIA的云端教师模型家族,旗舰版Alpamayo 2 Super达34B参数(32B骨干+2.3B扩散action expert)。采用Chain-of-Causation推理,输出64个waypoint轨迹、元动作标签、VQA grounding等。训练数据达11.5万小时多摄像头视频+370万CoC推理链,需6-7摄像头输入,单卡H100峰值约72GB显存,定位为蒸馏源而非车载部署。

Qwen-Drive-1.0:采用冻结Qwen3.5-4B VLM骨干+可插拔模块化heads的折中方案。包含0.5GB显式BEV感知头(3D检测+占据栅格+语义分割)、2.1GB规划专家(支持flow matching和RL优化两种变体)、以及9.1GB的VQA/VLA模式。RL规划变体在WOD-E2E RFS达8.45、NAVSIM PDMS达90.7,为三者中最佳。

行业启示

  • 架构选型取决于部署目标:边缘部署应优先考虑AutoVLA的token方案或Qwen-Drive-1.0的模块化设计;云端训练和长尾数据构建则应投资Alpamayo式的教师模型蒸馏管线
  • 显式vs隐式感知是下一代VLA的分水岭:Qwen-Drive-1.0的显式BEV头提供可解释性和可调试性,而AutoVLA/Alpamayo的隐式感知更简洁但黑盒化,这一架构分歧将决定未来技术路线
  • 数据规模和推理效率的权衡:Alpamayo证明大规模训练数据(11.5万小时)和CoC推理标注能显著提升长尾场景处理能力,但代价是72GB显存需求;实际部署需在数据规模、推理延迟和硬件成本间寻找平衡点

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Autonomous Driving 自动驾驶 Research 科学研究 LLM 大模型 Multimodal 多模态 Open Source 开源