RenzKa commited on
Commit
d93742c
·
verified ·
1 Parent(s): ef7f987

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +97 -0
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ task_categories:
4
+ - visual-question-answering
5
+ - robotics
6
+ language:
7
+ - en
8
+ tags:
9
+ - AutonomousDriving
10
+ - VQA
11
+ - Commentary
12
+ - VLA
13
+ ---
14
+
15
+
16
+
17
+ # SimLingo Dataset
18
+
19
+ ## Overview
20
+ SimLingo-Data is a large-scale autonomous driving CARLA 2.0 dataset containing sensor data, action labels, a wide range of simulator state information, and language labels for VQA, commentary and instruction following. The driving data is collected with the privileged rule-based expert [PDM-Lite](https://github.com/OpenDriveLab/DriveLM/tree/DriveLM-CARLA/pdm_lite).
21
+
22
+ ## Dataset Statistics
23
+ - **Diverse Scenarios:** Covers 38 complex scenarios, including urban traffic, participants violating traffic rules, and high-speed highway driving
24
+ - **Focused Evaluation:** Short routes with 1 or 3 scenarios per route
25
+ - **Data Types**: RGB images (.jpg), LiDAR point clouds (.laz), Sensor measurements (.json.gz), Bounding boxes (.json.gz), Commentary text, Dreamer model outputs
26
+
27
+ ## Dataset Structure
28
+ The dataset is organized hierarchically with the following main components:
29
+ - `data/`: Raw sensor data (RGB, LiDAR, measurements, bounding boxes)
30
+ - `commentary/`: Natural language descriptions of driving decisions
31
+ - `dreamer/`: Instruction following data with multiple instruction/action pairs per sample
32
+ - `drivelm/`: VQA data, based on DriveLM
33
+
34
+ ### Data Details
35
+ - **RGB Images**: 1024x512 front-view camera image
36
+ - **Augmented RGB Images**: 1024x512 front-view camera image with a random shift and orientation offset of the camera
37
+ - **LiDAR**: Point cloud data saved in LAZ format
38
+ - **Measurements**: Vehicle state, simulator state, and sensor readings in JSON format
39
+ - **Bounding Boxes**: Detailed information about each object in the scene.
40
+ - **Commentary, Dreamer, VQA**: Language annotations
41
+
42
+ ## Usage
43
+ This dataset is chunked into groups of multiple routes for efficient download and processing.
44
+
45
+ ### Download the whole dataset using git with Git LFS
46
+
47
+ ```bash
48
+ # Clone the repository
49
+ git clone https://huggingface.co/datasets/RenzKa/simlingo
50
+
51
+ # Navigate to the directory
52
+ cd simlingo
53
+
54
+ # Pull the LFS files
55
+ git lfs pull
56
+ ```
57
+
58
+ ### Download a single file with wget
59
+
60
+ ```bash
61
+ # Download individual files (replace with actual file URLs from Hugging Face)
62
+ wget https://huggingface.co/datasets/RenzKa/simlingo/resolve/main/[filename].tar.gz
63
+ ```
64
+
65
+ ### Extract to a single directory - please specify the location where you want to store the dataset
66
+ ```bash
67
+ # Create output directory
68
+ mkdir -p database/simlingo
69
+
70
+ # Extract all archives to the same directory
71
+ for file in *.tar.gz; do
72
+ echo "Extracting $file to database/simlingo/..."
73
+ tar -xzf "$file" -C database/simlingo/
74
+ done
75
+ ```
76
+
77
+
78
+ ## License
79
+ Please refer to the license file for usage terms and conditions.
80
+
81
+
82
+ ## Citation
83
+ If you use this dataset in your research, please cite:
84
+ ```bibtex
85
+ @inproceedings{sima2024drivelm,
86
+ title={SimLingo: Vision-Only Closed-Loop Autonomous Driving with Language-Action Alignment},
87
+ author={Renz, Katrin and Chen, Long and Arani, Elahe and Sinavski, Oleg},
88
+ booktitle={Conference on Computer Vision and Pattern Recognition (CVPR)},
89
+ year={2025},
90
+ }
91
+ @inproceedings{sima2024drivelm,
92
+ title={DriveLM: Driving with Graph Visual Question Answering},
93
+ author={Chonghao Sima and Katrin Renz and Kashyap Chitta and Li Chen and Hanxue Zhang and Chengen Xie and Jens Beißwenger and Ping Luo and Andreas Geiger and Hongyang Li},
94
+ booktitle={European Conference on Computer Vision},
95
+ year={2024},
96
+ }
97
+ ```