CoolFace
Datasetpublic

TESS-Computer/carla-simlingo-raw

SimLingo CARLA Dataset (Raw, 4Hz) Raw driving data from CARLA simulator. No transformations or derived fields - all original measurements preserved as-is. Dataset Summary Source: SimLingo (CVPR 2025) Scale: 228,757 frames (23 shards) Frame Rate: 4 FPS Resolution: 1024x512 RGB Routes: Complete driving episodes (routes never split across shards) Column Schema Core Fields Column Type Description route_id string Route… See the full description on the dataset page: https://huggingface.co/datasets/TESS-Computer/carla-simlingo-raw.

sourceHugging Facemitupdated 8mo agoView on Hugging Face
0likes30downloads
Dataset Card

SimLingo CARLA Dataset (Raw, 4Hz)

Raw driving data from CARLA simulator. No transformations or derived fields - all original measurements preserved as-is.

Dataset Summary

  • Source: SimLingo (CVPR 2025)
  • Scale: 228,757 frames (23 shards)
  • Frame Rate: 4 FPS
  • Resolution: 1024x512 RGB
  • Routes: Complete driving episodes (routes never split across shards)

Column Schema

Core Fields

ColumnTypeDescription
route_idstringRoute identifier
frame_idxint32Frame index within route
imagebytesOriginal JPEG image bytes

Control Signals (Raw)

ColumnTypeDescription
steerfloat32Steering [-1, 1]
throttlefloat32Throttle [0, 1]
brakeboolBrake applied

Vehicle State

ColumnTypeDescription
speedfloat32Current speed (m/s)
target_speedfloat32Target speed
speed_limitfloat32Speed limit
thetafloat32Heading angle
anglefloat32Angle to target

Navigation

ColumnTypeDescription
commandint32Navigation command
next_commandint32Next navigation command
pos_globalstring (JSON)Global position [x, y]
target_pointstring (JSON)Target point
target_point_nextstring (JSON)Next target point
aim_wpstring (JSON)Aim waypoint
routestring (JSON)Planned route waypoints
route_originalstring (JSON)Original route waypoints
changed_routeboolRoute was changed

Hazards & Environment

ColumnTypeDescription
junctionboolIn junction
vehicle_hazardboolVehicle hazard detected
vehicle_affecting_idint32ID of affecting vehicle
walker_hazardboolPedestrian hazard
walker_affecting_idint32ID of affecting pedestrian
light_hazardboolTraffic light hazard
stop_sign_hazardboolStop sign hazard
stop_sign_closeboolStop sign nearby
walker_closeboolPedestrian nearby
walker_close_idint32ID of nearby pedestrian
speed_reduced_by_obj_typestringObject type causing speed reduction
speed_reduced_by_obj_idint32Object ID causing speed reduction
speed_reduced_by_obj_distancefloat32Distance to speed-reducing object
control_brakeboolControl brake applied

Augmentation (from SimLingo)

ColumnTypeDescription
augmentation_translationfloat32Translation augmentation
augmentation_rotationfloat32Rotation augmentation

Transforms

ColumnTypeDescription
ego_matrixstring (JSON)4x4 ego vehicle transform matrix
boxesstring (JSON)3D bounding boxes for all objects

Commentary (Optional)

ColumnTypeDescription
commentarystringNatural language commentary
commentary_datastring (JSON)Full commentary object with metadata

Usage

python
from datasets import load_dataset
import json

ds = load_dataset("TESS-Computer/carla-simlingo-raw", split="train")

sample = ds[0]
print(sample['route_id'])
print(sample['steer'], sample['throttle'], sample['brake'])
print(sample['speed'])

# Parse JSON fields
pos = json.loads(sample['pos_global'])
boxes = json.loads(sample['boxes']) if sample['boxes'] else []

Data Collection

  • Simulator: CARLA 0.9.15 (Leaderboard 2.0)
  • Expert: PDM-Lite (rule-based, 100% route completion)
  • Scenarios: Single-scenario routes with random weather
  • Towns: Towns 1-13

Citation

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={CVPR},
  year={2025},
}

License

MIT (dataset processing code). Original data subject to SimLingo and CARLA licenses.