Datasets:
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-nd-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
This is a aubset of Bench2Drive-Speed's CustomizedSpeedDataset where all clips are shown directly in folders, not .tar.gz files.
|
| 8 |
+
|
| 9 |
+
Full dataset [is here](https://huggingface.co/datasets/rethinklab/Bench2Drive-Speed/).
|
| 10 |
+
|
| 11 |
+
# Bench2Drive-Speed
|
| 12 |
+
|
| 13 |
+
[**Project Page**](https://thinklab-sjtu.github.io/Bench2Drive-Speed/) | [**Paper**](https://huggingface.co/papers/2603.25672) | [**GitHub**](https://github.com/Thinklab-SJTU/Bench2Drive-Speed)
|
| 14 |
+
|
| 15 |
+
**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**.
|
| 16 |
+
|
| 17 |
+
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.
|
| 18 |
+
|
| 19 |
+
## Virtual Target Speed Annotation
|
| 20 |
+
|
| 21 |
+
You can use a script to generate **virtual target speed** from Bench2Drive-style driving dataset.
|
| 22 |
+
|
| 23 |
+
1. Find `tools/append_virtual_target_speed.py` in the GitHub repository.
|
| 24 |
+
|
| 25 |
+
2. Set the path to your dataset in the main function:
|
| 26 |
+
|
| 27 |
+
```python
|
| 28 |
+
# tools/append_virtual_target_speed.py
|
| 29 |
+
if __name__ == "__main__":
|
| 30 |
+
main(
|
| 31 |
+
["/path/to/dataset"] # << modify here
|
| 32 |
+
)
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
3. Run the script:
|
| 36 |
+
|
| 37 |
+
```bash
|
| 38 |
+
python tools/append_virtual_target_speed.py
|
| 39 |
+
```
|