DriveAdapter: Breaking the Coupling Barrier of Perception and Planning in End-to-End Autonomous Driving
DriveAdapter: Breaking the Coupling Barrier of Perception and Planning in End-to-End Autonomous Driving
Section titled “DriveAdapter: Breaking the Coupling Barrier of Perception and Planning in End-to-End Autonomous Driving”⚠️ AI 生成 · 建议对照原文 本页为自动整理的学习笔记;关键数据与引用如需引用,请回查 PDF / 官方版本。
学习档位 中文笔记
类型 文献 · 更新 2026-07-19
所属 端到端学习
中文学习笔记(自动生成,需核验)
Section titled “中文学习笔记(自动生成,需核验)”Topic: end-to-end-learning · Tier: recent · Year: 2023 · Venue: —
Evidence level: partial · 本地全文: 是 · 建议阅读: ~50 分钟
Paper: https://arxiv.org/abs/2308.00398
Code: —
Generator: grok
为什么值得读
Section titled “为什么值得读”提出解耦感知与规划的DriveAdapter范式,用Adapter+掩码特征对齐直接复用RL教师规划知识,避免行为克隆因果混淆与分布差距,在CARLA闭环基准达SOTA,并提供可解释BEV中间表示与消融洞察。
DriveAdapter通过可学习Adapter与动作引导掩码特征对齐,打破端到端自动驾驶感知-规划耦合障碍,直接利用冻结教师模型规划。
现有Teacher-Student范式下学生仍需从头学规划头(行为克隆易致因果混淆如惯性问题),且即使SOTA感知预测特权输入(BEV分割)喂给冻结教师也因大分布差距导致性能差;直接RL则训练低效。
端到端自动驾驶、Teacher-Student范式(如Roach特权输入RL)、行为克隆与因果混淆、BEV感知(BEVFusion/LSS/SECOND)、语义分割(Mask2former)、Adapter迁移思想、CARLA闭环仿真、强化学习特权输入。
- 首次彻底探索直接利用冻结教师头进行规划的解耦范式,避免行为克隆因果混淆等缺点。
- 感知与规划间BEV分割中间输出具有强可解释性,可受益于BEV感知与语义分割快速进展。
- 提出DriveAdapter及掩码特征蒸馏/动作引导特征学习策略,处理不完美感知与不完美教师,在两个CARLA公共闭环基准达SOTA。
- 给出彻底消融研究与相关尝试(如直接生成教师中间特征)以提供新范式洞察。
Stage1用特权输入(GT BEV)RL训练教师(Roach);学生(BEVFusion将四相机+LiDAR转为BEV特征+Mask2former分割)从原始传感器预测BEV分割;在冻结教师各模块后插入可学习Adapter,做层间特征对齐;再叠加动作引导损失与掩码(当教师被规则覆盖时掩码对齐损失),最终输出控制信号;整体端到端可微。
关键模块和设计取舍
Section titled “关键模块和设计取舍”学生感知:BEVFusion(LSS相机散射+SECOND LiDAR)+Mask2former做BEV语义分割(目标为教师所需特权输入)。Adapter:教师每模块后加可学习Adapter,用特征对齐目标逐层将学生不完美特征转到教师域。动作引导掩码特征学习:回传动作损失至所有Adapter,并当规则覆盖教师时掩码对齐损失,注入手工艺规则先验、直接学好动作特征。取舍:冻结教师保留RL因果知识与高效训练,Adapter处理分布差距,掩码突破纯学习教师上限;中间BEV可解释但依赖感知质量。
数据集、实验设置与指标
Section titled “数据集、实验设置与指标”CARLA闭环仿真基准(如Town05 Long);指标含Driving Score等。教师用特权信息,学生用原始传感器(四相机+LiDAR);提到预测BEV mIoU 0.35(测试未见场景)。完整设置与其他指标待来源核验。
主要结果(需原文证据)
Section titled “主要结果(需原文证据)”DriveAdapter在多个CARLA闭环仿真基准达SOTA。原文证据基线:Table 1 Town05 Long Driving Score上Transfuser 31.0、LAV 46.5、Student+Frozen Roach 8.9、Roach 74.2、Roach+Rule 87.0;直接喂预测BEV给冻结教师性能差。DriveAdapter具体分数待来源核验。
局限、失败场景与适用边界
Section titled “局限、失败场景与适用边界”纯学习教师本身不完美(偶发违安全规则,常需手工艺规则补强);即使SOTA感知预测BEV与GT分布差距大(模糊/不完整/交通灯错误,mIoU 0.35示例),教师只见过GT;学生+冻结Roach性能远差于有规则教师。适用边界主要为CARLA仿真;其他失败场景与真实世界迁移待来源核验。
与前序 / 同期 / 后续方法的关系
Section titled “与前序 / 同期 / 后续方法的关系”前序:直接RL(MaRLn低效)、早期BC(CIL/CILRS)、Teacher-Student主导(LBC、Roach、PlanT、TCP、Interfuser、LAV、Transfuser、MILE等)。Adapter思想来自NLP/CV基础模型适配。同期/相关:ThinkTwice、CaT知识蒸馏、ReasonNet等仍多用BC;本文进一步解耦直接复用冻结教师规划。
官方代码与复现建议
Section titled “官方代码与复现建议”推荐阅读顺序
Section titled “推荐阅读顺序”先Abstract+Fig.1对比三种范式;再Introduction问题动机与因果混淆;Related Works(E2E AD与Adapter);Method 3.1学生感知与问题诊断;后续Adapter与掩码动作引导(提取中部分);实验/消融与可视化。
- Q: 现有Teacher-Student范式的主要剩余问题是什么? A: 学生仍需从头用行为克隆学规划头,易致因果混淆(如惯性问题);且预测特权输入与GT分布差距大使直接喂冻结教师失败。
- Q: DriveAdapter如何连接学生与教师? A: 在冻结教师各模块后加可学习Adapter,并用特征对齐目标函数逐层将学生不完美特征对齐到教师域。
- Q: 掩码特征对齐/动作引导的作用与时机? A: 当规则覆盖教师时掩码对齐损失并回传动作损失至Adapter,强制直接学好动作特征、注入规则先验,突破不完美教师上限。
- Q: 学生模型如何生成教师所需输入?为何直接使用仍失败? A: BEVFusion+Mask2former做BEV分割(mIoU 0.35示例);因预测与GT分布差距大(模糊/错误),教师只训练于GT,导致性能差(如8.9 vs 教师87.0)。
- Q: 解耦范式相比直接BC学生的核心优势? A: 完全解耦感知与规划学习,直接复用RL教师因果知识与驾驶策略,避免行为克隆因果混淆,同时保持端到端可微与高效训练。
- Abstract: DriveAdapter achieves SOTA performance on multiple closed-loop simulation-based benchmarks of CARLA.
- Fig. 1 caption / page 1: In the proposed DriveAdapter paradigm, the model still enjoys high RL training efficiency while the usage of the frozen teacher model empowers the inference process with its driving knowledge. The student model could focus on perception learning, and the proposed adapter module with its masked feature alignment objective functions deals with the distribution gap…
- page 2 / Introduction: the student model still needs to learn a planning head from scratch, which could be challenging due to the redundant and noisy nature of raw sensor inputs and the casual confusion issue of behavior cloning.
- page 4 / Table 1: Student Model + Frozen Roach … 8.9 … Roach + Rule [50] … 87.0
- page 4 / Sec 3.1: even equipped with the most advanced perception module as of today, we find that directly feeding the predicted BEV segmentation (mIoU 0.35 on test unseen scenes) to the teacher model does no work
Discovery evidence
Section titled “Discovery evidence”- topic:
ad-end-to-end-driving - sources:
asta,crossref,arxiv,openalex - retrieved_at: 2026-07-20
- query: Find foundational and recent research papers for the topic «端到端驾驶» (ad-end-to-end-driving). Prefer peer-reviewed or widely cited work with clear method contributions. Include open-source code when available. Exclude pure survey spam unless highly cited. Core concepts: end-to-end autonomous driving, planning-oriented, trajectory scoring, diffusion planning, vectorized scene. Search facets: end-to-end autonomous driving planning perception; trajectory vocabulary scoring NAVSIM; diffusion model end
- corpus_id:
260351212 - arxiv:
2308.00398 - doi:
10.1109/iccv51070.2023.00731 - relevance_score:
0.6664934560796896 - score_total: 77
- suggested_tier:
recent
Relevance
Section titled “Relevance”(no prose relevance explanation — numeric score only or HTTP source)
Snippets
Section titled “Snippets”(no snippet evidence in candidate pool)
延伸解读与背景补充
Section titled “延伸解读与背景补充”生成:2026-07-21 · 来源条数 2 · 模型
heuristic· 需人工核验数字
围绕「DriveAdapter: Breaking the Coupling Barrier of Perception and Planning in End-to-End Autonomous Driving」的核心问题与动机(待结合全文核验)。
方法要点补强
Section titled “方法要点补强”- 见原文方法章节;以下为基于摘要/摘录的要点提示。
- DriveAdapter: Breaking the Coupling Barrier of Perception and Planning in End-to-En…
与相近工作的关系
Section titled “与相近工作的关系”与相近工作的关系待核验;请对照 related work。
- 勿仅凭摘要推断未给出的数值指标。
- 这篇工作的输入/输出表示是什么?(DriveAdapter: Breaking the Coupling Barrier of Perception and Planning in End-to-End Autonomous Driving)
- 训练目标与评测协议各是什么?
- 主要失败模式或局限是什么?
外部解读索引
Section titled “外部解读索引”- [2308.00398] DriveAdapter: Breaking the Coupling Barrier of Perception and Planning in End-to-End Autonomous Driving — 2026-07-21 — 官方摘要/二次页面(自动抓取)
- [2308.00398] DriveAdapter: Breaking the Coupling Barrier of Perception and Planning in End-to-End Autonomous Driving — 2026-07-21 — 官方摘要/二次页面(自动抓取)
方法结构(重绘)
Section titled “方法结构(重绘)”flowchart LR A["输入 / 观测"] --> B["表示 / 编码"] B --> C["推理 / 解码"] C --> D["输出 / 动作或检测"] %% method sketch for: DriveAdapter: Breaking the Coupling Barrier of Perception and Planning in End-to方法结构示意(重绘;细节以原论文为准,待 PDF 核验)。
论文摘录图/表
Section titled “论文摘录图/表”
来源:原论文约 p.1(arch);学习用途摘录。

来源:原论文约 p.4(table);学习用途摘录。
英文自动分析(可折叠)
Section titled “英文自动分析(可折叠)”展开英文 Paper Card / AI deep analysis
Paper Card
Section titled “Paper Card”| Field | Content |
|---|---|
| Year | 2023 |
| Authors | Xiaosong Jia, Yulu Gao, Li Chen, Junchi Yan, Patrick Langechuan Liu, Hongyang Li |
| arXiv | 2308.00398 |
| DOI | — |
| Topics | end-to-end-learning |
| Paper | https://arxiv.org/abs/2308.00398 |
原文摘录与素材(可折叠)
Section titled “原文摘录与素材(可折叠)”展开 Extract / Selections / Local assets
Selections
Section titled “Selections”end-to-end-learning: tier=recent rank=5 score=50 — auto refresh 2026-07-19 sources=arxiv
Extract excerpt
Section titled “Extract excerpt”DriveAdapter: Breaking the Coupling Barrier of Perception and Planning in End-to-End Autonomous Driving
† † Xiaosong Jia1,2 , Yulu Gao2,3 , Li Chen2 , Junchi Yan1,2 , Patrick Langechuan Liu4 , Hongyang Li2,1 1 Shanghai Jiao Tong University 2 OpenDriveLab, Shanghai AI Lab 3 Beihang University 4 Anker Innovations
arXiv:2308.00398v2 [cs.RO] 26 Aug 2023 † Correspondence authors https://github.com/OpenDriveLab/DriveAdapter
Raw Sensor Input Stage 1 Reinforcement Privileged Input Learning Reinforcement Model Teacher Learning Model
Efficiency (a) Direct Reinforcement Learning Causal Masked Feature Action