RAD-2 (*RAD-2: Scaling Reinforcement Learning in a Generator-Discriminator Framework*, arXiv:2604.15308), from Huazhong University of Science and Technology and Horizon Robotics, addresses a core weakness of diffusion-based driving planners trained purely by imitation learning: they can reproduce good driving behavior from data but cannot judge what is unsafe, suffer from causal confusion, and mismatch open-loop training with closed-loop deployment.
Key points
- Generator-discriminator architecture: Instead of letting RL directly optimize a generator's high-dimensional trajectory output with sparse scalar rewards, RAD-2 restricts reinforcement learning to a discriminator whose low-dimensional output naturally aligns with the reward signal. The diffusion generator produces diverse candidate trajectories; the RL-optimized discriminator ranks and scores them.
- TC-GRPO (Temporally Consistent Group Relative Policy Optimization): Driving has weak instantaneous reward-action correlations, causing severe credit assignment problems compared with LLMs. TC-GRPO exploits the temporal coherence of real driving via latched execution (following a chosen trajectory for a fixed window), time-dependent sampling, and group-relative advantage estimation over coherent behavior contexts.
- On-policy Generator Optimization (OGO): The generator is improved not by naively cloning high-reward trajectories but by converting closed-loop feedback into structured longitudinal (speed/braking) optimization signals, where the reward signal is most effective—gradually shifting the output distribution toward high-reward trajectory manifolds while preserving diversity.
- BEV-Warp simulator: Rather than rendering pixels, BEV-Warp performs closed-loop evaluation directly in Bird's-Eye-View feature space using geometric spatial warping, exploiting the spatial equivariance of BEV features. This enables hundreds of parallel simulation instances on a single GPU with physical consistency and no temporal drift.
- The diffusion generator is pretrained on ~50,000 hours of real-world driving data; closed-loop fine-tuning uses 50,000 log clips (10–20 s each), split into safety-oriented and efficiency-oriented sets of 10,000 clips each.
- Discriminator-to-generator training ratio is roughly 8:1, with GRPO group size 4 and entropy regularization to prevent score collapse.
- Versus strong diffusion baselines such as ResAD, RAD-2 reduces collision rate from 0.533 to 0.234 in safety-oriented scenarios (~56% relative reduction); AF-CR drops from 0.264 to 0.092 (−65%); Safety@1 rises from 0.418 to 0.730 (+75%); Safety@2 from 0.281 to 0.596 (+112%).
- Efficiency also improves: EP-Mean from 0.970 to 0.988; EP@1.0 from 0.516 to 0.736 (+43%); EP@0.9 from 0.894 to 0.984 (+10%).
- Real-vehicle deployment showed improved perceived safety and driving smoothness in complex urban traffic, though no quantitative metrics were reported.
Training and results
Limitations and outlook
The authors acknowledge BEV-Warp's efficiency depends on explicit spatially equivariant BEV grids and does not directly apply to raw-pixel or unified-latent-embedding architectures. They propose integrating the optimization pipeline with generative world models as future work, potentially enabling pixel-level photorealistic closed-loop training with the same generator-discriminator, TC-GRPO, and OGO machinery.
The framework demonstrates that safety and efficiency are not a zero-sum trade-off: by generating diverse possibilities and learning to discriminate among them in closed loop, the system avoids the hesitant, averaged behaviors of regression-based planners and the fixed-candidate limits of selection-based planners.
References
1. Gao, H., et al. (2026). RAD-2: Scaling Reinforcement Learning in a Generator-Discriminator Framework. *arXiv:2604.15308*. 2. Gao, H., et al. (2025). RAD: Training an End-to-End Driving Policy via Large-Scale 3DGS-based Reinforcement Learning. *arXiv:2502.13144*. 3. Goodfellow, I., et al. (2014). Generative Adversarial Nets. *NeurIPS*. 4. Schulman, J., et al. (2017). Proximal Policy Optimization Algorithms. *arXiv preprint*. 5. Yang, Z., et al. (2024). ResAD: Rethinking the Training Strategy for End-to-End Autonomous Driving via Residual Learning. *arXiv preprint*. 6. Wiener, N. (1948). Cybernetics. *MIT Press*.