跳转到内容

Pseudo-Expert Regularized Offline RL for End-to-End Autonomous Driving in Photorealistic Closed-Loop Environments

Pseudo-Expert Regularized Offline RL for End-to-End Autonomous Driving in Photorealistic Closed-Loop Environments

Section titled “Pseudo-Expert Regularized Offline RL for End-to-End Autonomous Driving in Photorealistic Closed-Loop Environments”

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

学习档位 中文笔记

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

所属 强化学习 · 模仿学习与离线学习

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

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

Topic: reinforcement-learning · Tier: watch · Year: 2025 · Venue:
Evidence level: partial · 本地全文: 是 · 建议阅读: ~45 分钟
Paper: https://arxiv.org/abs/2512.18662
Code:
Generator: grok

提出相机-only端到端自动驾驶的纯离线RL框架,用伪专家轨迹正则化解决OOD过估计与IL不安全行为克隆问题,并在基于nuScenes的神经渲染闭环环境中验证,兼具数据效率与可复现性,对具身智能/自动驾驶实用迭代有参考价值。

用从专家日志构建的伪专家轨迹做行为正则化,在固定仿真数据集上训练离散动作Actor-Critic E2E策略,相对IL显著提升安全性与路线完成。

E2E相机驾驶多依赖IL,存在covariate shift/OOD状态误差累积与因果混淆;在线RL虽可优化长期回报,但神经渲染仿真与大型网络使探索与奖励/超参迭代成本极高。

MDP与Q函数、离线RL(行为策略、OOD过估计)、Actor-Critic与BC正则化;E2E AD的BEV/deformable attention与离散轨迹动作(如VADv2 k-means);nuScenes与神经渲染仿真基本概念。

  • 提出相机-only、无在线探索的E2E离线RL框架,仅从固定数据集学习
  • 引入基于专家驾驶日志插值/最近邻的伪专家正则化,稳定价值学习并抑制不安全行为克隆
  • 在nuScenes神经渲染闭环中相对IL基线大幅改善碰撞率与路线完成,并分析行为策略组成影响

行为策略在神经渲染仿真中收集固定rollout数据集(state/action/reward)→ 从独立专家GT轨迹构建伪专家动作(最近/次近waypoint等)→ 共享编码器+BEV解码器的Actor-Critic训练(TD critic + 最大化Q且伪专家BC正则的actor)→ 闭环评估(常规与安全关键场景)。

Encoder(多视角图像+本体感觉→zimg)+ BEV decoder(可学习BEV queries + deformable cross-attention);Actor:k-means专家轨迹离散动作词表+动作queries,输出categorical πθ;Critic:共享action特征hk直接输出K个Q值;核心取舍:用伪专家πE正则化而非标准BC行为策略,避免克隆碰撞等次优动作,同时抑制OOD Q过估计。

训练与闭环评估均在从public nuScenes学习的神经渲染环境;固定预收集仿真数据集(行为策略rollout + 专家GT日志);指标强调collision rate与route completion(相对IL baselines)。具体划分、场景数、其他指标与超参待来源核验。

相对IL baselines,提出方法在碰撞率与路线完成上取得substantial improvements;消融验证伪专家正则、奖励塑形与行为策略选择的重要性。具体数值与表格细节待来源核验。

提取未系统讨论失败场景;方法依赖行为策略数据质量与伪专家构建准确性,离散动作空间表达力有限,且仿真为神经渲染闭环(非真实车),适用边界与真实迁移待来源核验。

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

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

E2E AD多为IL(回归/生成/离散如VADv2);在线RL有RAD(3DGS+PPO)、ReCogDrive(NAVSIM+GRPO)等;离线RL家族含行为正则、Q保守、in-sample等。本文声称是首个系统评估相机E2E纯离线RL闭环的工作,采用伪GT行为正则。

官方代码:https://github.com/ToyotaInfoTech/PEBC。复现需nuScenes数据与对应神经渲染仿真环境、行为策略数据收集与伪专家构建流程;建议先跑IL基线再切换离线RL与正则消融。

Abstract与Fig.1(范式对比)→ Introduction(动机与贡献)→ Related Work → Preliminaries → Section 4 Method(网络+伪专家训练)→ 实验/消融(提取缺失)→ 结论与代码。

  1. Q: 为什么不用标准BC直接克隆行为策略,而要用伪专家轨迹? A: 行为策略数据含不安全/次优动作(如碰撞),标准BC会模仿;伪专家从干净专家GT构建,抑制不安全克隆并稳定价值学习。
  2. Q: 本文离线RL相对在线RL的主要优势是什么? A: 无额外环境交互/探索,仅固定数据集,数据效率高、迭代快,避免神经渲染+大网络的在线成本。
  3. Q: 策略网络的动作空间如何定义? A: 离散动作,对专家轨迹做k-means聚类得到有限轨迹词表,Actor输出categorical分布(基于VADv2风格)。
  4. Q: Critic如何训练? A: 最小化一步TD误差,目标y = r + γ(1-d)Q_target(s’, a’~π_target),用EMA更新target网络。
  5. Q: 闭环评估在什么环境进行? A: 从public nuScenes学习的神经渲染仿真环境,覆盖常规驾驶与安全关键场景。
  • Abstract / page 1: We introduce a camera-only E2E offline RL framework that performs no additional exploration and trains solely on a fixed simulator dataset. … we construct pseudo ground-truth trajectories from expert driving logs and use them as a behavior regularization signal
  • Abstract / page 1: Empirically, the proposed method achieves substantial improvements in collision rate and route completion compared with IL baselines. Our code is available at https://github.com/ToyotaInfoTech/PEBC.
  • Section 1 / page 2: To our knowledge, this work is among the first to systematically evaluate a camera-only E2E offline RL policy in closed-loop form.
  • Section 4.2 / page 3-4: Instead of cloning the behavior policy, we guide the actor towards a pseudo-expert policy πE derived from a separate, clean dataset of GT expert trajectories.
  • Figure 1 caption / page 1: (c) Offline Reinforcement Learning (Our Approach): Policy learns from a fixed, pre-collected dataset without new simulator interaction.
  • topic: reinforcement-learning
  • sources: arxiv
  • retrieved_at: 2026-07-20
  • query: reinforcement learning end-to-end driving
  • arxiv: 2512.18662
  • score_total: 52
  • suggested_tier: recent

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

(no snippet evidence in candidate pool)

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

围绕「Pseudo-Expert Regularized Offline RL for End-to-End Autonomous Driving in Photorealistic Closed-Loop Environments」的核心问题与动机(待结合全文核验)。

  • 见原文方法章节;以下为基于摘要/摘录的要点提示。
  • Pseudo-Expert Regularized Offline RL for End-to-End Autonomous Driving in Photorealistic Closed-Loop…

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

  • 勿仅凭摘要推断未给出的数值指标。
  1. 这篇工作的输入/输出表示是什么?(Pseudo-Expert Regularized Offline RL for End-to-End Autonomous Driving in Photorealistic Closed-Loop Environments)
  2. 训练目标与评测协议各是什么?
  3. 主要失败模式或局限是什么?
flowchart LR
A["输入 / 观测"] --> B["表示 / 编码"]
B --> C["推理 / 解码"]
C --> D["输出 / 动作或检测"]
%% method sketch for: Pseudo-Expert Regularized Offline RL for End-to-End Autonomous Driving in Photor

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

Pseudo-Expert Regularized Offline RL for End-to-End Autonomous Driving in Photorealistic Closed-Loop Environments arch p.1

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

Pseudo-Expert Regularized Offline RL for End-to-End Autonomous Driving in Photorealistic Closed-Loop Environments table p.5

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

展开英文 Paper Card / AI deep analysis
Field Content
Year 2025
Authors Chihiro Noguchi, Takaki Yamamoto
arXiv 2512.18662
DOI
Topics reinforcement-learning, imitation-offline
Paper https://arxiv.org/abs/2512.18662
展开 Extract / Selections / Local assets
  • reinforcement-learning: tier=watch rank=2 score=52 — auto refresh 2026-07-19 sources=arxiv
  • imitation-offline: tier=watch rank=4 score=51 — cross-topic assign from registry title match=1 keywords; 2026-07-19
Pseudo-Expert Regularized Offline RL for End-to-End Autonomous Driving
in Photorealistic Closed-Loop Environments
Chihiro Noguchi Takaki Yamamoto
InfoTech, Toyota Motor Corporation
{chihiro noguchi aa, takaki yamamoto}@mail.toyota.co.jp
arXiv:2512.18662v2 [cs.RO] 9 Apr 2026
Abstract (a) Imitation Learning
Human Driving Supervised
End-to-end (E2E) autonomous driving models that take Demonstration Fixed Learning
only camera images as input and directly predict a future Dataset
trajectory are appealing for their computational efficiency Expert Driver AD Policy
and potential for improved generalization via unified op-
timization; however, persistent failure modes remain due (b) Online Reinforcement Learning
to reliance on imitation learning (IL). While online rein-
forcement learning (RL) could mitigate IL-induced issues, State & Reward
the computational burden of neural rendering-based sim-
Action
ulation and large E2E networks renders iterative reward
Neural Rendering AD Policy