Add model card for SparseDriveV2
#1
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pipeline_tag: robotics
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
# SparseDriveV2: Scoring is All You Need for End-to-End Autonomous Driving
|
| 6 |
+
|
| 7 |
+
SparseDriveV2 is an end-to-end multi-modal planning framework for autonomous driving. It demonstrates that performance consistently improves as trajectory anchors become denser, achieving state-of-the-art results through a scalable vocabulary representation and a factorized scoring strategy.
|
| 8 |
+
|
| 9 |
+
- **Paper:** [SparseDriveV2: Scoring is All You Need for End-to-End Autonomous Driving](https://huggingface.co/papers/2603.29163)
|
| 10 |
+
- **GitHub Repository:** [swc-17/SparseDriveV2](https://github.com/swc-17/SparseDriveV2)
|
| 11 |
+
|
| 12 |
+
## Method Overview
|
| 13 |
+
|
| 14 |
+
SparseDriveV2 pushes the performance boundary of scoring-based planning through two complementary innovations:
|
| 15 |
+
1. **Scalable Vocabulary Representation:** A factorized structure that decomposes trajectories into geometric paths and velocity profiles, enabling combinatorial coverage of the action space.
|
| 16 |
+
2. **Scalable Scoring Strategy:** A coarse factorized scoring over paths and velocity profiles followed by fine-grained scoring on a small set of composed trajectories.
|
| 17 |
+
|
| 18 |
+
This approach allows the model to scale its trajectory vocabulary to be 32x denser than prior methods while maintaining computational efficiency.
|
| 19 |
+
|
| 20 |
+
## Performance
|
| 21 |
+
|
| 22 |
+
The model achieves state-of-the-art performance using a lightweight ResNet-34 backbone:
|
| 23 |
+
|
| 24 |
+
| Benchmark | Metric | Score |
|
| 25 |
+
| :--- | :--- | :--- |
|
| 26 |
+
| **NAVSIM** | PDMS | 92.0 |
|
| 27 |
+
| **NAVSIM** | EPDMS | 90.1 |
|
| 28 |
+
| **Bench2Drive** | Driving Score | 89.15 |
|
| 29 |
+
| **Bench2Drive** | Success Rate | 70.00 |
|
| 30 |
+
|
| 31 |
+
## Citation
|
| 32 |
+
|
| 33 |
+
```bibtex
|
| 34 |
+
@article{sun2026sparsedrivev2,
|
| 35 |
+
title={SparseDriveV2: Scoring is All You Need for End-to-End Autonomous Driving},
|
| 36 |
+
author={Sun, Wenchao and Lin, Xuewu and Chen, Keyu and Pei, Zixiang and Li, Xiang and Shi, Yining and Zheng, Sifa},
|
| 37 |
+
journal={arXiv preprint arXiv:2603.29163},
|
| 38 |
+
year={2026}
|
| 39 |
+
}
|
| 40 |
+
```
|