File size: 3,610 Bytes
d93742c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9ae5dfb
d93742c
50df666
3e5b647
d93742c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2398831
d93742c
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
---
license: other
task_categories:
- visual-question-answering
- robotics
language:
- en
tags:
- AutonomousDriving
- VQA
- Commentary
- VLA
---



# SimLingo Dataset

## Overview
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). 

## Dataset Statistics
- **Large-scale dataset**: 3,308,315 total samples (note: these are not from unique routes as the provided CARLA route files are limited)
- **Diverse Scenarios:** Covers 38 complex scenarios, including urban traffic, participants violating traffic rules, and high-speed highway driving
- **Focused Evaluation:** Short routes with 1 scenario (62.1%) or 3 scenarios (37.9%) per route
- **Data Types**: RGB images (.jpg), LiDAR point clouds (.laz), Sensor measurements (.json.gz), Bounding boxes (.json.gz), Language annotations (.json.gz)

## Dataset Structure
The dataset is organized hierarchically with the following main components:
- `data/`: Raw sensor data (RGB, LiDAR, measurements, bounding boxes)
- `commentary/`: Natural language descriptions of driving decisions
- `dreamer/`: Instruction following data with multiple instruction/action pairs per sample
- `drivelm/`: VQA data, based on DriveLM

### Data Details
- **RGB Images**: 1024x512 front-view camera image
- **Augmented RGB Images**: 1024x512 front-view camera image with a random shift and orientation offset of the camera
- **LiDAR**: Point cloud data saved in LAZ format
- **Measurements**: Vehicle state, simulator state, and sensor readings in JSON format
- **Bounding Boxes**: Detailed information about each object in the scene.
- **Commentary, Dreamer, VQA**: Language annotations

## Usage
This dataset is chunked into groups of multiple routes for efficient download and processing.

### Download the whole dataset using git with Git LFS

```bash
# Clone the repository
git clone https://huggingface.co/datasets/RenzKa/simlingo

# Navigate to the directory
cd simlingo

# Pull the LFS files
git lfs pull
```

### Download a single file with wget

```bash
# Download individual files (replace with actual file URLs from Hugging Face)
wget https://huggingface.co/datasets/RenzKa/simlingo/resolve/main/[filename].tar.gz
```

### Extract to a single directory - please specify the location where you want to store the dataset
```bash
# Create output directory
mkdir -p database/simlingo

# Extract all archives to the same directory
for file in *.tar.gz; do
    echo "Extracting $file to database/simlingo/..."
    tar -xzf "$file" -C database/simlingo/
done
```


## License
Please refer to the license file for usage terms and conditions.


## Citation
If you use this dataset in your research, please cite:
```bibtex
@inproceedings{renz2025simlingo,
  title={SimLingo: Vision-Only Closed-Loop Autonomous Driving with Language-Action Alignment},
  author={Renz, Katrin and Chen, Long and Arani, Elahe and Sinavski, Oleg},
  booktitle={Conference on Computer Vision and Pattern Recognition (CVPR)},
  year={2025},
}
@inproceedings{sima2024drivelm,
  title={DriveLM: Driving with Graph Visual Question Answering},
  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},
  booktitle={European Conference on Computer Vision},
  year={2024},
}
```