Dunant commited on
Commit
2f6555d
·
verified ·
1 Parent(s): 94344ac

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +104 -123
  2. metadata.jsonl +3 -3
README.md CHANGED
@@ -1,124 +1,105 @@
1
- ---
2
- pretty_name: "Robusto-1 Extended"
3
- tags:
4
- - video
5
- - urban-driving
6
- - peru
7
- - traffic
8
- - autonomous-driving
9
- license: apache-2.0
10
- task_categories:
11
- - video-classification
12
- ---
13
-
14
-
15
- # Robusto-1 Extended Dataset
16
-
17
- ## Description
18
-
19
- The **Robusto-1 Extended** dataset contains videos recorded from 3 different cities in Peru: mainly Lima, Cusco and Cajamarca;
20
- along with detailed information about vehicle actions, external factors, and driving conditions.
21
- This dataset is useful for tasks such as vehicle behavior analysis, traffic condition detection, and driving scenario simulation.
22
-
23
- Each video record includes data on the ego-vehicle's behavior, external conditions (traffic signs, weather, etc.), and more.
24
- The videos were recorded under various traffic conditions, with each one labeled with its corresponding metadata.
25
-
26
- ### Features:
27
- - **ID**: Unique identifier for the video.
28
- - **Video_Name**: Filename of the video.
29
- - **Place**: Location where the video was recorded.
30
- - **Ego_Vehicle**: Detailed information about the ego-vehicle’s actions during the recording.
31
- - **External_Factors**: External conditions such as traffic signs, weather, etc.
32
- - **Video**: Path to the video file in `.mp4` format.
33
-
34
- ## Metadata Example
35
-
36
- 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:
37
-
38
- ```json
39
- {
40
- "ID": "Robusto 1_1",
41
- "Place": "Lima",
42
- "Ego_Vehicle": {
43
- "Vehicle Actions": "Advancing Intermittently",
44
- "Driving Action Reasoning": "Following Vehicle Ahead",
45
- "Vehicle Motion Behavior": "Stop-and-Go"
46
- },
47
- "External_Factors": {
48
- "Traffic Signs": "",
49
- "Traffic Lights": "Red",
50
- "Weather Conditions": "Clear",
51
- "Road Surface Conditions": "",
52
- "Road Structures": "",
53
- "Static objects": "Buildings",
54
- "Other Vehicle Behaviors": "Cutting Off",
55
- "Pedestrian Behavior": "",
56
- "Unexpected Obstacles": "",
57
- "Emergency Situations": "",
58
- "Lighting Conditions": "Daylight",
59
- "Traffic Conditions": "Heavy Traffic",
60
- "Driving Environment": "Urban"
61
- }
62
- }
63
- ```
64
-
65
- ## Usage
66
-
67
- 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.
68
-
69
- ### Load the Dataset
70
-
71
- To load this dataset from Hugging Face, you can use the following code:
72
-
73
- ```python
74
- from datasets import load_dataset
75
-
76
- dataset = load_dataset("path/to/robusto-1_extended")
77
- ```
78
-
79
- ## File Structure
80
-
81
- The structure of the dataset files is as follows:
82
-
83
- ```
84
- robusto-1_extended/
85
- ├── README.md
86
- ├── metadata.jsonl
87
- └── videos/
88
- ├── Robusto_1_1.mp4
89
- ├── Robusto_1_2.mp4
90
- └── ...
91
- ```
92
-
93
-
94
- - `README.md`: Contains the dataset description and YAML metadata at the top.
95
- - `metadata.jsonl`: File storing video metadata in JSON Lines format.
96
- - `videos/`: Directory containing all `.mp4` video files.
97
-
98
-
99
- ## Short Q&A:
100
-
101
- **Q**: What is the main difference between the Robusto-1 Extended and the Robusto-1 dataset?
102
-
103
-
104
- **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
105
- dataset is composed of 7 video clips with both Human and Machine responses and video meta-data, while the Robusto-1 Extended is only
106
- composed of 200 videos with their meta-data to facilitate further research in VQA research so that different groups can create their own questions.
107
-
108
- ## Citation
109
-
110
- If you use this dataset in your research, please cite our ArXiv pre-print that was recently accepted at the **CVPR 2025 Workshop on
111
- Distillation of Foundation Models for Autonomous Driving**.
112
-
113
-
114
- ```
115
- @article{cusipuma2025robusto,
116
- title={Robusto-1 Dataset: Comparing Humans and VLMs on real out-of-distribution Autonomous Driving VQA from Peru},
117
- author={Cusipuma, Dunant and Ortega, David and Flores-Benites, Victor and Deza, Arturo},
118
- journal={arXiv preprint arXiv:2503.07587},
119
- year={2025}
120
- }
121
- ```
122
- ```
123
-
124
  This `README.md` provides an overview, usage instructions, and metadata example, along with the necessary information to cite the dataset in academic work.
 
1
+ ---
2
+ pretty_name: "Robusto-1 Extended"
3
+ tags:
4
+ - video
5
+ - urban-driving
6
+ - peru
7
+ - traffic
8
+ - autonomous-driving
9
+ license: apache-2.0
10
+ task_categories:
11
+ - video-classification
12
+ ---
13
+
14
+
15
+ # Robusto-1 Extended Dataset
16
+
17
+ ## Description
18
+
19
+ The **Robusto-1 Extended** dataset contains videos recorded in Lima, Peru, 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.
20
+
21
+ 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.
22
+
23
+ ### Features:
24
+ - **ID**: Unique identifier for the video.
25
+ - **Video_Name**: Filename of the video.
26
+ - **Place**: Location where the video was recorded.
27
+ - **Ego_Vehicle**: Detailed information about the ego-vehicle’s actions during the recording.
28
+ - **External_Factors**: External conditions such as traffic signs, weather, etc.
29
+ - **Video**: Path to the video file in `.mp4` format.
30
+
31
+ ## Metadata Example
32
+
33
+ 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:
34
+
35
+ ```json
36
+ {
37
+ "ID": "Robusto 1_1",
38
+ "Place": "Lima",
39
+ "Ego_Vehicle": {
40
+ "Vehicle Actions": "Advancing Intermittently",
41
+ "Driving Action Reasoning": "Following Vehicle Ahead",
42
+ "Vehicle Motion Behavior": "Stop-and-Go"
43
+ },
44
+ "External_Factors": {
45
+ "Traffic Signs": "",
46
+ "Traffic Lights": "Red",
47
+ "Weather Conditions": "Clear",
48
+ "Road Surface Conditions": "",
49
+ "Road Structures": "",
50
+ "Static objects": "Buildings",
51
+ "Other Vehicle Behaviors": "Cutting Off",
52
+ "Pedestrian Behavior": "",
53
+ "Unexpected Obstacles": "",
54
+ "Emergency Situations": "",
55
+ "Lighting Conditions": "Daylight",
56
+ "Traffic Conditions": "Heavy Traffic",
57
+ "Driving Environment": "Urban"
58
+ }
59
+ }
60
+ ```
61
+
62
+ ## Usage
63
+
64
+ This dataset can be used for vehicle behavior analysis, improving autonomous driving algorithms, or training computer vision models that require data on traffic and vehicle behavior in various conditions.
65
+
66
+ ### Load the Dataset
67
+
68
+ To load this dataset from Hugging Face, you can use the following code:
69
+
70
+ ```python
71
+ from datasets import load_dataset
72
+
73
+ dataset = load_dataset("path/to/robusto-1_extended")
74
+ ```
75
+
76
+ ## File Structure
77
+
78
+ The structure of the dataset files is as follows:
79
+
80
+ ```
81
+ robusto-1_extended/
82
+ ├── README.md
83
+ ├── metadata.jsonl
84
+ └── videos/
85
+ ├── Robusto_1_1.mp4
86
+ ├── Robusto_1_2.mp4
87
+ └── ...
88
+ ```
89
+
90
+
91
+ - `README.md`: Contains the dataset description and YAML metadata at the top.
92
+ - `metadata.jsonl`: File storing video metadata in JSON Lines format.
93
+ - `videos/`: Directory containing all `.mp4` video files.
94
+ ## Citation
95
+
96
+ If you use this dataset in your research, please cite it as follows:
97
+
98
+ ```
99
+ @misc{robusto1extended,
100
+
101
+ }
102
+ ```
103
+ ```
104
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  This `README.md` provides an overview, usage instructions, and metadata example, along with the necessary information to cite the dataset in academic work.
metadata.jsonl CHANGED
@@ -1,3 +1,3 @@
1
- {"file_name": "Robusto 1_1.mp4", "ID": "Robusto 1_1", "Place": "Lima", "Ego_Vehicle__Vehicle Actions": "Advancing Intermittently", "Ego_Vehicle__Driving Action Reasoning": "Following Vehicle Ahead", "Ego_Vehicle__Vehicle Motion Behavior": "Stop-and-Go", "External_Factors__Traffic Signs": "", "External_Factors__Traffic Lights": "Red", "External_Factors__Weather Conditions": "Clear", "External_Factors__Road Surface Conditions": "", "External_Factors__Road Structures": "", "External_Factors__Static objects": "Buildings", "External_Factors__Other Vehicle Behaviors": "Cutting Off", "External_Factors__Pedestrian Behavior": "", "External_Factors__Unexpected Obstacles": "", "External_Factors__Emergency Situations": "", "External_Factors__Lighting Conditions": "Daylight", "External_Factors__Traffic Conditions": "Heavy Traffic", "External_Factors__Driving Environment": "Urban"}
2
- {"file_name": "Robusto 1_2.mp4", "ID": "Robusto 1_2", "Place": "Lima", "Ego_Vehicle__Vehicle Actions": "Advancing Intermittently", "Ego_Vehicle__Driving Action Reasoning": "Following Vehicle Ahead", "Ego_Vehicle__Vehicle Motion Behavior": "Stop-and-Go", "External_Factors__Traffic Signs": "", "External_Factors__Traffic Lights": "Red", "External_Factors__Weather Conditions": "Clear", "External_Factors__Road Surface Conditions": "", "External_Factors__Road Structures": "", "External_Factors__Static objects": "Buildings", "External_Factors__Other Vehicle Behaviors": "Cutting Off", "External_Factors__Pedestrian Behavior": "", "External_Factors__Unexpected Obstacles": "", "External_Factors__Emergency Situations": "", "External_Factors__Lighting Conditions": "Daylight", "External_Factors__Traffic Conditions": "Heavy Traffic", "External_Factors__Driving Environment": "Urban"}
3
- {"file_name": "Robusto 1_3.mp4", "ID": "Robusto 1_3", "Place": "Lima", "Ego_Vehicle__Vehicle Actions": "Starting from Stop", "Ego_Vehicle__Driving Action Reasoning": "Following Vehicle Ahead", "Ego_Vehicle__Vehicle Motion Behavior": "Stop-and-Go", "External_Factors__Traffic Signs": "", "External_Factors__Traffic Lights": "No Traffic Light Present", "External_Factors__Weather Conditions": "Clear", "External_Factors__Road Surface Conditions": "Dry", "External_Factors__Road Structures": "", "External_Factors__Static objects": "Buildings", "External_Factors__Other Vehicle Behaviors": "Cutting Off", "External_Factors__Pedestrian Behavior": "", "External_Factors__Unexpected Obstacles": "", "External_Factors__Emergency Situations": "", "External_Factors__Lighting Conditions": "Daylight", "External_Factors__Traffic Conditions": "Heavy Traffic", "External_Factors__Driving Environment": "Urban"}
 
1
+ {"file_name": "videos/Robusto 1_1.mp4", "ID": "Robusto 1_1", "Place": "Lima", "Ego_Vehicle__Vehicle Actions": "Advancing Intermittently", "Ego_Vehicle__Driving Action Reasoning": "Following Vehicle Ahead", "Ego_Vehicle__Vehicle Motion Behavior": "Stop-and-Go", "External_Factors__Traffic Signs": "", "External_Factors__Traffic Lights": "Red", "External_Factors__Weather Conditions": "Clear", "External_Factors__Road Surface Conditions": "", "External_Factors__Road Structures": "", "External_Factors__Static objects": "Buildings", "External_Factors__Other Vehicle Behaviors": "Cutting Off", "External_Factors__Pedestrian Behavior": "", "External_Factors__Unexpected Obstacles": "", "External_Factors__Emergency Situations": "", "External_Factors__Lighting Conditions": "Daylight", "External_Factors__Traffic Conditions": "Heavy Traffic", "External_Factors__Driving Environment": "Urban"}
2
+ {"file_name": "videos/Robusto 1_2.mp4", "ID": "Robusto 1_2", "Place": "Lima", "Ego_Vehicle__Vehicle Actions": "Advancing Intermittently", "Ego_Vehicle__Driving Action Reasoning": "Following Vehicle Ahead", "Ego_Vehicle__Vehicle Motion Behavior": "Stop-and-Go", "External_Factors__Traffic Signs": "", "External_Factors__Traffic Lights": "Red", "External_Factors__Weather Conditions": "Clear", "External_Factors__Road Surface Conditions": "", "External_Factors__Road Structures": "", "External_Factors__Static objects": "Buildings", "External_Factors__Other Vehicle Behaviors": "Cutting Off", "External_Factors__Pedestrian Behavior": "", "External_Factors__Unexpected Obstacles": "", "External_Factors__Emergency Situations": "", "External_Factors__Lighting Conditions": "Daylight", "External_Factors__Traffic Conditions": "Heavy Traffic", "External_Factors__Driving Environment": "Urban"}
3
+ {"file_name": "videos/Robusto 1_3.mp4", "ID": "Robusto 1_3", "Place": "Lima", "Ego_Vehicle__Vehicle Actions": "Starting from Stop", "Ego_Vehicle__Driving Action Reasoning": "Following Vehicle Ahead", "Ego_Vehicle__Vehicle Motion Behavior": "Stop-and-Go", "External_Factors__Traffic Signs": "", "External_Factors__Traffic Lights": "No Traffic Light Present", "External_Factors__Weather Conditions": "Clear", "External_Factors__Road Surface Conditions": "Dry", "External_Factors__Road Structures": "", "External_Factors__Static objects": "Buildings", "External_Factors__Other Vehicle Behaviors": "Cutting Off", "External_Factors__Pedestrian Behavior": "", "External_Factors__Unexpected Obstacles": "", "External_Factors__Emergency Situations": "", "External_Factors__Lighting Conditions": "Daylight", "External_Factors__Traffic Conditions": "Heavy Traffic", "External_Factors__Driving Environment": "Urban"}