|
---
|
|
pretty_name: "Robusto-1 Extended"
|
|
tags:
|
|
- video
|
|
- urban-driving
|
|
- peru
|
|
- traffic
|
|
- autonomous-driving
|
|
license: apache-2.0
|
|
task_categories:
|
|
- video-classification
|
|
---
|
|
|
|
|
|
# Robusto-1 Extended Dataset
|
|
|
|
## Description
|
|
|
|
The **Robusto-1 Extended** dataset contains videos recorded from 3 different cities in Peru: mainly Lima, Cusco and Cajamarca;
|
|
along with detailed information about vehicle actions, external factors, and driving conditions.
|
|
This dataset is useful for tasks such as vehicle behavior analysis, traffic condition detection, and driving scenario simulation.
|
|
|
|
Each video record includes data on the ego-vehicle's behavior, external conditions (traffic signs, weather, etc.), and more.
|
|
The videos were recorded under various traffic conditions, with each one labeled with its corresponding metadata.
|
|
|
|
### Features:
|
|
- **ID**: Unique identifier for the video.
|
|
- **Video_Name**: Filename of the video.
|
|
- **Place**: Location where the video was recorded.
|
|
- **Ego_Vehicle**: Detailed information about the ego-vehicle’s actions during the recording.
|
|
- **External_Factors**: External conditions such as traffic signs, weather, etc.
|
|
- **Video**: Path to the video file in `.mp4` format.
|
|
|
|
## Metadata Example
|
|
|
|
Each video in the dataset is associated with metadata containing relevant information about the driving conditions at the time of recording. Below is an example of one metadata record:
|
|
|
|
```json
|
|
{
|
|
"ID": "Robusto 1_1",
|
|
"Place": "Lima",
|
|
"Ego_Vehicle": {
|
|
"Vehicle Actions": "Advancing Intermittently",
|
|
"Driving Action Reasoning": "Following Vehicle Ahead",
|
|
"Vehicle Motion Behavior": "Stop-and-Go"
|
|
},
|
|
"External_Factors": {
|
|
"Traffic Signs": "",
|
|
"Traffic Lights": "Red",
|
|
"Weather Conditions": "Clear",
|
|
"Road Surface Conditions": "",
|
|
"Road Structures": "",
|
|
"Static objects": "Buildings",
|
|
"Other Vehicle Behaviors": "Cutting Off",
|
|
"Pedestrian Behavior": "",
|
|
"Unexpected Obstacles": "",
|
|
"Emergency Situations": "",
|
|
"Lighting Conditions": "Daylight",
|
|
"Traffic Conditions": "Heavy Traffic",
|
|
"Driving Environment": "Urban"
|
|
}
|
|
}
|
|
```
|
|
|
|
## Usage
|
|
|
|
This dataset can be used for vehicle behavior analysis, improving autonomous driving algorithms, or training/testing computer vision models that require data on traffic and vehicle behavior in various conditions.
|
|
|
|
### Load the Dataset
|
|
|
|
To load this dataset from Hugging Face, you can use the following code:
|
|
|
|
```python
|
|
from datasets import load_dataset
|
|
|
|
dataset = load_dataset("path/to/robusto-1_extended")
|
|
```
|
|
|
|
## File Structure
|
|
|
|
The structure of the dataset files is as follows:
|
|
|
|
```
|
|
robusto-1_extended/
|
|
├── README.md
|
|
├── metadata.jsonl
|
|
└── videos/
|
|
├── Robusto 1_1.mp4
|
|
├── Robusto 1_2.mp4
|
|
└── ...
|
|
```
|
|
|
|
|
|
- `README.md`: Contains the dataset description and YAML metadata at the top.
|
|
- `metadata.jsonl`: File storing video metadata in JSON Lines format.
|
|
- `train/`: Directory containing all `.mp4` video files.
|
|
|
|
|
|
## Short Q&A:
|
|
|
|
**Q**: What is the main difference between the Robusto-1 Extended and the Robusto-1 dataset?
|
|
|
|
|
|
**A**: They are both composed of small 5 second clips of 10 frames per seconds of out-of-distribution driving scenes in Peru. The main difference is that the Robusto-1
|
|
dataset is composed of 7 video clips with both Human and Machine responses and video meta-data, while the Robusto-1 Extended is only
|
|
composed of 200 videos with their meta-data to facilitate further research in VQA research so that different groups can create their own questions.
|
|
|
|
## Citation
|
|
|
|
If you use this dataset in your research, please cite our ArXiv pre-print that was recently accepted at the **CVPR 2025 Workshop on
|
|
Distillation of Foundation Models for Autonomous Driving**.
|
|
|
|
|
|
```
|
|
@article{cusipuma2025robusto,
|
|
title={Robusto-1 Dataset: Comparing Humans and VLMs on real out-of-distribution Autonomous Driving VQA from Peru},
|
|
author={Cusipuma, Dunant and Ortega, David and Flores-Benites, Victor and Deza, Arturo},
|
|
journal={arXiv preprint arXiv:2503.07587},
|
|
year={2025}
|
|
}
|
|
```
|
|
```
|
|
This `README.md` provides an overview, usage instructions, and metadata example, along with the necessary information to cite the dataset in academic work. |