跳转到内容

SparseDrive 文献笔记

⚠️ AI 生成 · 建议对照原文 本页为自动整理的学习笔记;关键数据与引用如需引用,请回查 PDF / 官方版本。

学习档位 中文笔记

类型 文献 · 更新 2026-07-19

所属 端到端驾驶

中文学习笔记(自动生成,需核验)

Section titled “中文学习笔记(自动生成,需核验)”

Topic: ad-end-to-end-driving · Tier: recent · Year: 2024 · Venue:
Evidence level: partial · 本地全文: 是 · 建议阅读: ~40 分钟
Paper: https://arxiv.org/abs/2405.19620
Code:
Generator: grok

探索稀疏场景表示替代昂贵BEV特征,统一检测/跟踪/在线建图与并行运动规划,显著提升端到端自动驾驶各任务性能与训练/推理效率,尤其规划安全性,值得关注稀疏中心范式。

SparseDrive提出对称稀疏感知+并行运动规划器的Sparse-Centric范式,以稀疏实例表示实现高效安全的端到端自动驾驶。

传统模块化自动驾驶存在跨模块信息损失与误差累积;现有端到端方法依赖计算昂贵的BEV特征,且预测与规划设计简单(顺序式、忽略双向交互与多模态),导致性能与效率不佳,尤其规划安全不足。

多视角3D检测(如LSS、PETR、Sparse4D系列)、端到端跟踪(如MOTR、Sparse4Dv3)、在线建图(如MapTR、StreamMapNet)、端到端运动预测与规划(如UniAD、VAD)、Transformer注意力机制、稀疏实例表示与nuScenes基准。

  • 探索稀疏场景表示并提出Sparse-Centric范式SparseDrive,用稀疏实例表示统一多任务。
  • 重新审视运动预测与规划的高度相似性,设计并行运动规划器;提出含碰撞感知重评分的分层规划选择策略以提升规划性能。
  • 在nuScenes上各任务指标超越先前SOTA,尤其碰撞率大幅降低,同时训练与推理效率显著更高。

多视角图像经图像编码器(backbone+neck)得到多尺度特征图;对称稀疏感知模块将特征聚合为检测/跟踪实例(特征+锚框)与在线建图实例(特征+锚折线),学习全稀疏场景表示并支持时序;并行运动规划器初始化自车实例后,与周围实例进行时空交互,同时预测多模态轨迹,再经分层选择策略输出安全规划轨迹。

对称稀疏感知:检测/跟踪与建图分支结构对称,实例=特征+几何锚(检测用11维锚框含位置尺寸朝向速度;建图用折线);非时序+时序解码器(可变形聚合、FFN、自注意力/交叉注意力、精炼与分类);跟踪采用Sparse4Dv3式ID锁定无需额外约束。并行运动规划器:自车实例从前方最小特征图平均池化初始化(语义+几何),锚框用预测速度防泄漏;拼接后做实例级时序交叉注意力、智能体自注意力、智能体-地图交叉注意力;预测多模态轨迹与分数;分层选择:按驾驶指令筛选→碰撞感知重评分(高碰撞风险置0)→最高分选择。取舍:稀疏替代BEV以提效;并行建模双向交互与多模态;碰撞重评分保安全。

主要在nuScenes基准;指标包括各任务性能(检测/跟踪/建图)、规划平均L2误差、碰撞率,以及训练时间与推理FPS;对比UniAD等SOTA。具体设置细节待来源核验完整实验部分。

SparseDrive-B平均L2误差降低19.4%(0.58m vs. 0.72m),碰撞率降低71.4%(0.06% vs. 0.21%);SparseDrive-S在所有任务上优于UniAD,训练快7.2×(20h vs. 144h),推理快5.0×(9.0 FPS vs. 1.8 FPS)。

摘录未详细讨论具体失败场景或边界;依赖多视角相机输入与稀疏实例数量设定,可能对极端遮挡、未见障碍或复杂交互场景敏感;自车初始化依赖前视特征,盲区处理有限。完整局限待来源核验。

与前序 / 同期 / 后续方法的关系

Section titled “与前序 / 同期 / 后续方法的关系”

相对BEV-Centric范式(如UniAD、VAD、GraphAD、FusionAD)改为Sparse-Centric,强调稀疏表示与并行预测-规划;感知继承Sparse4D系列、PETR、MapTR等;跟踪简化Sparse4Dv3 ID分配;规划改进先前顺序式与确定性输出,补足交互与多模态;与ViP3D、PIP等端到端预测相关但更统一。

官方代码将发布于https://github.com/swc-17/SparseDrive;建议基于nuScenes复现,关注稀疏实例初始化、时序队列、碰撞重评分实现与训练效率对比。

先读摘要与引言(问题+动机+贡献对比图),再读方法概述与图2/3/4(对称感知+并行规划细节),然后相关工作定位,最后结果与效率对比;重点方法设计与规划选择策略。

  1. Q: SparseDrive为何采用稀疏表示而非BEV? A: 先前方法依赖计算昂贵的BEV特征导致效率低;稀疏实例(特征+锚)统一多任务,降低计算量并提升训练/推理速度。
  2. Q: 运动预测与规划有哪些被忽视的相似性? A: (1)需高阶双向智能体交互(先前顺序设计忽略自车影响);(2)均需语义与几何信息(先前忽略自车);(3)均为多模态问题(先前规划仅确定性轨迹)。
  3. Q: 对称稀疏感知如何统一检测、跟踪与建图? A: 结构对称:检测用特征+锚框,建图用特征+锚折线;共享可变形聚合等解码器;跟踪用置信度阈值锁定ID并时序传播,无需额外约束。
  4. Q: 分层规划选择策略的三个步骤是什么? A: 1. 按驾驶指令(左转/右转/直行)筛选轨迹子集;2. 碰撞感知重评分(结合运动预测,高碰撞风险分数置0);3. 选最高分轨迹作为最终输出。
  5. Q: 相对UniAD的主要效率与安全提升是什么? A: SparseDrive-S训练快7.2×(20h vs 144h)、推理快5.0×(9.0 vs 1.8 FPS);B模型L2降19.4%、碰撞率降71.4%。
  • page 1 Abstract: SparseDrive consists of a symmetric sparse perception module and a parallel motion planner. The sparse perception module unifies detection, tracking and online mapping with a symmetric model architecture, learning a fully sparse representation of the driving scene.
  • page 2: Without bells and whistles, our base model, SparseDrive-B, greatly reduces the average L2 error by 19.4% (0.58m vs. 0.72m) and collision rate by 71.4% (0.06% vs. 0.21%). Compared with previous SOTA … UniAD[15], our small model, SparseDrive-S achieves superior performance among all tasks, while running 7.2× faster for training (20 h vs. 144 h) and 5.0× faster for inference (9.0 FPS vs. 1.8 FPS).
  • page 1-2 Introduction: We attribute this to the computationally expensive BEV (bird’s eye view) features and the straightforward design for prediction and planning. … three main parallels shared between motion prediction and planning are neglected
  • page 4 Method 3.1 Overview: SparseDrive is consisted of three parts: image encoder, symmetric sparse perception and parallel motion planner. … motion prediction and planning are conducted simultaneously to get multi-modal trajectories for all road agents. … hierarchical planning selection strategy
  • page 5-6 Hierarchical Planning Selection: First, we select a subset of trajectory proposals τp,cmd … corresponding to the high-level command cmd. Then, a novel collision-aware rescore module is adopted to ensure safety. … we simply set the score of collided trajectory to 0. Finally, we
  • page 1 Abstract / Code: Code will be avaliable at https://github.com/swc-17/SparseDrive for facilitating future research.
  • topic: end-to-end-learning
  • sources: semantic-scholar-http
  • retrieved_at: 2026-07-20
  • query: end-to-end learning autonomous driving survey
  • corpus_id: 270123261
  • arxiv: 2405.19620
  • doi: 10.1109/ICRA55743.2025.11128800
  • score_total: 67
  • suggested_tier: recent

(no prose relevance explanation — numeric score only or HTTP source)

(no snippet evidence in candidate pool)

生成:2026-07-21 · 来源条数 2 · 模型 heuristic · 需人工核验数字

围绕「SparseDrive 文献笔记」的核心问题与动机(待结合全文核验)。

  • 见原文方法章节;以下为基于摘要/摘录的要点提示。
  • SparseDrive: End-to-End Autonomous Driving via Sparse Scene Representation …

与相近工作的关系待核验;请对照 related work。

  • 勿仅凭摘要推断未给出的数值指标。
  1. 这篇工作的输入/输出表示是什么?(SparseDrive 文献笔记)
  2. 训练目标与评测协议各是什么?
  3. 主要失败模式或局限是什么?
flowchart LR
A["输入 / 观测"] --> B["表示 / 编码"]
B --> C["推理 / 解码"]
C --> D["输出 / 动作或检测"]
%% method sketch for: SparseDrive 文献笔记

方法结构示意(重绘;细节以原论文为准,待 PDF 核验)。

SparseDrive 文献笔记 arch p.1

来源:原论文约 p.1(arch);学习用途摘录。

SparseDrive 文献笔记 table p.7

来源:原论文约 p.7(table);学习用途摘录。

展开英文 Paper Card / AI deep analysis
Field Content
Year 2024
Authors
arXiv 2405.19620
DOI
Topics ad-end-to-end-driving
Paper https://arxiv.org/abs/2405.19620
展开 Extract / Selections / Local assets
  • ad-end-to-end-driving: tier=recent score=85 — ICLR 2025 SparseDrive — sparse perception-to-planning; strong NAVSIM lineage
SparseDrive: End-to-End Autonomous Driving via
Sparse Scene Representation
Wenchao Sun1,2 Xuewu Lin2 Yining Shi1 Chuang Zhang1 Haoran Wu1 Sifa Zheng1
1 2
Tsinghua University Horizon
arXiv:2405.19620v2 [cs.CV] 31 May 2024
Abstract
The well-established modular autonomous driving system is decoupled into dif-
ferent standalone tasks, e.g. perception, prediction and planning, suffering from
information loss and error accumulation across modules. In contrast, end-to-end
paradigms unify multi-tasks into a fully differentiable framework, allowing for
optimization in a planning-oriented spirit. Despite the great potential of end-to-
end paradigms, both the performance and efficiency of existing methods are not
satisfactory, particularly in terms of planning safety. We attribute this to the compu-
tationally expensive BEV (bird’s eye view) features and the straightforward design
for prediction and planning. To this end, we explore the sparse representation
and review the task design for end-to-end autonomous driving, proposing a new
paradigm named SparseDrive. Concretely, SparseDrive consists of a symmetric
sparse perception module and a parallel motion planner. The sparse perception
module unifies detection, tracking and online mapping with a symmetric model
architecture, learning a fully sparse representa