Improve dataset card and add metadata
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,48 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-nd-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# Bench2Drive-Speed
|
| 8 |
+
|
| 9 |
+
[**Project Page**](https://thinklab-sjtu.github.io/Bench2Drive-Speed/) | [**Paper**](https://huggingface.co/papers/2603.25672) | [**GitHub**](https://github.com/Thinklab-SJTU/Bench2Drive-Speed)
|
| 10 |
+
|
| 11 |
+
**Bench2Drive-Speed** is a closed-loop benchmark for desired-speed conditioned autonomous driving, enabling explicit control over vehicle behavior through **target speed** and **overtake/follow commands**.
|
| 12 |
+
|
| 13 |
+
The **CustomizedSpeedDataset** contains **2,100 CARLA driving scenarios** with expert demonstrations and annotated **overtake/follow commands**. The released dataset includes expert target-speed signals only.
|
| 14 |
+
|
| 15 |
+
## Virtual Target Speed Annotation
|
| 16 |
+
|
| 17 |
+
You can use a script to generate **virtual target speed** from Bench2Drive-style driving dataset.
|
| 18 |
+
|
| 19 |
+
1. Find `tools/append_virtual_target_speed.py` in the GitHub repository.
|
| 20 |
+
|
| 21 |
+
2. Set the path to your dataset in the main function:
|
| 22 |
+
|
| 23 |
+
```python
|
| 24 |
+
# tools/append_virtual_target_speed.py
|
| 25 |
+
if __name__ == "__main__":
|
| 26 |
+
main(
|
| 27 |
+
["/path/to/dataset"] # << modify here
|
| 28 |
+
)
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
3. Run the script:
|
| 32 |
+
|
| 33 |
+
```bash
|
| 34 |
+
python tools/append_virtual_target_speed.py
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
## Citation
|
| 38 |
+
|
| 39 |
+
```bibtex
|
| 40 |
+
@article{Bench2DriveSpeed,
|
| 41 |
+
title={Can Users Specify Driving Speed? Bench2Drive-Speed: Benchmark and Baselines for Desired-Speed Conditioned Autonomous Driving},
|
| 42 |
+
author={Yuqian Shao and Xiaosong Jia and Langechuan Liu and Junchi Yan},
|
| 43 |
+
year={2026},
|
| 44 |
+
eprint={2603.25672},
|
| 45 |
+
archivePrefix={arXiv},
|
| 46 |
+
primaryClass={cs.RO},
|
| 47 |
+
}
|
| 48 |
+
```
|