π BATON
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
π¬ 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
π Dataset at a Glance
| π Routes | π€ Drivers | π Car Models | β±οΈ Duration | π Handover Events |
|---|---|---|---|---|
| 380 | 127 | 84 | 136.6 h | 2,892 |
| π€ DAS Driving | π§ Human Driving | β¬οΈ DAS Handover | β©οΈ Human Takeover | π Coverage |
|---|---|---|---|---|
| 52.5% | 47.5% | 1,460 | 1,432 | 6 Continents |
Global distribution of participants, per-driver duration, and handover event breakdown.
π¬ 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.
9 synchronized modalities:
|
|
Aligned multimodal streams around a HANDOVER event: cabin video Β· front video Β· GPS trajectory Β· sensor signals.
π Benchmark Tasks
| Task | Description | Samples | 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)
π Repository Structure
BATON/
βββ benchmark/ # Benchmark data and generation code
β βββ generate_benchmark.py # Full benchmark construction pipeline
β βββ routes.csv # Route metadata (380 routes)
β βββ action_labels.csv # 1 Hz action labels
β βββ task1_action_samples.csv # Task 1 samples
β βββ task2_activation_samples_h{1,3,5}.csv # Task 2 at 3 horizons
β βββ task3_takeover_samples_h{1,3,5}.csv # Task 3 at 3 horizons
β βββ split_cross_driver.json # Primary evaluation split
β βββ split_cross_vehicle.json # Cross-vehicle split
β βββ split_random.json # Random split
β βββ benchmark_protocol.md # Detailed protocol specification
β
βββ baseline/ # Training and evaluation code
β βββ config.py # Paths, modality definitions, hyperparameters
β βββ dataset.py # PyTorch dataset for all tasks
β βββ models.py # GRU and TCN with gated fusion
β βββ metrics.py # Evaluation metrics
β βββ train_nn.py # Neural network training (GRU / TCN)
β βββ train_classical.py # XGBoost and LR baselines
β βββ run_vlm.py # Zero-shot VLM baselines (Gemini / GPT-4o)
β βββ vlm_prompts.py # VLM prompt construction
β βββ collect_results.py # Aggregate and print result tables
β
βββ data_processing/ # Feature extraction scripts
βββ extract_front_video_features.py # EfficientNet-B0 front video
βββ extract_cabin_video_features.py # EfficientNet-B0 cabin video
βββ extract_clip_features.py # CLIP ViT-B/32 features
βββ video_utils.py # Shared video decoding utilities
βββ gps_semantic_enrichment.py # GPS β road context features
π Quick Start
1. Get the data
# Sample dataset (~few GB, all modalities, 43 routes)
git lfs install
git clone https://huggingface.co/datasets/HenryYHW/BATON-Sample
# Full dataset β download via HuggingFace Hub
python -c "
from huggingface_hub import snapshot_download
snapshot_download('HenryYHW/BATON', repo_type='dataset', local_dir='./data')
"
2. Preprocess signals
cd baseline
python preprocess.py
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
# CLIP ViT-B/32 features (optional)
python extract_clip_features.py
4. Train baselines
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
# TCN ablation β Task 3, sensors only
python train_nn.py --task task3 --modality Text --model tcn --seed 42
# Zero-shot VLM baseline (GPT-4o or Gemini 2.5 Flash)
python run_vlm.py --model gpt4o --task task1
python run_vlm.py --model gemini --task task2
5. Collect results
python collect_results.py # prints all result tables
π 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 |
|---|---|
| π¦ Full Dataset | HuggingFace β HenryYHW/BATON |
| π Sample Dataset (43 routes) | HuggingFace β HenryYHW/BATON-Sample |
| π 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.
- Downloads last month
- 26





