Yinan Zheng*, Tianyi Tan*, Bin Huang*, Enguang Liu, Ruiming Liang, Jianlin Zhang, Jianwei Cui, Guang Chen, Kun Ma, Hangjun Ye, Long Chen, Ya-Qin Zhang, Xianyuan Zhan, Jingjing Liu
The official implementation of Hyper Diffusion Planner. Our work demonstrates that diffusion models, when properly designed and trained, can serve as effective and scalable E2E AD planners for complex, real-world autonomous driving tasks. Note: In this repository, we will release the details mentioned in the paper and provide implementations on benchmarks like NAVSIM and NuPlan for community research. Note that our design is derived from real-world vehicle experiments. Consequently, its performance on these simulated benchmarks may not fully align with its real-world efficacy, which is a known limitation of such benchmarks as discussed in our paper.
Real-world urban scenario testing uses model output, with only simple smoothness post-refinement.
The code is under cleaning and will be released gradually. Prior to this, you may refer to Diffusion Planner / Flow Planner for the training and inference of diffusion models and DIPOLE for Diffusion RL.
- Nuplan Implementation
- NAVSIM Implementation
- initial repo & paper
We provide the NuPlan implementation in HDP-nuplan/, based on Diffusion Planner with several modifications for HDP.
- Diffusion loss space:
support flexible combinations of model prediction target and supervision target via
--diffusion_model_typeand--diffusion_supervision_typeintrain_predictor.py. The conversion logic is implemented inhdp_nuplan/model/diffusion_utils/sde.pyand used inhdp_nuplan/loss.py. Current options:x_start,noise,v,score. - Hybrid planning loss:
we use
L_hybrid = L_velocity + w * L_waypointswherewis set by--planning_hybrid_loss(default0.01). The detached integration used by the waypoint term is implemented inhdp_nuplan/utils/traj_kinematics.py.
For additional notes, see HDP-nuplan/README.md.
If you find our code and paper can help, please cite our paper as:
@article{
zheng2026unleash,
title={Unleashing the Potential of Diffusion Models for End-to-End Autonomous Driving},
author={Yinan Zheng and Tianyi Tan and Bin Huang and Enguang Liu and Ruiming Liang and Jianlin Zhang and Jianwei Cui and Guang Chen and Kun Ma and Hangjun Ye and Long Chen and Ya-Qin Zhang and Xianyuan Zhan and Jingjing Liu},
journal={arXiv preprint arXiv:2602.22801},
year={2026}
}


