![](/ZhengYinan-AIR/Diffusion-Planner/raw/main/assets/img/diffusion_planner.png)
Yinan Zheng*, Ruiming Liang*, Kexin Zheng*, Jinliang Zheng, Liyuan Mao, Jianxiong Li, Weihao Gu, Rui Ai, Shengbo Eben Li, Xianyuan Zhan, Jingjing Liu
International Conference on Learning Representation (ICLR), 2025
The official implementation of Diffusion Planner, which represents a pioneering effort in fully harnessing the power of diffusion models for high-performance motion planning, without overly relying on refinement.
Diffusion Planner leverages the expressive and flexible diffusion model to enhance autonomous planning:
- DiT-based architecture focusing on the fusion of noised future vehicle trajectories and conditional information
- Joint modeling of key participants' statuses, unifying motion prediction and closed-loop planning as future trajectory generation
- Fast inference during diffusion sampling, achieving around 20Hz for real-time performance
The results of STR2-CPKS-800M without refinement are currently being confirmed with the authors' team. Please wait for the subsequent double-check results from both sides.
Methods | Val14 (NR) | Val14 (R) | Test14-hard (NR) | Test14-hard (R) | Test14 (NR) | Test14 (R) |
---|---|---|---|---|---|---|
PDM-Open* | 53.53 | 54.24 | 33.51 | 35.83 | 52.81 | 57.23 |
UrbanDriver | 68.57 | 64.11 | 50.40 | 49.95 | 51.83 | 67.15 |
GameFormer w/o refine. | 13.32 | 8.69 | 7.08 | 6.69 | 11.36 | 9.31 |
PlanTF | 84.72 | 76.95 | 69.70 | 61.61 | 85.62 | 79.58 |
PLUTO w/o refine.* | 88.89 | 78.11 | 70.03 | 59.74 | 89.90 | 78.62 |
Diffusion-es w/o LLM | 50.00 | - | - | - | - | - |
STR2-CPKS-800M w/o refine.* | 8.80 | - | 10.99 | - | - | - |
Diffusion Planner (ours) | 89.87 | 82.80 | 75.99 | 69.22 | 89.19 | 82.93 |
*: Using pre-searched reference lines or additional proposals as model inputs provides prior knowledge.
Methods | Val14 (NR) | Val14 (R) | Test14-hard (NR) | Test14-hard (R) | Test14 (NR) | Test14 (R) |
---|---|---|---|---|---|---|
Expert (Log-replay) | 93.53 | 80.32 | 85.96 | 68.80 | 94.03 | 75.86 |
IDM | 75.60 | 77.33 | 56.15 | 62.26 | 70.39 | 74.42 |
PDM-Closed | 92.84 | 92.12 | 65.08 | 75.19 | 90.05 | 91.63 |
PDM-Hybrid | 92.77 | 92.11 | 65.99 | 76.07 | 90.10 | 91.28 |
GameFormer | 79.94 | 79.78 | 68.70 | 67.05 | 83.88 | 82.05 |
PLUTO | 92.88 | 76.88 | 80.08 | 76.88 | 92.23 | 90.29 |
Diffusion-es | 92.00 | - | - | - | - | - |
STR2-CPKS-800M | 93.91 | 92.51 | 77.54 | 82.02 | - | - |
Diffusion Planner w/ refine (ours) | 94.26 | 92.90 | 78.87 | 82.00 | 94.80 | 91.75 |
Future trajectory generation visualization. A frame from a challenging narrow road turning scenario in the closed-loop test, including the future planning of the ego vehicle (PlanTF and PLUTO w/o refine. showing multiple candidate trajectories), predictions for neighboring vehicles, and the ground truth ego trajectory.
- Setup the nuPlan dataset following the offiical-doc
- Setup conda environment
conda create -n diffusion_planner python=3.9
conda activate diffusion_planner
# install nuplan-devkit
git clone https://github.com/motional/nuplan-devkit.git && cd nuplan-devkit
pip install -e .
pip install -r requirements.txt
# setup diffusion_planner
cd ..
git clone https://github.com/ZhengYinan-AIR/Diffusion-Planner.git && cd Diffusion-Planner
pip install -e .
pip install -r requirements_torch.txt
- Download the model checkpoint from Huggingface repository. Download, two files under
checkpoints
directory.
mkdir -p checkpoints
wget -P ./checkpoints https://huggingface.co/ZhengYinan2001/Diffusion-Planner/resolve/main/args.json
wget -P ./checkpoints https://huggingface.co/ZhengYinan2001/Diffusion-Planner/resolve/main/model.pth
- Run the simulation
- Set up configuration in sim_diffusion_planner_runner.sh.
- Run
bash sim_diffusion_planner_runner.sh
- Visualize the results
- Set up configuration in run_nuboard.ipynb.
- Launch Jupyter Notebook or JupyterLab to execute run_nuboard.ipynb.
If you find our code and paper can help, please cite our paper as:
@inproceedings{
zheng2025diffusion,
title={Diffusion-Based Planning for Autonomous Driving with Flexible Guidance},
author={Yinan Zheng and Ruiming Liang and Kexin Zheng and Jinliang Zheng and Liyuan Mao and Jianxiong Li and Weihao Gu and Rui Ai and Shengbo Eben Li and Xianyuan Zhan and Jingjing Liu},
booktitle={The Thirteenth International Conference on Learning Representations},
year={2025},
url={https://openreview.net/forum?id=wM2sfVgMDH}
}
Diffusion Planner is greatly inspired by the following outstanding contributions to the open-source community: nuplan-devkit, GameFormer-Planner, tuplan_garage, planTF, pluto, StateTransformer, DiT, dpm-solver