Datasets:
license: apache-2.0
task_categories:
- robotics
tags:
- LeRobot
configs:
- config_name: default
data_files: data/*/*.parquet
TL;DR of L2D, the world's largest self-driving dataset! Read more about L2D on the official Huggingface blog: LeRobot goes to driving school
- 90+ TeraBytes of multimodal data (5000+ hours of driving) from 30 cities in Germany
- 6x surrounding HD cameras and complete vehicle state: Speed/Heading/GPS/IMU
- Continuous: Gas/Brake/Steering and discrete actions: Gear/Turn Signals
- Environment state: Lane count, Road type (highway|residential), Road surface (asphalt, cobbled, sett), Max speed limit.
- Environment conditions: Precipitation, Conditions (Snow, Clear, Rain), Lighting (Dawn, Day, Dusk)
- Designed for training end-to-end models conditioned on natural language instructions or future waypoints
- Natural language instructions. F.ex "When the light turns green, drive over the tram tracks and then through the roundabout" for each episode
- Future waypoints snapped to OpenStreetMap graph, aditionally rendered in birds-eye-view
- Expert (driving instructors) and student (learner drivers) policies
State-of-the art Vision Language Models and Large Language Models are trained on open-source image-text corpora sourced from the internet, which spearheaded the recent acceleration of open-source AI. Despite these breakthroughs, the adoption of end-to-end AI within the robotics and automotive community remains low, primarily due to a lack of high quality, large scale multimodal datasets like OXE. To unlock the potential for robotics AI, Yaak teamed up with the LeRobot team at 🤗 and is excited to announce Learning to Drive (L2D) to the robotics AI community. L2D is the world’s largest multimodal dataset aimed at building an open-sourced spatial intelligence for the automotive domain with first class support for 🤗’s LeRobot training pipeline and models. Drawing inspiration from the best practices of source version control, Yaak also invites the AI community to search and discover novel episodes in our entire dataset (> 1 PetaBytes), and queue their collection for review to be merged into future release (R5+).
This dataset was created using LeRobot.
Dataset Description
- Homepage: Yaak
- Paper: LeRobot goes to driving school
- License: apache-2.0
Dataset Structure
{
"codebase_version": "v3.0",
"robot_type": "KIA Niro EV 2023",
"total_episodes": 100000,
"total_frames": 19042712,
"total_tasks": 1,
"chunks_size": 1000,
"data_files_size_in_mb": 100,
"video_files_size_in_mb": 500,
"fps": 10,
"splits": {
"train": "0:100000"
},
"data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
"video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
"features": {
"observation.state.vehicle": {
"dtype": "float32",
"shape": [
8
],
"names": {
"axes": [
"speed",
"heading",
"heading_error",
"hp_loc_latitude",
"hp_loc_longitude",
"hp_loc_altitude",
"acceleration_x",
"acceleration_y"
]
}
},
"observation.state.lanes": {
"dtype": "string",
"shape": [
1
],
"names": null
},
"observation.state.road": {
"dtype": "string",
"shape": [
1
],
"names": null
},
"observation.state.surface": {
"dtype": "string",
"shape": [
1
],
"names": null
},
"observation.state.max_speed": {
"dtype": "string",
"shape": [
1
],
"names": null
},
"observation.state.precipitation": {
"dtype": "string",
"shape": [
1
],
"names": null
},
"observation.state.conditions": {
"dtype": "string",
"shape": [
1
],
"names": null
},
"observation.state.lighting": {
"dtype": "string",
"shape": [
1
],
"names": null
},
"observation.state.waypoints": {
"dtype": "float32",
"shape": [
10,
2
],
"names": [
"way",
"points"
]
},
"observation.state.timestamp": {
"dtype": "int64",
"shape": [
1
],
"names": {
"axes": [
"unix_epoc_timestamp"
]
}
},
"task.policy": {
"dtype": "string",
"shape": [
1
],
"names": null
},
"task.instructions": {
"dtype": "string",
"shape": [
1
],
"names": null
},
"action.continuous": {
"dtype": "float32",
"shape": [
3
],
"names": {
"axes": [
"gas_pedal_normalized",
"brake_pedal_normalized",
"steering_angle_normalized"
]
}
},
"action.discrete": {
"dtype": "int32",
"shape": [
2
],
"names": {
"axes": [
"gear",
"turn_signal"
]
}
},
"timestamp": {
"dtype": "float32",
"shape": [
1
],
"names": null
},
"frame_index": {
"dtype": "int64",
"shape": [
1
],
"names": null
},
"episode_index": {
"dtype": "int64",
"shape": [
1
],
"names": null
},
"index": {
"dtype": "int64",
"shape": [
1
],
"names": null
},
"task_index": {
"dtype": "int64",
"shape": [
1
],
"names": null
},
"observation.images.left_forward": {
"dtype": "video",
"shape": [
3,
1080,
1920
],
"names": [
"channel",
"height",
"width"
]
},
"observation.images.front_left": {
"dtype": "video",
"shape": [
3,
1080,
1920
],
"names": [
"channel",
"height",
"width"
]
},
"observation.images.right_forward": {
"dtype": "video",
"shape": [
3,
1080,
1920
],
"names": [
"channel",
"height",
"width"
]
},
"observation.images.left_backward": {
"dtype": "video",
"shape": [
3,
1080,
1920
],
"names": [
"channel",
"height",
"width"
]
},
"observation.images.rear": {
"dtype": "video",
"shape": [
3,
1080,
1920
],
"names": [
"channel",
"height",
"width"
]
},
"observation.images.right_backward": {
"dtype": "video",
"shape": [
3,
1080,
1920
],
"names": [
"channel",
"height",
"width"
]
},
"observation.images.map": {
"dtype": "video",
"shape": [
3,
360,
640
],
"names": [
"channel",
"height",
"width"
]
}
}
}
Citation
BibTeX:
@article{yaak2025l2d,
author = {Yaak & LeRobot team},
title ={LeRobot goes to driving school: World’s largest open-source self-driving dataset},
journal = {https://www.huggingface.com/blog/lerobot-goes-to-driving-school},
year = {2025},
}
@article{yaak2024si-02,
author = {Yaak team},
title ={Building spatial intelligence part - 2},
journal = {https://www.yaak.ai/blog/building-spatial-intelligence-part-2},
year = {2024},
}
@article{yaak2024si-01,
author = {Yaak team},
title ={Building spatial intelligence part - 1},
journal = {https://www.yaak.ai/blog/buildling-spatial-intelligence-part1},
year = {2024},
}
@article{yaak2023actiongpt,
author = {Yaak team},
title ={Next action prediction with GPTs},
journal = {https://www.yaak.ai/blog/next-action-prediction-with-gpts},
year = {2023},
}
@article{yaak2023novel,
author = {Yaak team},
title ={A novel test for autonomoy},
journal = {https://www.yaak.ai/blog/a-novel-test-for-autonomy},
year = {2023},
}