File size: 3,993 Bytes
cb7c757 73d66ca | 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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | ---
license: mit
language:
- en
tags:
- autonomous-driving
- teleoperation
- robotics
- carla
- world-model
- video-prediction
- predictive-display
- future-action-prediction
- imitation-learning
- mile
---
# TeleopWM-Dataset
TeleopWM-Dataset is a large-scale collection of CARLA driving rollouts used for training and evaluating **TeleopWM**, a predictive latent world model for latency-resilient vision-based teleoperation.
The dataset contains synchronized RGB observations, vehicle controls, speed measurements, and metadata used to construct short-horizon future prediction tasks for both visual rollout prediction and future-action forecasting.
## Related Resources
* Project page: https://bimilab.github.io/paper-TeleopWM/
* Model checkpoint: https://huggingface.co/bimilab/TeleopWM
* GitHub repository: https://github.com/bimilab/paper-TeleopWM
* YouTube demo: https://youtu.be/WeKqqZuwBl0
## Overview
TeleopWM-Dataset was designed for research on:
* latency-resilient teleoperation
* predictive display
* future observation prediction
* future action prediction
* world models for driving
* autonomous and teleoperated vehicle systems
The dataset follows a CARLA/MILE-style rollout format and contains driving data collected across multiple CARLA towns and driving scenarios.
## Dataset Structure
```text
mile_action_diverse/
├── train/
│ ├── Town01/
│ ├── Town03/
│ └── Town04/
│
├── val/
│ └── Town02/
│
└── test/
└── Town05/
```
The official TeleopWM experiments use:
| Split | Towns |
| ---------- | ---------------------- |
| Train | Town01, Town03, Town04 |
| Validation | Town02 |
| Test | Town05 |
This split was selected to evaluate generalization to previously unseen environments.
## Data Contents
Each rollout contains:
* RGB camera images
* vehicle controls:
* throttle
* steering
* brake
* vehicle speed
* route metadata
* rollout metadata stored in:
```text
pd_dataframe.pkl
```
The TeleopWM pipeline constructs:
* 9 past frames
* 8 future frames
for predictive world-model training.
## Control Representation
Raw controls are stored as:
```text
[throttle, steer, brake]
```
TeleopWM internally converts them into:
```text
[longitudinal, scaled_steer, speed]
```
where:
```text
longitudinal = throttle - brake
```
This representation is used by the released TeleopWM model.
## Dataset Statistics
Approximate release size:
| Split | Size |
| ---------- | ------ |
| Train | 71 GB |
| Validation | 11 GB |
| Test | 9 GB |
| Total | ~90 GB |
## MILE Acknowledgement
This dataset uses a CARLA rollout format derived from the MILE ecosystem.
We acknowledge the contributions of the MILE project and the associated CARLA data-collection framework. The rollout structure, metadata conventions, and driving-data organization are based on the MILE pipeline and were extended for TeleopWM research on predictive display and future-action forecasting.
If you use this dataset, please also consider citing the original MILE work.
## Intended Use
This dataset is intended for:
* predictive world-model research
* future frame prediction
* future action prediction
* teleoperation research
* latency mitigation research
* autonomous driving research
* imitation learning research
## Out-of-Scope Use
This dataset is not intended to:
* certify safety-critical driving systems
* validate real-world autonomous vehicles without additional testing
* represent all driving environments or traffic conditions
* serve as a benchmark for real-world safety evaluation
## Citation
If you use TeleopWM-Dataset, please cite:
```bibtex
@misc{teleopwm_dataset2026,
title={TeleopWM-Dataset: A CARLA Dataset for Latency-Resilient Vision-Based Teleoperation},
author={Khalil, Aws and Kwon, Jaerock},
year={2026}
}
```
## License
This dataset is released under the MIT License. |