You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

πŸš— BATON-Sample

Behavioral Analysis of Transition and Operation in Naturalistic Driving

     

A large-scale multimodal benchmark for bidirectional human–DAS control transition in naturalistic driving
Submitted to ACM Multimedia 2026

This is the sample release of BATON β€” 43 routes covering all 9 modalities, ready for quick exploration and prototyping. For the full 380-route dataset, see HenryYHW/BATON.



🎬 Live Preview


Continuous sequence β€” cabin fisheye Β· front view Β· 5 fps

8 CAN/IMU sensor streams
cycling through all channels

Daytime time-lapse β€” front Β· cabin Β· 2-min intervals

Nighttime driving β€” time-lapse with ⬆ DAS Handover and ↩ Human Takeover event highlights

πŸ“¦ Sample Release at a Glance

🌍 Routes πŸ‘€ Drivers πŸš™ Car Models ⏱️ Duration πŸ”„ Handover Events
43 43 ~20 ~15 h ~330
πŸ€– DAS Driving πŸ§‘ Human Driving ⬆️ DAS Handover ↩️ Human Takeover 🌍 Coverage
~52% ~48% ~165 ~165 5 Continents

Full dataset: 380 routes Β· 127 drivers Β· 84 car models Β· 136.6 h Β· 2,892 handover events β€” available at HenryYHW/BATON


Global distribution of participants, per-driver duration, and handover event breakdown (full dataset).

πŸ“ Sample Contents

Each of the 43 routes contains all 9 synchronized modalities:

BATON-Sample/
└── {vehicle_model}/
    └── {driver_id}/
        └── {route_hash}/
            β”œβ”€β”€ vehicle_dynamics.csv   # Speed, accel, steering, pedals, DAS status
            β”œβ”€β”€ planning.csv           # DAS curvature, lane change intent
            β”œβ”€β”€ radar.csv              # Lead vehicle distance & relative speed
            β”œβ”€β”€ driver_state.csv       # Face pose, eye openness, awareness
            β”œβ”€β”€ imu.csv                # 3-axis accel & gyro at 100 Hz
            β”œβ”€β”€ gps.csv                # Coordinates, heading
            β”œβ”€β”€ localization.csv       # Road curvature, lane position
            β”œβ”€β”€ qcamera.mp4            # Front-view video (526Γ—330, H.264, 20 fps)
            └── dcamera.mp4            # In-cabin fisheye video (1928Γ—1208, HEVC, 20 fps)

πŸ”¬ Data Collection & Modalities

Setup: Non-intrusive plug-and-play OBD-II dongle + dual cameras. Drivers use their own vehicles during real daily commutes β€” no lab, no script.

Component Spec
πŸ“‘ OBD-II Dongle CAN-bus at 100 Hz
πŸ“· Front camera 526Γ—330 Β· H.264 Β· 20 fps
πŸŽ₯ Cabin fisheye 1928Γ—1208 Β· HEVC Β· 20 fps
πŸ›°οΈ GPS 10 Hz

9 synchronized modalities:

  • vehicle_dynamics.csv β€” speed, accel, steering, pedals, DAS status
  • planning.csv β€” DAS curvature, lane change intent
  • radar.csv β€” lead vehicle distance & relative speed
  • driver_state.csv β€” face pose, eye openness, awareness
  • imu.csv β€” 3-axis accel & gyro at 100 Hz
  • gps.csv β€” coordinates, heading
  • localization.csv β€” road curvature, lane position
  • qcamera.mp4 β€” front-view video
  • dcamera.mp4 β€” in-cabin fisheye video

πŸ“· Front Β· Day

πŸ“· Front Β· Night

⬆️ DAS Handover

πŸŽ₯ Cabin Β· Day

πŸŽ₯ Cabin Β· Night

↩️ Human Takeover

Aligned multimodal streams around a HANDOVER event: cabin video Β· front video Β· GPS trajectory Β· sensor signals.

πŸ† Benchmark Tasks


Task Description Samples (full) Labels Primary Metric
🎯 Task 1 Driving action recognition (7-class) 979,809 Cruising · Car Following · Accelerating · Braking · Lane Change · Turning · Stopped Macro-F1
⬆️ Task 2 Handover prediction (Humanβ†’DAS) 56,564 Handover (14.9%) Β· No Handover AUPRC
↩️ Task 3 Takeover prediction (DASβ†’Human) 71,079 Takeover (11.9%) Β· No Takeover AUPRC

Evaluation protocol: Cross-driver split Β· 5-second input window Β· 3-second prediction horizon Β· 3 seeds (42, 123, 7)


πŸš€ Quick Start

1. Get the sample data

# Clone this sample dataset (~few GB, all modalities, 43 routes)
git lfs install
git clone https://huggingface.co/datasets/HenryYHW/BATON-Sample

# Or via Python
from huggingface_hub import snapshot_download
snapshot_download('HenryYHW/BATON-Sample', repo_type='dataset', local_dir='./data')

2. Get the full dataset

# Full dataset (380 routes) β€” requires HuggingFace account
python -c "
from huggingface_hub import snapshot_download
snapshot_download('HenryYHW/BATON', repo_type='dataset', local_dir='./data')
"

3. Extract video features

cd data_processing

# EfficientNet-B0 features (used in main baselines)
python extract_front_video_features.py
python extract_cabin_video_features.py

4. Train baselines (requires full dataset + benchmark files)

cd baseline

# GRU on all modalities β€” Task 1
python train_nn.py --task task1 --modality Full-All --model gru --seed 42

# XGBoost on structured signals β€” Task 2
python train_classical.py --task task2 --model xgb --seed 42

# Zero-shot VLM baseline (GPT-4o or Gemini 2.5 Flash)
python run_vlm.py --model gpt4o --task task1

See GitHub β€” OpenLKA/BATON for the complete codebase.


πŸ“ Evaluation Protocol

Setting Value
Primary split Cross-driver (disjoint drivers in train / val / test)
Additional splits Cross-vehicle, Random
Input window 5 seconds
Prediction horizon 1 s, 3 s, 5 s (main: 3 s)
Random seeds 42, 123, 7 β€” report 3-seed average
Task 1 metric Macro-F1
Task 2 / 3 metrics AUPRC (primary), AUC-ROC, F1

πŸ“‘ Data Access

Resource Link
πŸ” This Sample (43 routes) HuggingFace β€” HenryYHW/BATON-Sample
πŸ“¦ Full Dataset (380 routes) HuggingFace β€” HenryYHW/BATON
πŸ’» Code & Baselines GitHub β€” OpenLKA/BATON
πŸ“„ arXiv Paper arxiv.org/abs/2604.07263

πŸ“œ Citation

@article{wang2026baton,
  title   = {BATON: A Multimodal Benchmark for Bidirectional Automation Transition
             Observation in Naturalistic Driving},
  author  = {Wang, Yuhang and Xu, Yiyao and Yang, Chaoyun and Li, Lingyao
             and Sun, Jingran and Zhou, Hao},
  journal = {arXiv preprint arXiv:2604.07263},
  year    = {2026}
}

πŸ“„ License

This dataset is released for academic research use only under CC BY-NC 4.0 (Creative Commons Attribution–NonCommercial 4.0 International).

You are free to use and redistribute the data for non-commercial research, and to adapt or build upon it for non-commercial purposes β€” provided that:

  • Attribution β€” You must cite the BATON paper (see Citation above) in any publication or work that uses this dataset.
  • Non-Commercial β€” Commercial use of this dataset or any derivative is strictly prohibited.
  • Academic Use Only β€” This dataset is intended solely for academic research. Use in any commercial product, service, or application is not permitted.

For commercial licensing inquiries, please contact the authors.


πŸ”— Paper  Β·  Full Dataset  Β·  Sample Dataset  Β·  GitHub
Downloads last month
10

Paper for HenryYHW/BATON-Sample