Datasets:
Improve dataset card: add paper, code, project links and sample usage
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,9 +1,12 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
license: cc-by-nc-4.0
|
|
|
|
|
|
|
| 3 |
task_categories:
|
| 4 |
- video-classification
|
| 5 |
-
|
| 6 |
-
- en
|
| 7 |
tags:
|
| 8 |
- MOTOR
|
| 9 |
- driving
|
|
@@ -11,40 +14,42 @@ tags:
|
|
| 11 |
- multimodal
|
| 12 |
- eye-tracking
|
| 13 |
- gaze
|
| 14 |
-
- indian-traffic
|
| 15 |
-
pretty_name: MOTOR
|
| 16 |
-
size_categories:
|
| 17 |
-
- 1K<n<10K
|
| 18 |
---
|
| 19 |
|
| 20 |
# MOTOR — A Multimodal Dataset for Two-Wheeler Rider Behavior Understanding
|
| 21 |
|
| 22 |
-
**
|
| 23 |
-
|
| 24 |
-
## Abstract
|
| 25 |
|
| 26 |
-
|
| 27 |
|
| 28 |
-
##
|
| 29 |
|
| 30 |
-
|
| 31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
|
|
|
|
| 35 |
|
|
|
|
|
|
|
|
|
|
| 36 |
clips/<ride>/helmet/<clip>.mp4 # helmet-mounted view
|
| 37 |
-
|
| 38 |
-
|
| 39 |
clips/<ride>/rear/<clip>.mp4 # rear-facing view
|
| 40 |
-
|
| 41 |
-
|
| 42 |
clips/<ride>/eye_tracker/<clip>.mp4 # rider's first-person gaze view
|
| 43 |
-
|
| 44 |
-
|
| 45 |
clips/<ride>/telemetry/<clip>.csv # per-frame gyro + GPS for the clip
|
| 46 |
-
|
| 47 |
-
|
| 48 |
|
| 49 |
Faces and license plates in all camera videos are blurred for privacy.
|
| 50 |
Two rides (`14`, `15`) do not include the eye-tracker modality. One ride (`12`) has GPS-only telemetry.
|
|
@@ -62,6 +67,19 @@ Two rides (`14`, `15`) do not include the eye-tracker modality. One ride (`12`)
|
|
| 62 |
|
| 63 |
Resampled to 30 Hz; `timestamp_s` is clip-local.
|
| 64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
## License
|
| 66 |
|
| 67 |
Released under CC BY-NC 4.0 — non-commercial research use only.
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
license: cc-by-nc-4.0
|
| 5 |
+
size_categories:
|
| 6 |
+
- 1K<n<10K
|
| 7 |
task_categories:
|
| 8 |
- video-classification
|
| 9 |
+
pretty_name: MOTOR
|
|
|
|
| 10 |
tags:
|
| 11 |
- MOTOR
|
| 12 |
- driving
|
|
|
|
| 14 |
- multimodal
|
| 15 |
- eye-tracking
|
| 16 |
- gaze
|
| 17 |
+
- indian-traffic
|
|
|
|
|
|
|
|
|
|
| 18 |
---
|
| 19 |
|
| 20 |
# MOTOR — A Multimodal Dataset for Two-Wheeler Rider Behavior Understanding
|
| 21 |
|
| 22 |
+
[**Project Page**](https://varuniiith.github.io/MOTOR-Dataset/) | [**Paper**](https://huggingface.co/papers/2605.22550) | [**Code**](https://github.com/VarunIIITH/MOTOR)
|
|
|
|
|
|
|
| 23 |
|
| 24 |
+
MOTOR is the first large-scale, multi-view, multimodal resource dedicated to two-wheelers in dense, unstructured traffic. It comprises 1,629 annotated sequences (25+ hours of video data) collected from 16 riders and integrates synchronized front, rear, and helmet videos, rider eye-gaze from wearable trackers, on-road audio, and telemetry (GPS, accelerometer, gyroscope).
|
| 25 |
|
| 26 |
+
## Sample Usage
|
| 27 |
|
| 28 |
+
To use this dataset with the official codebase, follow these steps:
|
| 29 |
|
| 30 |
+
### Setup
|
| 31 |
+
```bash
|
| 32 |
+
conda create -n motor python=3.10 -y
|
| 33 |
+
conda activate motor
|
| 34 |
+
pip install -r requirements.txt
|
| 35 |
+
```
|
| 36 |
|
| 37 |
+
### Training
|
| 38 |
+
The following command trains a three-stream fusion model (RGB + gaze + telemetry) on a Swin3D-T backbone:
|
| 39 |
+
```bash
|
| 40 |
+
python train.py --config configs/swin3dt_gaze_tele.yaml
|
| 41 |
+
```
|
| 42 |
|
| 43 |
+
## Structure
|
| 44 |
|
| 45 |
+
```text
|
| 46 |
+
annotations.csv # one row per clip
|
| 47 |
+
clips/<ride>/front/<clip>.mp4 # front-facing road view
|
| 48 |
clips/<ride>/helmet/<clip>.mp4 # helmet-mounted view
|
|
|
|
|
|
|
| 49 |
clips/<ride>/rear/<clip>.mp4 # rear-facing view
|
|
|
|
|
|
|
| 50 |
clips/<ride>/eye_tracker/<clip>.mp4 # rider's first-person gaze view
|
|
|
|
|
|
|
| 51 |
clips/<ride>/telemetry/<clip>.csv # per-frame gyro + GPS for the clip
|
| 52 |
+
```
|
|
|
|
| 53 |
|
| 54 |
Faces and license plates in all camera videos are blurred for privacy.
|
| 55 |
Two rides (`14`, `15`) do not include the eye-tracker modality. One ride (`12`) has GPS-only telemetry.
|
|
|
|
| 67 |
|
| 68 |
Resampled to 30 Hz; `timestamp_s` is clip-local.
|
| 69 |
|
| 70 |
+
## Citation
|
| 71 |
+
|
| 72 |
+
If you find this work useful, please cite:
|
| 73 |
+
|
| 74 |
+
```bibtex
|
| 75 |
+
@inproceedings{paturkar2026motor,
|
| 76 |
+
title={MOTOR: A Multimodal Dataset for Two-Wheeler Rider Behavior Understanding},
|
| 77 |
+
author={Paturkar, Varun and others},
|
| 78 |
+
booktitle={Proceedings of the IEEE International Conference on Robotics and Automation (ICRA)},
|
| 79 |
+
year={2026}
|
| 80 |
+
}
|
| 81 |
+
```
|
| 82 |
+
|
| 83 |
## License
|
| 84 |
|
| 85 |
Released under CC BY-NC 4.0 — non-commercial research use only.
|