๐๐จ ADAS-TO-Sample
10% Stratified Preview of ADAS-TO
~1,570 real-world takeover events ยท 163 vehicle models ยท 23 manufacturers
๐ข This is a 10% stratified sample for quick evaluation. For the full dataset (15,705 clips, ~33 GB), visit HenryYHW/ADAS-TO or contact henryyuhangwang@gmail.com.
๐ฌ Takeover Examples
Each GIF shows ยฑ3 seconds around the takeover moment โ ADAS engaged โ driver takes control
![]() On-coming Traffic |
![]() Bridge |
![]() Night Driving |
![]() Sharp Curve |
![]() Surrounding Car |
![]() Traffic Light |
![]() Lane Change |
![]() Hard Brake |
๐ Dataset at a Glance
| Statistic | Value | |
|---|---|---|
| ๐ฅ | Total takeover clips | ~1,570 (10% sample) |
| ๐ | Vehicle models | 163 (all represented) |
| ๐ญ | Manufacturers | 23 |
| โฑ๏ธ | Clip duration | 20 seconds (ยฑ10s around takeover) |
| ๐น | Video | Front-facing camera, 20 fps |
| ๐ก | CAN / sensor signals | 10โ100 Hz |
| ๐ | Files per clip | 10 (1 video + 1 meta + 8 CSV) |
| ๐พ | Sample size | ~3.3 GB |
| ๐ฆ | Full dataset | 15,705 clips, ~33 GB (ADAS-TO) |
๐ Sampling Method
This sample was created using stratified sampling by vehicle model:
- Each of the 163 vehicle models contributes
max(1, round(count ร 0.1))clips - Every vehicle model is guaranteed at least 1 clip
- Clips are selected deterministically (sorted, evenly spaced)
- Same anonymization as the full dataset (
driver_XXX,route_XXX)
๐ Dataset Structure
ADAS-TO-Sample/
โโโ <CAR_MODEL>/ # e.g., TOYOTA_PRIUS, TESLA_AP3_MODEL_3
โ โโโ <driver_XXX>/ # ๐ anonymized driver ID
โ โโโ <route_XXX>/ # ๐ anonymized route ID
โ โโโ <clip_id>/ # integer (0-indexed per route)
โ โโโ ๐ฅ takeover.mp4 20-second front-camera video
โ โโโ ๐ meta.json clip metadata & timing
โ โโโ ๐ carState.csv vehicle dynamics & driver inputs
โ โโโ ๐ค controlsState.csv ADAS controller state & alerts
โ โโโ ๐ฎ carControl.csv lateral/longitudinal commands
โ โโโ โ๏ธ carOutput.csv actuator outputs
โ โโโ ๐ง drivingModelData.csv model predictions & lane detection
โ โโโ ๐ก radarState.csv lead vehicle radar data
โ โโโ ๐ accelerometer.csv IMU acceleration data
โ โโโ ๐ longitudinalPlan.csv planner targets & FCW
โโโ ...
๐ Takeover Event Definition
โโโโโโโโโ 10 seconds โโโโโโโโโบโโโโโโโโโ 10 seconds โโโโโโโโโบ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ๐ค ADAS ENGAGED โ ๐ค MANUAL CONTROL โ
โ (automation driving) โ (driver takes over) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โฒ
TAKEOVER EVENT
(ON โ OFF transition)
A takeover event is detected as an ADAS ON โ OFF transition satisfying:
| Criterion | Value |
|---|---|
| ADAS engaged | controlsState.enabled OR cruiseState.enabled |
| Min ON duration | โฅ 2 seconds before disengagement |
| Min OFF duration | โฅ 2 seconds after disengagement |
| Gap merging | Transient gaps < 0.5s merged (filters sensor noise) |
| Clip window | ยฑ10 seconds centered on transition (20s total) |
๐ Data Fields Reference
๐ meta.json โ Clip Metadata
| Field | Type | Description |
|---|---|---|
car_model |
string | Vehicle model (e.g., TOYOTA_PRIUS) |
dongle_id |
string | Anonymized driver ID (driver_XXX) |
route_id |
string | Anonymized route ID (route_XXX) |
log_kind |
string | Log resolution: qlog (10 Hz) or rlog (100 Hz) |
log_hz |
int | CAN signal sampling rate |
vid_kind |
string | Camera source type |
camera_fps |
int | Video frame rate (20 fps) |
clip_id |
int | Clip index within route (0-indexed) |
event_mono |
int | Monotonic timestamp of takeover (ns) |
video_time_s |
float | Takeover time within full route video (s) |
clip_start_s |
float | Clip start time within route (s) |
clip_dur_s |
float | Clip duration (s) |
๐ carState.csv โ Vehicle Dynamics & Driver Inputs
| Column | Unit | Description |
|---|---|---|
vEgo |
m/s | Ego vehicle speed |
aEgo |
m/sยฒ | Ego vehicle acceleration |
steeringAngleDeg |
deg | Steering wheel angle |
steeringTorque |
Nยทm | Driver steering torque |
steeringPressed |
bool | Driver actively steering |
gasPressed |
bool | Gas pedal pressed |
brakePressed |
bool | Brake pedal pressed |
cruiseState.enabled |
bool | Cruise / ADAS engaged |
๐ค controlsState.csv โ ADAS Controller
| Column | Unit | Description |
|---|---|---|
enabled |
bool | ADAS system enabled |
active |
bool | ADAS actively controlling vehicle |
curvature |
1/m | Current path curvature |
desiredCurvature |
1/m | Target curvature from planner |
vCruise |
m/s | Set cruise speed |
longControlState |
enum | Longitudinal control state |
alertText1 |
string | Primary driver alert |
alertText2 |
string | Secondary driver alert |
๐ฎ carControl.csv โ Control Commands
| Column | Unit | Description |
|---|---|---|
latActive |
bool | Lateral control active |
longActive |
bool | Longitudinal control active |
actuators.accel |
m/sยฒ | Commanded acceleration |
actuators.torque |
Nยทm | Commanded steering torque |
actuators.curvature |
1/m | Commanded path curvature |
โ๏ธ carOutput.csv โ Actuator Outputs
| Column | Description |
|---|---|
actuatorsOutput.accel |
Acceleration actuator output |
actuatorsOutput.brake |
Brake actuator output |
actuatorsOutput.gas |
Gas actuator output |
actuatorsOutput.steer |
Steering actuator output |
actuatorsOutput.steerOutputCan |
Raw CAN steering output |
actuatorsOutput.steeringAngleDeg |
Steering angle output (deg) |
๐ง drivingModelData.csv โ Driving Model Predictions
| Column | Description |
|---|---|
action.desiredCurvature |
Model-predicted desired curvature |
action.desiredAcceleration |
Model-predicted desired acceleration |
laneLineMeta.leftProb |
Left lane line detection probability |
laneLineMeta.rightProb |
Right lane line detection probability |
๐ก radarState.csv โ Lead Vehicle Detection
| Column | Unit | Description |
|---|---|---|
leadOne.dRel |
m | Distance to primary lead vehicle |
leadOne.vRel |
m/s | Relative velocity of lead |
leadOne.vLead |
m/s | Absolute velocity of lead |
leadOne.aLeadK |
m/sยฒ | Lead vehicle acceleration |
leadTwo.* |
โ | Secondary lead vehicle (same fields) |
๐ accelerometer.csv โ IMU Data
| Column | Unit | Description |
|---|---|---|
acceleration.v |
m/sยฒ | 3-axis acceleration vector |
timestamp |
โ | Sensor timestamp |
๐ longitudinalPlan.csv โ Planner Outputs
| Column | Unit | Description |
|---|---|---|
aTarget |
m/sยฒ | Target acceleration |
hasLead |
bool | Lead vehicle detected |
fcw |
bool | Forward collision warning active |
speeds[] |
m/s | Planned speed profile |
accels[] |
m/sยฒ | Planned acceleration profile |
๐ Quick Start
Loading a Single Clip
import json
import pandas as pd
from huggingface_hub import hf_hub_download
repo_id = "HenryYHW/ADAS-TO-Sample"
clip_path = "TOYOTA_PRIUS/driver_001/route_001/0"
# ๐ Download metadata
meta_path = hf_hub_download(repo_id, f"{clip_path}/meta.json", repo_type="dataset")
with open(meta_path) as f:
meta = json.load(f)
# ๐ Load vehicle state signals
car_state = pd.read_csv(
hf_hub_download(repo_id, f"{clip_path}/carState.csv", repo_type="dataset")
)
print(car_state[["vEgo", "aEgo", "steeringAngleDeg", "brakePressed"]].describe())
๐พ Download the Sample
# Using huggingface-cli (recommended)
huggingface-cli download HenryYHW/ADAS-TO-Sample --repo-type dataset --local-dir ./ADAS-TO-Sample
# Using git-lfs
git lfs install
git clone https://huggingface.co/datasets/HenryYHW/ADAS-TO-Sample
๐ฆ Full Dataset
This is a 10% preview. The full ADAS-TO dataset contains:
- 15,705 takeover clips
- 327 unique drivers
- 2,312 unique routes
- ~33 GB total size
๐ Access the full dataset: HenryYHW/ADAS-TO
For questions or full dataset access, contact: henryyuhangwang@gmail.com
๐ Privacy & Ethics
- Anonymized identifiers: All driver and route IDs are replaced with anonymous tokens (
driver_XXX,route_XXX) - Forward-view only: Video captures road-facing view only โ no cabin or driver footage
- No PII: No personally identifiable information is included in any data file
- Community-sourced: Data collected through autonomous driving enthusiast communities with informed participation
๐ Citation
If you use ADAS-TO in your research, please cite:
@dataset{adas_to_2026,
title = {ADAS-TO: A Large-Scale Multimodal Naturalistic Dataset and
Empirical Characterization of Human Takeovers during ADAS Engagement},
author = {Anonymous Authors},
year = {2026},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/HenryYHW/ADAS-TO}
}
๐ License
This dataset is released under CC BY-NC 4.0.
For academic and non-commercial research purposes.
Built with โค๏ธ for the autonomous driving research community
- Downloads last month
- 17







