Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
size_categories:
|
4 |
+
- 100B<n<1T
|
5 |
+
---
|
6 |
+
# **PDM-Lite**: A Rule-Based Planner for CARLA Leaderboard 2.0
|
7 |
+
|
8 |
+
## Description
|
9 |
+
PDM-Lite is a state-of-the-art rule-based expert system for autonomous urban driving in CARLA Leaderboard 2.0, and the first to successfully navigate all scenarios. This dataset was used to create the QA dataset for DriveLM-Carla, a benchmark for evaluating end-to-end autonomous driving algorithms with Graph Visual Question Answering (GVQA). DriveLM introduces GVQA as a novel approach, modeling perception, prediction, and planning through interconnected question-answer pairs, mimicking human reasoning processes. Additionally, this dataset was used for training Transfuser++ with imitation learning, which achieved 1st place (map track) and 2nd place (sensor track) in the CARLA Autonomous Driving Challenge 2024.
|
10 |
+
|
11 |
+
##Dataset Features
|
12 |
+
|
13 |
+
- **High-Quality Data:** 1759 routes with 100 % route completion and zero infractions
|
14 |
+
- **Diverse Scenarios:** Covers 38 complex scenarios, including urban traffic, other traffic participants violating traffic rules and high-speed highway driving
|
15 |
+
- **Focused Evaluation:** Short routes averaging 160 m in length
|
16 |
+
|
17 |
+
## Data Modalities
|
18 |
+
|
19 |
+
- **BEV Semantics Map:** 512x512 pixels, centered on ego vehicle, 2 pixels per meter resolution
|
20 |
+
- **Image Data:** RGB images, semantic segmentation, and depth information
|
21 |
+
- **Lidar Data:** Detailed lidar point clouds
|
22 |
+
- **Augmented Data:** Augmented versions of RGB, semantic, depth, and lidar data
|
23 |
+
- **Simulator Data:** Comprehensive information on nearby objects
|
24 |
+
|
25 |
+
For more information: https://github.com/OpenDriveLab/DriveLM/tree/DriveLM-CARLA
|
26 |
+
## License and Citation
|
27 |
+
Apache 2.0 license unless specified otherwise.
|
28 |
+
|
29 |
+
```bibtex
|
30 |
+
@article{sima2023drivelm,
|
31 |
+
title={DriveLM: Driving with Graph Visual Question Answering},
|
32 |
+
author={Sima, Chonghao and Renz, Katrin and Chitta, Kashyap and Chen, Li and Zhang, Hanxue and Xie, Chengen and Luo, Ping and Geiger, Andreas and Li, Hongyang},
|
33 |
+
journal={arXiv preprint arXiv:2312.14150},
|
34 |
+
year={2023}
|
35 |
+
}
|
36 |
+
@misc{contributors2023drivelmrepo,
|
37 |
+
title={DriveLM: Driving with Graph Visual Question Answering},
|
38 |
+
author={DriveLM contributors},
|
39 |
+
howpublished={\url{https://github.com/OpenDriveLab/DriveLM}},
|
40 |
+
year={2023}
|
41 |
+
}
|
42 |
+
@misc{Beißwenger2024PdmLite,
|
43 |
+
title = {{PDM-Lite}: A Rule-Based Planner for CARLA Leaderboard 2.0},
|
44 |
+
author = {Bei{\ss}wenger, Jens},
|
45 |
+
howpublished = {\url{https://github.com/OpenDriveLab/DriveLM/blob/DriveLM-CARLA/docs/report.pdf}},
|
46 |
+
year = {2024},
|
47 |
+
school = {University of Tübingen},
|
48 |
+
}
|
49 |
+
```
|