Unify annotation schemas (EV bcq, VQA + Temporal field union) so HF viewer can load
Browse filesSchema unification across annotation files so HF's auto-loader stops failing with CastError. Specifically:
- event_verification/warehouse_near_miss: wrap list into bcq dict, rename video_id -> video, add system_prompt.
- vqa: pad each entry with the union of fields across all 5 files.
- temporal_localization: pad each entry with the union of fields across all 3 files.
- data/README.md updated to reflect the unified EV schema.
- data/README.md +3 -2
- data/event_verification/filtered/warehouse_near_miss/test_annotations.json +280 -232
- data/temporal_localization/data_jsons/annotations/nv_lita_benchmark.json +136 -1
- data/temporal_localization/data_jsons/annotations/output_llava_temporal.json +1 -1
- data/temporal_localization/data_jsons/annotations/smart_spaces_03262025.json +0 -0
- data/vqa/data_jsons/annotations/Metropolis_VQA_Verification_Final_ITS_Data.json +0 -0
- data/vqa/data_jsons/annotations/metrics_spatial_ss.json +0 -0
- data/vqa/data_jsons/annotations/metrics_spatial_wo_ss.json +0 -0
- data/vqa/data_jsons/annotations/metrics_temporal_filtered_ss.json +161 -41
- data/vqa/data_jsons/annotations/metrics_temporal_wo_ss.json +17 -5
data/README.md
CHANGED
|
@@ -51,8 +51,9 @@ Per-entry questions in `vqa/data_jsons/annotations/*.json`. Each entry has `{q_u
|
|
| 51 |
Per-entry questions in `temporal_localization/data_jsons/annotations/*.json`. Each entry has `{vid, question_id, question, duration, …}`; the `answer` timestamps are removed.
|
| 52 |
|
| 53 |
### `event_verification/` — Binary Event Verification
|
| 54 |
-
|
| 55 |
-
|
|
|
|
| 56 |
|
| 57 |
### `pointing/` — 2D Spatial Pointing
|
| 58 |
`Vantage2DPointing.tsv` — tab-separated. Each row carries the question and multiple-choice options; the last two ground-truth columns are dropped.
|
|
|
|
| 51 |
Per-entry questions in `temporal_localization/data_jsons/annotations/*.json`. Each entry has `{vid, question_id, question, duration, …}`; the `answer` timestamps are removed.
|
| 52 |
|
| 53 |
### `event_verification/` — Binary Event Verification
|
| 54 |
+
All four annotation files share a unified schema:
|
| 55 |
+
`{"bcq": [{id, video, system_prompt, question}, …]}`. The binary `answer`
|
| 56 |
+
is removed.
|
| 57 |
|
| 58 |
### `pointing/` — 2D Spatial Pointing
|
| 59 |
`Vantage2DPointing.tsv` — tab-separated. Each row carries the question and multiple-choice options; the last two ground-truth columns are dropped.
|
data/event_verification/filtered/warehouse_near_miss/test_annotations.json
CHANGED
|
@@ -1,232 +1,280 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
|
| 164 |
-
|
| 165 |
-
|
| 166 |
-
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
|
| 170 |
-
|
| 171 |
-
|
| 172 |
-
|
| 173 |
-
|
| 174 |
-
|
| 175 |
-
|
| 176 |
-
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
|
| 191 |
-
|
| 192 |
-
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
|
| 196 |
-
|
| 197 |
-
|
| 198 |
-
|
| 199 |
-
|
| 200 |
-
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
|
| 205 |
-
|
| 206 |
-
|
| 207 |
-
|
| 208 |
-
|
| 209 |
-
|
| 210 |
-
|
| 211 |
-
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
|
| 215 |
-
|
| 216 |
-
|
| 217 |
-
|
| 218 |
-
|
| 219 |
-
|
| 220 |
-
|
| 221 |
-
|
| 222 |
-
|
| 223 |
-
|
| 224 |
-
|
| 225 |
-
|
| 226 |
-
|
| 227 |
-
|
| 228 |
-
|
| 229 |
-
|
| 230 |
-
|
| 231 |
-
|
| 232 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bcq": [
|
| 3 |
+
{
|
| 4 |
+
"id": "positive/scene_07_01_00-23-52_to_00-25-33_GoPro1_Fork_Lift_stopped_while_person_crossing_the_isle_08-22",
|
| 5 |
+
"video": "positive/scene_07_01_00-23-52_to_00-25-33_GoPro1_Fork_Lift_stopped_while_person_crossing_the_isle_08-22.mp4",
|
| 6 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 7 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 8 |
+
},
|
| 9 |
+
{
|
| 10 |
+
"id": "positive/scene_08_01_00-00-46_to_00-02-20_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_01-15",
|
| 11 |
+
"video": "positive/scene_08_01_00-00-46_to_00-02-20_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_01-15.mp4",
|
| 12 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 13 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 14 |
+
},
|
| 15 |
+
{
|
| 16 |
+
"id": "positive/scene_08_02_00-02-20_to_00-04-56_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_08-22",
|
| 17 |
+
"video": "positive/scene_08_02_00-02-20_to_00-04-56_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_08-22.mp4",
|
| 18 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 19 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"id": "positive/scene_08_03_00-04-56_to_00-08-15_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_04-18",
|
| 23 |
+
"video": "positive/scene_08_03_00-04-56_to_00-08-15_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_04-18.mp4",
|
| 24 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 25 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"id": "positive/scene_09_01_00-08-15_to_00-10-22_GoPro1_Fork_Lift_moving_while_person_on_the_phone_crossing_the_isle_06-20",
|
| 29 |
+
"video": "positive/scene_09_01_00-08-15_to_00-10-22_GoPro1_Fork_Lift_moving_while_person_on_the_phone_crossing_the_isle_06-20.mp4",
|
| 30 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 31 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"id": "positive/scene_10_01_00-10-22_to_00-13-12_GoPro1_Fork_Lift_moving_while_person_crossing_the_isle_06-20",
|
| 35 |
+
"video": "positive/scene_10_01_00-10-22_to_00-13-12_GoPro1_Fork_Lift_moving_while_person_crossing_the_isle_06-20.mp4",
|
| 36 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 37 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"id": "positive/scene_11_01_00-13-12_to_00-16-16_GoPro1_Fork_Lift_moving_while_multiple_people_in_the_scene_04-22",
|
| 41 |
+
"video": "positive/scene_11_01_00-13-12_to_00-16-16_GoPro1_Fork_Lift_moving_while_multiple_people_in_the_scene_04-22.mp4",
|
| 42 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 43 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 44 |
+
},
|
| 45 |
+
{
|
| 46 |
+
"id": "positive/scene_12_01_00-16-16_to_00-17-31_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_06-20",
|
| 47 |
+
"video": "positive/scene_12_01_00-16-16_to_00-17-31_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_06-20.mp4",
|
| 48 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 49 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"id": "positive/scene_12_02_00-17-31_to_00-19-50_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_02-16",
|
| 53 |
+
"video": "positive/scene_12_02_00-17-31_to_00-19-50_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_02-16.mp4",
|
| 54 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 55 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"id": "positive/scene_14_01_00-19-50_to_00-22-54_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_04-18",
|
| 59 |
+
"video": "positive/scene_14_01_00-19-50_to_00-22-54_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_04-18.mp4",
|
| 60 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 61 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"id": "positive/scene_16_01_00-22-54_to_00-25-38_GoPro1_person_walking_in_front_of_fork_lift_04-48",
|
| 65 |
+
"video": "positive/scene_16_01_00-22-54_to_00-25-38_GoPro1_person_walking_in_front_of_fork_lift_04-48.mp4",
|
| 66 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 67 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 68 |
+
},
|
| 69 |
+
{
|
| 70 |
+
"id": "positive/scene_17_01_00-25-38_to_00-27-32_GoPro1_person_running_in_front_of_fork_lift_02-16",
|
| 71 |
+
"video": "positive/scene_17_01_00-25-38_to_00-27-32_GoPro1_person_running_in_front_of_fork_lift_02-16.mp4",
|
| 72 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 73 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"id": "positive/scene_17_02_00-27-32_to_00-30-55_GoPro1_person_running_in_front_of_fork_lift_02-26",
|
| 77 |
+
"video": "positive/scene_17_02_00-27-32_to_00-30-55_GoPro1_person_running_in_front_of_fork_lift_02-26.mp4",
|
| 78 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 79 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 80 |
+
},
|
| 81 |
+
{
|
| 82 |
+
"id": "positive/scene_18_01_00-30-55_to_00-33-57_GoPro1_person_jumping_to_not_get_hit_by_the_forklift_00-20",
|
| 83 |
+
"video": "positive/scene_18_01_00-30-55_to_00-33-57_GoPro1_person_jumping_to_not_get_hit_by_the_forklift_00-20.mp4",
|
| 84 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 85 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"id": "positive/scene_19_01_00-33-57_to_00-35-41_GoPro1_fork_lift_moving_backwards_person_cutting_in_front_of_the_fo_04-24",
|
| 89 |
+
"video": "positive/scene_19_01_00-33-57_to_00-35-41_GoPro1_fork_lift_moving_backwards_person_cutting_in_front_of_the_fo_04-24.mp4",
|
| 90 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 91 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"id": "positive/scene_20_01_00-35-41_to_00-37-23_GoPro1_fork_lift_going_backwards_person_running_passed_04-22",
|
| 95 |
+
"video": "positive/scene_20_01_00-35-41_to_00-37-23_GoPro1_fork_lift_going_backwards_person_running_passed_04-22.mp4",
|
| 96 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 97 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 98 |
+
},
|
| 99 |
+
{
|
| 100 |
+
"id": "positive/scene_21_01_00-37-23_to_00-39-30_GoPro1_fork_lift_going_backwards_person_stops_06-24",
|
| 101 |
+
"video": "positive/scene_21_01_00-37-23_to_00-39-30_GoPro1_fork_lift_going_backwards_person_stops_06-24.mp4",
|
| 102 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 103 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"id": "positive/scene_22_01_00-39-30_to_00-45-36_GoPro1_fork_lift_moving_person_hesitating_and_stepping_back_01-20",
|
| 107 |
+
"video": "positive/scene_22_01_00-39-30_to_00-45-36_GoPro1_fork_lift_moving_person_hesitating_and_stepping_back_01-20.mp4",
|
| 108 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 109 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"id": "positive/scene_23_01_00-45-36_to_00-49-03_GoPro1_boxes_blocking_the_view_of_the_driver_and_person_crossing_06-26",
|
| 113 |
+
"video": "positive/scene_23_01_00-45-36_to_00-49-03_GoPro1_boxes_blocking_the_view_of_the_driver_and_person_crossing_06-26.mp4",
|
| 114 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 115 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"id": "positive/scene_25_01_00-02-02_to_00-05-05_GoPro1_person_working_on_boxes_while_fork_lift_approaches_06-30",
|
| 119 |
+
"video": "positive/scene_25_01_00-02-02_to_00-05-05_GoPro1_person_working_on_boxes_while_fork_lift_approaches_06-30.mp4",
|
| 120 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 121 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"id": "positive/scene_26_01_00-05-05_to_00-08-50_GoPro1_same_as_above_person_jumping_05-24",
|
| 125 |
+
"video": "positive/scene_26_01_00-05-05_to_00-08-50_GoPro1_same_as_above_person_jumping_05-24.mp4",
|
| 126 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 127 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"id": "positive/scene_27_01_00-08-50_to_00-15-25_GoPro1_person_bending_down_fork_lift_moving_forward_10-30",
|
| 131 |
+
"video": "positive/scene_27_01_00-08-50_to_00-15-25_GoPro1_person_bending_down_fork_lift_moving_forward_10-30.mp4",
|
| 132 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 133 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"id": "negative/Scene_13_S13T1_C2_CS_S13T1_1-12-11-59_chunk_5__event_005_5",
|
| 137 |
+
"video": "negative/Scene_13_S13T1_C2_CS_S13T1_1-12-11-59_chunk_5__event_005_5.mp4",
|
| 138 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 139 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"id": "negative/Scene_13_S13T3_C5_AS_S13T3_01-18-12-10_chunk_2__event_001_1",
|
| 143 |
+
"video": "negative/Scene_13_S13T3_C5_AS_S13T3_01-18-12-10_chunk_2__event_001_1.mp4",
|
| 144 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 145 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"id": "negative/Scene_13_S13T4_C4_AS_S13T4_1-12-12-28_chunk_5__event_008_8",
|
| 149 |
+
"video": "negative/Scene_13_S13T4_C4_AS_S13T4_1-12-12-28_chunk_5__event_008_8.mp4",
|
| 150 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 151 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"id": "negative/Scene_13_S13T4_C4_AS_S13T4_1-12-12-28_chunk_6__event_001_1",
|
| 155 |
+
"video": "negative/Scene_13_S13T4_C4_AS_S13T4_1-12-12-28_chunk_6__event_001_1.mp4",
|
| 156 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 157 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"id": "negative/Scene_13_S13T4_C5_AS_S13T4_00-58-12-14_chunk_5__event_004_4",
|
| 161 |
+
"video": "negative/Scene_13_S13T4_C5_AS_S13T4_00-58-12-14_chunk_5__event_004_4.mp4",
|
| 162 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 163 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"id": "negative/Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_1__event_004_4",
|
| 167 |
+
"video": "negative/Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_1__event_004_4.mp4",
|
| 168 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 169 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"id": "negative/Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_5__event_004_4",
|
| 173 |
+
"video": "negative/Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_5__event_004_4.mp4",
|
| 174 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 175 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"id": "negative/Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_6__event_001_1",
|
| 179 |
+
"video": "negative/Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_6__event_001_1.mp4",
|
| 180 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 181 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"id": "negative/Scene_13_S13T5_C2_AS_S13T5_0-51-11-39_chunk_5__event_004_4",
|
| 185 |
+
"video": "negative/Scene_13_S13T5_C2_AS_S13T5_0-51-11-39_chunk_5__event_004_4.mp4",
|
| 186 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 187 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"id": "negative/Scene_13_S13T5_C3_AS_S13T5_0-53-11-38_chunk_5__event_004_4",
|
| 191 |
+
"video": "negative/Scene_13_S13T5_C3_AS_S13T5_0-53-11-38_chunk_5__event_004_4.mp4",
|
| 192 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 193 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 194 |
+
},
|
| 195 |
+
{
|
| 196 |
+
"id": "negative/Scene_13_S13T5_C4_AS_S13T5_0-53-11-39_chunk_5__event_004_4",
|
| 197 |
+
"video": "negative/Scene_13_S13T5_C4_AS_S13T5_0-53-11-39_chunk_5__event_004_4.mp4",
|
| 198 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 199 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"id": "negative/Scene_13_S13T5_C6_AS_S13T5_00-29-11-15_chunk_5__event_003_3",
|
| 203 |
+
"video": "negative/Scene_13_S13T5_C6_AS_S13T5_00-29-11-15_chunk_5__event_003_3.mp4",
|
| 204 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 205 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 206 |
+
},
|
| 207 |
+
{
|
| 208 |
+
"id": "negative/Scene_4_S4T4_C2_CV_S4T4_00-54-10-48_chunk_5__event_001_1",
|
| 209 |
+
"video": "negative/Scene_4_S4T4_C2_CV_S4T4_00-54-10-48_chunk_5__event_001_1.mp4",
|
| 210 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 211 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 212 |
+
},
|
| 213 |
+
{
|
| 214 |
+
"id": "negative/Scene_4_S4T4_C4_CS_S4T4_00-54-10-48_chunk_4__event_003_3",
|
| 215 |
+
"video": "negative/Scene_4_S4T4_C4_CS_S4T4_00-54-10-48_chunk_4__event_003_3.mp4",
|
| 216 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 217 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"id": "negative/Scene_4_S4T4_C6_CS_S4T4_00-54-10-48_chunk_1__event_004_4",
|
| 221 |
+
"video": "negative/Scene_4_S4T4_C6_CS_S4T4_00-54-10-48_chunk_1__event_004_4.mp4",
|
| 222 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 223 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 224 |
+
},
|
| 225 |
+
{
|
| 226 |
+
"id": "negative/Scene_4_S4T4_C6_CS_S4T4_00-54-10-48_chunk_5__event_002_2",
|
| 227 |
+
"video": "negative/Scene_4_S4T4_C6_CS_S4T4_00-54-10-48_chunk_5__event_002_2.mp4",
|
| 228 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 229 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 230 |
+
},
|
| 231 |
+
{
|
| 232 |
+
"id": "negative/scene_01_01_00-00-00_to_00-07-34_GoPro1_Calibration_with_people_walking_around_06-26",
|
| 233 |
+
"video": "negative/scene_01_01_00-00-00_to_00-07-34_GoPro1_Calibration_with_people_walking_around_06-26.mp4",
|
| 234 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 235 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"id": "negative/scene_02_01_00-07-34_to_00-11-38_GoPro1_Forklifts_being_moved_out_of_the_way_06-26",
|
| 239 |
+
"video": "negative/scene_02_01_00-07-34_to_00-11-38_GoPro1_Forklifts_being_moved_out_of_the_way_06-26.mp4",
|
| 240 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 241 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"id": "negative/scene_04_01_00-11-38_to_00-19-46_GoPro1_Forklift_entering_the_aisle_no_pedestrians_around_06-26",
|
| 245 |
+
"video": "negative/scene_04_01_00-11-38_to_00-19-46_GoPro1_Forklift_entering_the_aisle_no_pedestrians_around_06-26.mp4",
|
| 246 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 247 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"id": "negative/scene_05_01_00-19-46_to_00-21-03_GoPro1_Fork_Lift_crossing_people_crossing_afterwards_06-26",
|
| 251 |
+
"video": "negative/scene_05_01_00-19-46_to_00-21-03_GoPro1_Fork_Lift_crossing_people_crossing_afterwards_06-26.mp4",
|
| 252 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 253 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"id": "negative/scene_06_01_00-21-03_to_00-23-52_GoPro1_Fork_Lift_crossing_people_following_the_forklift_06-26",
|
| 257 |
+
"video": "negative/scene_06_01_00-21-03_to_00-23-52_GoPro1_Fork_Lift_crossing_people_following_the_forklift_06-26.mp4",
|
| 258 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 259 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 260 |
+
},
|
| 261 |
+
{
|
| 262 |
+
"id": "negative/scene_28_01_00-15-25_to_00-27-58_GoPro1_boxes_falling_04-22",
|
| 263 |
+
"video": "negative/scene_28_01_00-15-25_to_00-27-58_GoPro1_boxes_falling_04-22.mp4",
|
| 264 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 265 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"id": "negative/scene_29_01_00-01-07_to_00-10-18_GoPro1_driver_picks_up_trash_00-50",
|
| 269 |
+
"video": "negative/scene_29_01_00-01-07_to_00-10-18_GoPro1_driver_picks_up_trash_00-50.mp4",
|
| 270 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 271 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"id": "negative/scene_29_01_00-09-27_to_00-12-53_GoPro1_driver_picks_up_trash_00-20",
|
| 275 |
+
"video": "negative/scene_29_01_00-09-27_to_00-12-53_GoPro1_driver_picks_up_trash_00-20.mp4",
|
| 276 |
+
"system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
|
| 277 |
+
"question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
|
| 278 |
+
}
|
| 279 |
+
]
|
| 280 |
+
}
|
data/temporal_localization/data_jsons/annotations/nv_lita_benchmark.json
CHANGED
|
@@ -2,271 +2,406 @@
|
|
| 2 |
{
|
| 3 |
"vid": "Warehouse_240219_GoPro_7_GX010600_400",
|
| 4 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_400.mp4_0",
|
|
|
|
|
|
|
|
|
|
| 5 |
"question": "At what time in the video does \"A man drives a forklift behind three workers\" take place? Convey your answer using start and end timestamps exclusively.",
|
| 6 |
"duration": 60.026633
|
| 7 |
},
|
| 8 |
{
|
| 9 |
"vid": "Warehouse_240219_GoPro_7_GX010600_400",
|
| 10 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_400.mp4_1",
|
|
|
|
|
|
|
|
|
|
| 11 |
"question": "At what time in the video does \"Three factory workers in green vests wearing yellow hats talk\" take place? Convey your answer using start and end timestamps exclusively.",
|
| 12 |
"duration": 60.026633
|
| 13 |
},
|
| 14 |
{
|
| 15 |
"vid": "Warehouse_240219_GoPro_7_GX010600_400",
|
| 16 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_400.mp4_2",
|
|
|
|
|
|
|
|
|
|
| 17 |
"question": "When does \"The three workers move out of the way of the forklift\" happen in the video? Convey your answer using start and end timestamps exclusively.",
|
| 18 |
"duration": 60.026633
|
| 19 |
},
|
| 20 |
{
|
| 21 |
"vid": "Warehouse_240219_GoPro_7_GX010600_400",
|
| 22 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_400.mp4_3",
|
|
|
|
|
|
|
|
|
|
| 23 |
"question": "When does \"The forklift moves forward and rotates 90 degrees in front of a shelf of boxes\" happen in the video? Convey your answer using start and end timestamps exclusively.",
|
| 24 |
"duration": 60.026633
|
| 25 |
},
|
| 26 |
{
|
| 27 |
"vid": "Warehouse_240219_GoPro_7_GX010600_400",
|
| 28 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_400.mp4_4",
|
|
|
|
|
|
|
|
|
|
| 29 |
"question": "At what time in the video does \"The forklift lifts its arm and inserts it into a shelf of boxes\" take place? Convey your answer using start and end timestamps exclusively.",
|
| 30 |
"duration": 60.026633
|
| 31 |
},
|
| 32 |
{
|
| 33 |
"vid": "Warehouse_240219_GoPro_7_GX010600_500",
|
| 34 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_500.mp4_0",
|
|
|
|
|
|
|
|
|
|
| 35 |
"question": "When is \"A forklift's bars go underneath boxes on a shelf\" depicted in the video? Provide a response using only start and end timestamps.",
|
| 36 |
"duration": 60.026633
|
| 37 |
},
|
| 38 |
{
|
| 39 |
"vid": "Warehouse_240219_GoPro_7_GX010600_500",
|
| 40 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_500.mp4_1",
|
|
|
|
|
|
|
|
|
|
| 41 |
"question": "When is \"The forklift slowly takes the boxes off of the shelf\" depicted in the video? Answer the question only using start and end timestamps.",
|
| 42 |
"duration": 60.026633
|
| 43 |
},
|
| 44 |
{
|
| 45 |
"vid": "Warehouse_240219_GoPro_7_GX010600_500",
|
| 46 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_500.mp4_2",
|
|
|
|
|
|
|
|
|
|
| 47 |
"question": "When does \"The forklift drives into the distance\" happen in the video? Convey your answer using start and end timestamps exclusively.",
|
| 48 |
"duration": 60.026633
|
| 49 |
},
|
| 50 |
{
|
| 51 |
"vid": "concat_wh_52_0",
|
| 52 |
"question_id": "concat_wh_52_0.mp4_0",
|
|
|
|
|
|
|
|
|
|
| 53 |
"question": "When is \"A box falls\" depicted in the video? Answer the question only using start and end timestamps.",
|
| 54 |
"duration": 60.0
|
| 55 |
},
|
| 56 |
{
|
| 57 |
"vid": "concat_wh_52_0",
|
| 58 |
"question_id": "concat_wh_52_0.mp4_1",
|
|
|
|
|
|
|
|
|
|
| 59 |
"question": "At what point in the video does \"The forklift waits for the robot in its way\" happen? Provide a response using only start and end timestamps.",
|
| 60 |
"duration": 60.0
|
| 61 |
},
|
| 62 |
{
|
| 63 |
"vid": "concat_wh_52_0",
|
| 64 |
"question_id": "concat_wh_52_0.mp4_2",
|
|
|
|
|
|
|
|
|
|
| 65 |
"question": "At what point in the video does \"A worker walks to the box\" happen? Answer the question only using start and end timestamps.",
|
| 66 |
"duration": 60.0
|
| 67 |
},
|
| 68 |
{
|
| 69 |
"vid": "concat_wh_52_0",
|
| 70 |
"question_id": "concat_wh_52_0.mp4_3",
|
|
|
|
|
|
|
|
|
|
| 71 |
"question": "When does \"A lady picks up the box\" happen in the video? Answer the question only using start and end timestamps.",
|
| 72 |
"duration": 60.0
|
| 73 |
},
|
| 74 |
{
|
| 75 |
"vid": "concat_wh_52_0",
|
| 76 |
"question_id": "concat_wh_52_0.mp4_4",
|
|
|
|
|
|
|
|
|
|
| 77 |
"question": "At what point in the video does \"The worker walks back\" happen? Answer the question only using start and end timestamps.",
|
| 78 |
"duration": 60.0
|
| 79 |
},
|
| 80 |
{
|
| 81 |
"vid": "concat_wh_52_0",
|
| 82 |
"question_id": "concat_wh_52_0.mp4_5",
|
|
|
|
|
|
|
|
|
|
| 83 |
"question": "At what point in the video does \"The box falls again\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 84 |
"duration": 60.0
|
| 85 |
},
|
| 86 |
{
|
| 87 |
"vid": "concat_wh_52_0",
|
| 88 |
"question_id": "concat_wh_52_0.mp4_6",
|
|
|
|
|
|
|
|
|
|
| 89 |
"question": "At what point in the video does \"The lady picks up the box again\" happen? Answer the question only using start and end timestamps.",
|
| 90 |
"duration": 60.0
|
| 91 |
},
|
| 92 |
{
|
| 93 |
"vid": "concat_wh_52_0",
|
| 94 |
"question_id": "concat_wh_52_0.mp4_7",
|
|
|
|
|
|
|
|
|
|
| 95 |
"question": "At what time in the video does \"The forklift moves forward\" take place? Provide a response using only start and end timestamps.",
|
| 96 |
"duration": 60.0
|
| 97 |
},
|
| 98 |
{
|
| 99 |
"vid": "concat_wh_52_0",
|
| 100 |
"question_id": "concat_wh_52_0.mp4_8",
|
|
|
|
|
|
|
|
|
|
| 101 |
"question": "At what point in the video does \"The forklift's arms go up to pick up boxes\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 102 |
"duration": 60.0
|
| 103 |
},
|
| 104 |
{
|
| 105 |
"vid": "concat_wh_52_300",
|
| 106 |
"question_id": "concat_wh_52_300.mp4_0",
|
|
|
|
|
|
|
|
|
|
| 107 |
"question": "At what point in the video does \"A forklift with boxes moves forward\" happen? Provide a response using only start and end timestamps.",
|
| 108 |
"duration": 60.0
|
| 109 |
},
|
| 110 |
{
|
| 111 |
"vid": "concat_wh_52_300",
|
| 112 |
"question_id": "concat_wh_52_300.mp4_1",
|
|
|
|
|
|
|
|
|
|
| 113 |
"question": "At what point in the video does \"People cross in front of the forklift\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 114 |
"duration": 60.0
|
| 115 |
},
|
| 116 |
{
|
| 117 |
"vid": "concat_wh_52_300",
|
| 118 |
"question_id": "concat_wh_52_300.mp4_2",
|
|
|
|
|
|
|
|
|
|
| 119 |
"question": "At what point in the video does \"The forklift moves forward\" happen? Answer the question only using start and end timestamps.",
|
| 120 |
"duration": 60.0
|
| 121 |
},
|
| 122 |
{
|
| 123 |
"vid": "concat_wh_52_300",
|
| 124 |
"question_id": "concat_wh_52_300.mp4_3",
|
|
|
|
|
|
|
|
|
|
| 125 |
"question": "When is \"The forklift's arms go up with boxes on top\" depicted in the video? Convey your answer using start and end timestamps exclusively.",
|
| 126 |
"duration": 60.0
|
| 127 |
},
|
| 128 |
{
|
| 129 |
"vid": "concat_wh_52_910",
|
| 130 |
"question_id": "concat_wh_52_910.mp4_0",
|
|
|
|
|
|
|
|
|
|
| 131 |
"question": "When does \"A forklift removes boxes from the shelf\" happen in the video? Answer the question only using start and end timestamps.",
|
| 132 |
"duration": 60.0
|
| 133 |
},
|
| 134 |
{
|
| 135 |
"vid": "concat_wh_52_910",
|
| 136 |
"question_id": "concat_wh_52_910.mp4_1",
|
|
|
|
|
|
|
|
|
|
| 137 |
"question": "When is \"People without uniforms are walking in the warehouse\" depicted in the video? Answer the question only using start and end timestamps.",
|
| 138 |
"duration": 60.0
|
| 139 |
},
|
| 140 |
{
|
| 141 |
"vid": "concat_wh_52_910",
|
| 142 |
"question_id": "concat_wh_52_910.mp4_2",
|
|
|
|
|
|
|
|
|
|
| 143 |
"question": "At what point in the video does \"A forklift with boxes on it moves forward\" happen? Provide a response using only start and end timestamps.",
|
| 144 |
"duration": 60.0
|
| 145 |
},
|
| 146 |
{
|
| 147 |
"vid": "concat_wh_52_910",
|
| 148 |
"question_id": "concat_wh_52_910.mp4_3",
|
|
|
|
|
|
|
|
|
|
| 149 |
"question": "When is \"There are boxes on the floor\" depicted in the video? Answer the question only using start and end timestamps.",
|
| 150 |
"duration": 60.0
|
| 151 |
},
|
| 152 |
{
|
| 153 |
"vid": "concat_wh_52_910",
|
| 154 |
"question_id": "concat_wh_52_910.mp4_4",
|
|
|
|
|
|
|
|
|
|
| 155 |
"question": "When does \"The forklift is stuck because of boxes on the floor\" happen in the video? Convey your answer using start and end timestamps exclusively.",
|
| 156 |
"duration": 60.0
|
| 157 |
},
|
| 158 |
{
|
| 159 |
"vid": "concat_wh_52_910",
|
| 160 |
"question_id": "concat_wh_52_910.mp4_5",
|
|
|
|
|
|
|
|
|
|
| 161 |
"question": "When is \"People remove the boxes\" depicted in the video? Answer the question only using start and end timestamps.",
|
| 162 |
"duration": 60.0
|
| 163 |
},
|
| 164 |
{
|
| 165 |
"vid": "concat_wh_52_910",
|
| 166 |
"question_id": "concat_wh_52_910.mp4_6",
|
|
|
|
|
|
|
|
|
|
| 167 |
"question": "At what point in the video does \"The forklift with boxes on it moves forward\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 168 |
"duration": 60.0
|
| 169 |
},
|
| 170 |
{
|
| 171 |
"vid": "concat_wh_52_1890",
|
| 172 |
"question_id": "concat_wh_52_1890.mp4_0",
|
|
|
|
|
|
|
|
|
|
| 173 |
"question": "When does \"A worker wearing a protective vest and yellow hard hat walks forward and smiles\" happen in the video? Provide a response using only start and end timestamps.",
|
| 174 |
"duration": 60.0
|
| 175 |
},
|
| 176 |
{
|
| 177 |
"vid": "concat_wh_52_1890",
|
| 178 |
"question_id": "concat_wh_52_1890.mp4_1",
|
|
|
|
|
|
|
|
|
|
| 179 |
"question": "At what point in the video does \"A worker takes of his hat and puts it back on\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 180 |
"duration": 60.0
|
| 181 |
},
|
| 182 |
{
|
| 183 |
"vid": "concat_wh_52_1890",
|
| 184 |
"question_id": "concat_wh_52_1890.mp4_2",
|
|
|
|
|
|
|
|
|
|
| 185 |
"question": "At what point in the video does \"A cart with boxes on it arrives\" happen? Provide a response using only start and end timestamps.",
|
| 186 |
"duration": 60.0
|
| 187 |
},
|
| 188 |
{
|
| 189 |
"vid": "concat_wh_52_1890",
|
| 190 |
"question_id": "concat_wh_52_1890.mp4_3",
|
|
|
|
|
|
|
|
|
|
| 191 |
"question": "When does \"Workers move boxes down a conveyor belt\" happen in the video? Convey your answer using start and end timestamps exclusively.",
|
| 192 |
"duration": 60.0
|
| 193 |
},
|
| 194 |
{
|
| 195 |
"vid": "concat_wh_52_1890",
|
| 196 |
"question_id": "concat_wh_52_1890.mp4_4",
|
|
|
|
|
|
|
|
|
|
| 197 |
"question": "When is \"A box falls off the conveyor belt\" depicted in the video? Answer the question only using start and end timestamps.",
|
| 198 |
"duration": 60.0
|
| 199 |
},
|
| 200 |
{
|
| 201 |
"vid": "concat_wh_52_1890",
|
| 202 |
"question_id": "concat_wh_52_1890.mp4_5",
|
|
|
|
|
|
|
|
|
|
| 203 |
"question": "At what point in the video does \"A box falls off the conveyor belt\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 204 |
"duration": 60.0
|
| 205 |
},
|
| 206 |
{
|
| 207 |
"vid": "concat_wh_52_1890",
|
| 208 |
"question_id": "concat_wh_52_1890.mp4_6",
|
|
|
|
|
|
|
|
|
|
| 209 |
"question": "At what time in the video does \"A box falls off the conveyor belt\" take place? Convey your answer using start and end timestamps exclusively.",
|
| 210 |
"duration": 60.0
|
| 211 |
},
|
| 212 |
{
|
| 213 |
"vid": "concat_wh_52_1890",
|
| 214 |
"question_id": "concat_wh_52_1890.mp4_7",
|
|
|
|
|
|
|
|
|
|
| 215 |
"question": "At what point in the video does \"Workers are chitchatting\" happen? Provide a response using only start and end timestamps.",
|
| 216 |
"duration": 60.0
|
| 217 |
},
|
| 218 |
{
|
| 219 |
"vid": "concat_wh_52_1890",
|
| 220 |
"question_id": "concat_wh_52_1890.mp4_8",
|
|
|
|
|
|
|
|
|
|
| 221 |
"question": "At what point in the video does \"A man in a white shirt without a uniform is holding his phone and walking\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 222 |
"duration": 60.0
|
| 223 |
},
|
| 224 |
{
|
| 225 |
"vid": "concat_wh_52_1890",
|
| 226 |
"question_id": "concat_wh_52_1890.mp4_9",
|
|
|
|
|
|
|
|
|
|
| 227 |
"question": "At what point in the video does \"Two people wearing dark clothes and no uniform are walking and chatting\" happen? Answer the question only using start and end timestamps.",
|
| 228 |
"duration": 60.0
|
| 229 |
},
|
| 230 |
{
|
| 231 |
"vid": "concat_wh_52_2925",
|
| 232 |
"question_id": "concat_wh_52_2925.mp4_0",
|
|
|
|
|
|
|
|
|
|
| 233 |
"question": "At what point in the video does \"A robot carrying a box is still in a warehouse, and there are people on the sides\" happen? Provide a response using only start and end timestamps.",
|
| 234 |
"duration": 59.562
|
| 235 |
},
|
| 236 |
{
|
| 237 |
"vid": "concat_wh_52_2925",
|
| 238 |
"question_id": "concat_wh_52_2925.mp4_1",
|
|
|
|
|
|
|
|
|
|
| 239 |
"question": "At what time in the video does \"A box falls off the robot\" take place? Answer the question only using start and end timestamps.",
|
| 240 |
"duration": 59.562
|
| 241 |
},
|
| 242 |
{
|
| 243 |
"vid": "concat_wh_52_2925",
|
| 244 |
"question_id": "concat_wh_52_2925.mp4_2",
|
|
|
|
|
|
|
|
|
|
| 245 |
"question": "At what point in the video does \"A man wearing white without uniform walks closer to the camera\" happen? Provide a response using only start and end timestamps.",
|
| 246 |
"duration": 59.562
|
| 247 |
},
|
| 248 |
{
|
| 249 |
"vid": "concat_wh_52_2925",
|
| 250 |
"question_id": "concat_wh_52_2925.mp4_3",
|
|
|
|
|
|
|
|
|
|
| 251 |
"question": "When does \"A man puts the box back on the robot\" happen in the video? Convey your answer using start and end timestamps exclusively.",
|
| 252 |
"duration": 59.562
|
| 253 |
},
|
| 254 |
{
|
| 255 |
"vid": "concat_wh_52_2925",
|
| 256 |
"question_id": "concat_wh_52_2925.mp4_4",
|
|
|
|
|
|
|
|
|
|
| 257 |
"question": "At what time in the video does \"The man wearing white without uniform walks away\" take place? Answer the question only using start and end timestamps.",
|
| 258 |
"duration": 59.562
|
| 259 |
},
|
| 260 |
{
|
| 261 |
"vid": "concat_wh_52_2925",
|
| 262 |
"question_id": "concat_wh_52_2925.mp4_5",
|
|
|
|
|
|
|
|
|
|
| 263 |
"question": "At what point in the video does \"A forklift moves closer to the camera\" happen? Provide a response using only start and end timestamps.",
|
| 264 |
"duration": 59.562
|
| 265 |
},
|
| 266 |
{
|
| 267 |
"vid": "concat_wh_52_2925",
|
| 268 |
"question_id": "concat_wh_52_2925.mp4_6",
|
|
|
|
|
|
|
|
|
|
| 269 |
"question": "When does \"A robot with a box is blocking the forklift\" happen in the video? Provide a response using only start and end timestamps.",
|
| 270 |
"duration": 59.562
|
| 271 |
}
|
| 272 |
-
]
|
|
|
|
| 2 |
{
|
| 3 |
"vid": "Warehouse_240219_GoPro_7_GX010600_400",
|
| 4 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_400.mp4_0",
|
| 5 |
+
"industry": "",
|
| 6 |
+
"event_type": "",
|
| 7 |
+
"task_type": "",
|
| 8 |
"question": "At what time in the video does \"A man drives a forklift behind three workers\" take place? Convey your answer using start and end timestamps exclusively.",
|
| 9 |
"duration": 60.026633
|
| 10 |
},
|
| 11 |
{
|
| 12 |
"vid": "Warehouse_240219_GoPro_7_GX010600_400",
|
| 13 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_400.mp4_1",
|
| 14 |
+
"industry": "",
|
| 15 |
+
"event_type": "",
|
| 16 |
+
"task_type": "",
|
| 17 |
"question": "At what time in the video does \"Three factory workers in green vests wearing yellow hats talk\" take place? Convey your answer using start and end timestamps exclusively.",
|
| 18 |
"duration": 60.026633
|
| 19 |
},
|
| 20 |
{
|
| 21 |
"vid": "Warehouse_240219_GoPro_7_GX010600_400",
|
| 22 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_400.mp4_2",
|
| 23 |
+
"industry": "",
|
| 24 |
+
"event_type": "",
|
| 25 |
+
"task_type": "",
|
| 26 |
"question": "When does \"The three workers move out of the way of the forklift\" happen in the video? Convey your answer using start and end timestamps exclusively.",
|
| 27 |
"duration": 60.026633
|
| 28 |
},
|
| 29 |
{
|
| 30 |
"vid": "Warehouse_240219_GoPro_7_GX010600_400",
|
| 31 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_400.mp4_3",
|
| 32 |
+
"industry": "",
|
| 33 |
+
"event_type": "",
|
| 34 |
+
"task_type": "",
|
| 35 |
"question": "When does \"The forklift moves forward and rotates 90 degrees in front of a shelf of boxes\" happen in the video? Convey your answer using start and end timestamps exclusively.",
|
| 36 |
"duration": 60.026633
|
| 37 |
},
|
| 38 |
{
|
| 39 |
"vid": "Warehouse_240219_GoPro_7_GX010600_400",
|
| 40 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_400.mp4_4",
|
| 41 |
+
"industry": "",
|
| 42 |
+
"event_type": "",
|
| 43 |
+
"task_type": "",
|
| 44 |
"question": "At what time in the video does \"The forklift lifts its arm and inserts it into a shelf of boxes\" take place? Convey your answer using start and end timestamps exclusively.",
|
| 45 |
"duration": 60.026633
|
| 46 |
},
|
| 47 |
{
|
| 48 |
"vid": "Warehouse_240219_GoPro_7_GX010600_500",
|
| 49 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_500.mp4_0",
|
| 50 |
+
"industry": "",
|
| 51 |
+
"event_type": "",
|
| 52 |
+
"task_type": "",
|
| 53 |
"question": "When is \"A forklift's bars go underneath boxes on a shelf\" depicted in the video? Provide a response using only start and end timestamps.",
|
| 54 |
"duration": 60.026633
|
| 55 |
},
|
| 56 |
{
|
| 57 |
"vid": "Warehouse_240219_GoPro_7_GX010600_500",
|
| 58 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_500.mp4_1",
|
| 59 |
+
"industry": "",
|
| 60 |
+
"event_type": "",
|
| 61 |
+
"task_type": "",
|
| 62 |
"question": "When is \"The forklift slowly takes the boxes off of the shelf\" depicted in the video? Answer the question only using start and end timestamps.",
|
| 63 |
"duration": 60.026633
|
| 64 |
},
|
| 65 |
{
|
| 66 |
"vid": "Warehouse_240219_GoPro_7_GX010600_500",
|
| 67 |
"question_id": "Warehouse_240219_GoPro_7_GX010600_500.mp4_2",
|
| 68 |
+
"industry": "",
|
| 69 |
+
"event_type": "",
|
| 70 |
+
"task_type": "",
|
| 71 |
"question": "When does \"The forklift drives into the distance\" happen in the video? Convey your answer using start and end timestamps exclusively.",
|
| 72 |
"duration": 60.026633
|
| 73 |
},
|
| 74 |
{
|
| 75 |
"vid": "concat_wh_52_0",
|
| 76 |
"question_id": "concat_wh_52_0.mp4_0",
|
| 77 |
+
"industry": "",
|
| 78 |
+
"event_type": "",
|
| 79 |
+
"task_type": "",
|
| 80 |
"question": "When is \"A box falls\" depicted in the video? Answer the question only using start and end timestamps.",
|
| 81 |
"duration": 60.0
|
| 82 |
},
|
| 83 |
{
|
| 84 |
"vid": "concat_wh_52_0",
|
| 85 |
"question_id": "concat_wh_52_0.mp4_1",
|
| 86 |
+
"industry": "",
|
| 87 |
+
"event_type": "",
|
| 88 |
+
"task_type": "",
|
| 89 |
"question": "At what point in the video does \"The forklift waits for the robot in its way\" happen? Provide a response using only start and end timestamps.",
|
| 90 |
"duration": 60.0
|
| 91 |
},
|
| 92 |
{
|
| 93 |
"vid": "concat_wh_52_0",
|
| 94 |
"question_id": "concat_wh_52_0.mp4_2",
|
| 95 |
+
"industry": "",
|
| 96 |
+
"event_type": "",
|
| 97 |
+
"task_type": "",
|
| 98 |
"question": "At what point in the video does \"A worker walks to the box\" happen? Answer the question only using start and end timestamps.",
|
| 99 |
"duration": 60.0
|
| 100 |
},
|
| 101 |
{
|
| 102 |
"vid": "concat_wh_52_0",
|
| 103 |
"question_id": "concat_wh_52_0.mp4_3",
|
| 104 |
+
"industry": "",
|
| 105 |
+
"event_type": "",
|
| 106 |
+
"task_type": "",
|
| 107 |
"question": "When does \"A lady picks up the box\" happen in the video? Answer the question only using start and end timestamps.",
|
| 108 |
"duration": 60.0
|
| 109 |
},
|
| 110 |
{
|
| 111 |
"vid": "concat_wh_52_0",
|
| 112 |
"question_id": "concat_wh_52_0.mp4_4",
|
| 113 |
+
"industry": "",
|
| 114 |
+
"event_type": "",
|
| 115 |
+
"task_type": "",
|
| 116 |
"question": "At what point in the video does \"The worker walks back\" happen? Answer the question only using start and end timestamps.",
|
| 117 |
"duration": 60.0
|
| 118 |
},
|
| 119 |
{
|
| 120 |
"vid": "concat_wh_52_0",
|
| 121 |
"question_id": "concat_wh_52_0.mp4_5",
|
| 122 |
+
"industry": "",
|
| 123 |
+
"event_type": "",
|
| 124 |
+
"task_type": "",
|
| 125 |
"question": "At what point in the video does \"The box falls again\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 126 |
"duration": 60.0
|
| 127 |
},
|
| 128 |
{
|
| 129 |
"vid": "concat_wh_52_0",
|
| 130 |
"question_id": "concat_wh_52_0.mp4_6",
|
| 131 |
+
"industry": "",
|
| 132 |
+
"event_type": "",
|
| 133 |
+
"task_type": "",
|
| 134 |
"question": "At what point in the video does \"The lady picks up the box again\" happen? Answer the question only using start and end timestamps.",
|
| 135 |
"duration": 60.0
|
| 136 |
},
|
| 137 |
{
|
| 138 |
"vid": "concat_wh_52_0",
|
| 139 |
"question_id": "concat_wh_52_0.mp4_7",
|
| 140 |
+
"industry": "",
|
| 141 |
+
"event_type": "",
|
| 142 |
+
"task_type": "",
|
| 143 |
"question": "At what time in the video does \"The forklift moves forward\" take place? Provide a response using only start and end timestamps.",
|
| 144 |
"duration": 60.0
|
| 145 |
},
|
| 146 |
{
|
| 147 |
"vid": "concat_wh_52_0",
|
| 148 |
"question_id": "concat_wh_52_0.mp4_8",
|
| 149 |
+
"industry": "",
|
| 150 |
+
"event_type": "",
|
| 151 |
+
"task_type": "",
|
| 152 |
"question": "At what point in the video does \"The forklift's arms go up to pick up boxes\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 153 |
"duration": 60.0
|
| 154 |
},
|
| 155 |
{
|
| 156 |
"vid": "concat_wh_52_300",
|
| 157 |
"question_id": "concat_wh_52_300.mp4_0",
|
| 158 |
+
"industry": "",
|
| 159 |
+
"event_type": "",
|
| 160 |
+
"task_type": "",
|
| 161 |
"question": "At what point in the video does \"A forklift with boxes moves forward\" happen? Provide a response using only start and end timestamps.",
|
| 162 |
"duration": 60.0
|
| 163 |
},
|
| 164 |
{
|
| 165 |
"vid": "concat_wh_52_300",
|
| 166 |
"question_id": "concat_wh_52_300.mp4_1",
|
| 167 |
+
"industry": "",
|
| 168 |
+
"event_type": "",
|
| 169 |
+
"task_type": "",
|
| 170 |
"question": "At what point in the video does \"People cross in front of the forklift\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 171 |
"duration": 60.0
|
| 172 |
},
|
| 173 |
{
|
| 174 |
"vid": "concat_wh_52_300",
|
| 175 |
"question_id": "concat_wh_52_300.mp4_2",
|
| 176 |
+
"industry": "",
|
| 177 |
+
"event_type": "",
|
| 178 |
+
"task_type": "",
|
| 179 |
"question": "At what point in the video does \"The forklift moves forward\" happen? Answer the question only using start and end timestamps.",
|
| 180 |
"duration": 60.0
|
| 181 |
},
|
| 182 |
{
|
| 183 |
"vid": "concat_wh_52_300",
|
| 184 |
"question_id": "concat_wh_52_300.mp4_3",
|
| 185 |
+
"industry": "",
|
| 186 |
+
"event_type": "",
|
| 187 |
+
"task_type": "",
|
| 188 |
"question": "When is \"The forklift's arms go up with boxes on top\" depicted in the video? Convey your answer using start and end timestamps exclusively.",
|
| 189 |
"duration": 60.0
|
| 190 |
},
|
| 191 |
{
|
| 192 |
"vid": "concat_wh_52_910",
|
| 193 |
"question_id": "concat_wh_52_910.mp4_0",
|
| 194 |
+
"industry": "",
|
| 195 |
+
"event_type": "",
|
| 196 |
+
"task_type": "",
|
| 197 |
"question": "When does \"A forklift removes boxes from the shelf\" happen in the video? Answer the question only using start and end timestamps.",
|
| 198 |
"duration": 60.0
|
| 199 |
},
|
| 200 |
{
|
| 201 |
"vid": "concat_wh_52_910",
|
| 202 |
"question_id": "concat_wh_52_910.mp4_1",
|
| 203 |
+
"industry": "",
|
| 204 |
+
"event_type": "",
|
| 205 |
+
"task_type": "",
|
| 206 |
"question": "When is \"People without uniforms are walking in the warehouse\" depicted in the video? Answer the question only using start and end timestamps.",
|
| 207 |
"duration": 60.0
|
| 208 |
},
|
| 209 |
{
|
| 210 |
"vid": "concat_wh_52_910",
|
| 211 |
"question_id": "concat_wh_52_910.mp4_2",
|
| 212 |
+
"industry": "",
|
| 213 |
+
"event_type": "",
|
| 214 |
+
"task_type": "",
|
| 215 |
"question": "At what point in the video does \"A forklift with boxes on it moves forward\" happen? Provide a response using only start and end timestamps.",
|
| 216 |
"duration": 60.0
|
| 217 |
},
|
| 218 |
{
|
| 219 |
"vid": "concat_wh_52_910",
|
| 220 |
"question_id": "concat_wh_52_910.mp4_3",
|
| 221 |
+
"industry": "",
|
| 222 |
+
"event_type": "",
|
| 223 |
+
"task_type": "",
|
| 224 |
"question": "When is \"There are boxes on the floor\" depicted in the video? Answer the question only using start and end timestamps.",
|
| 225 |
"duration": 60.0
|
| 226 |
},
|
| 227 |
{
|
| 228 |
"vid": "concat_wh_52_910",
|
| 229 |
"question_id": "concat_wh_52_910.mp4_4",
|
| 230 |
+
"industry": "",
|
| 231 |
+
"event_type": "",
|
| 232 |
+
"task_type": "",
|
| 233 |
"question": "When does \"The forklift is stuck because of boxes on the floor\" happen in the video? Convey your answer using start and end timestamps exclusively.",
|
| 234 |
"duration": 60.0
|
| 235 |
},
|
| 236 |
{
|
| 237 |
"vid": "concat_wh_52_910",
|
| 238 |
"question_id": "concat_wh_52_910.mp4_5",
|
| 239 |
+
"industry": "",
|
| 240 |
+
"event_type": "",
|
| 241 |
+
"task_type": "",
|
| 242 |
"question": "When is \"People remove the boxes\" depicted in the video? Answer the question only using start and end timestamps.",
|
| 243 |
"duration": 60.0
|
| 244 |
},
|
| 245 |
{
|
| 246 |
"vid": "concat_wh_52_910",
|
| 247 |
"question_id": "concat_wh_52_910.mp4_6",
|
| 248 |
+
"industry": "",
|
| 249 |
+
"event_type": "",
|
| 250 |
+
"task_type": "",
|
| 251 |
"question": "At what point in the video does \"The forklift with boxes on it moves forward\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 252 |
"duration": 60.0
|
| 253 |
},
|
| 254 |
{
|
| 255 |
"vid": "concat_wh_52_1890",
|
| 256 |
"question_id": "concat_wh_52_1890.mp4_0",
|
| 257 |
+
"industry": "",
|
| 258 |
+
"event_type": "",
|
| 259 |
+
"task_type": "",
|
| 260 |
"question": "When does \"A worker wearing a protective vest and yellow hard hat walks forward and smiles\" happen in the video? Provide a response using only start and end timestamps.",
|
| 261 |
"duration": 60.0
|
| 262 |
},
|
| 263 |
{
|
| 264 |
"vid": "concat_wh_52_1890",
|
| 265 |
"question_id": "concat_wh_52_1890.mp4_1",
|
| 266 |
+
"industry": "",
|
| 267 |
+
"event_type": "",
|
| 268 |
+
"task_type": "",
|
| 269 |
"question": "At what point in the video does \"A worker takes of his hat and puts it back on\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 270 |
"duration": 60.0
|
| 271 |
},
|
| 272 |
{
|
| 273 |
"vid": "concat_wh_52_1890",
|
| 274 |
"question_id": "concat_wh_52_1890.mp4_2",
|
| 275 |
+
"industry": "",
|
| 276 |
+
"event_type": "",
|
| 277 |
+
"task_type": "",
|
| 278 |
"question": "At what point in the video does \"A cart with boxes on it arrives\" happen? Provide a response using only start and end timestamps.",
|
| 279 |
"duration": 60.0
|
| 280 |
},
|
| 281 |
{
|
| 282 |
"vid": "concat_wh_52_1890",
|
| 283 |
"question_id": "concat_wh_52_1890.mp4_3",
|
| 284 |
+
"industry": "",
|
| 285 |
+
"event_type": "",
|
| 286 |
+
"task_type": "",
|
| 287 |
"question": "When does \"Workers move boxes down a conveyor belt\" happen in the video? Convey your answer using start and end timestamps exclusively.",
|
| 288 |
"duration": 60.0
|
| 289 |
},
|
| 290 |
{
|
| 291 |
"vid": "concat_wh_52_1890",
|
| 292 |
"question_id": "concat_wh_52_1890.mp4_4",
|
| 293 |
+
"industry": "",
|
| 294 |
+
"event_type": "",
|
| 295 |
+
"task_type": "",
|
| 296 |
"question": "When is \"A box falls off the conveyor belt\" depicted in the video? Answer the question only using start and end timestamps.",
|
| 297 |
"duration": 60.0
|
| 298 |
},
|
| 299 |
{
|
| 300 |
"vid": "concat_wh_52_1890",
|
| 301 |
"question_id": "concat_wh_52_1890.mp4_5",
|
| 302 |
+
"industry": "",
|
| 303 |
+
"event_type": "",
|
| 304 |
+
"task_type": "",
|
| 305 |
"question": "At what point in the video does \"A box falls off the conveyor belt\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 306 |
"duration": 60.0
|
| 307 |
},
|
| 308 |
{
|
| 309 |
"vid": "concat_wh_52_1890",
|
| 310 |
"question_id": "concat_wh_52_1890.mp4_6",
|
| 311 |
+
"industry": "",
|
| 312 |
+
"event_type": "",
|
| 313 |
+
"task_type": "",
|
| 314 |
"question": "At what time in the video does \"A box falls off the conveyor belt\" take place? Convey your answer using start and end timestamps exclusively.",
|
| 315 |
"duration": 60.0
|
| 316 |
},
|
| 317 |
{
|
| 318 |
"vid": "concat_wh_52_1890",
|
| 319 |
"question_id": "concat_wh_52_1890.mp4_7",
|
| 320 |
+
"industry": "",
|
| 321 |
+
"event_type": "",
|
| 322 |
+
"task_type": "",
|
| 323 |
"question": "At what point in the video does \"Workers are chitchatting\" happen? Provide a response using only start and end timestamps.",
|
| 324 |
"duration": 60.0
|
| 325 |
},
|
| 326 |
{
|
| 327 |
"vid": "concat_wh_52_1890",
|
| 328 |
"question_id": "concat_wh_52_1890.mp4_8",
|
| 329 |
+
"industry": "",
|
| 330 |
+
"event_type": "",
|
| 331 |
+
"task_type": "",
|
| 332 |
"question": "At what point in the video does \"A man in a white shirt without a uniform is holding his phone and walking\" happen? Convey your answer using start and end timestamps exclusively.",
|
| 333 |
"duration": 60.0
|
| 334 |
},
|
| 335 |
{
|
| 336 |
"vid": "concat_wh_52_1890",
|
| 337 |
"question_id": "concat_wh_52_1890.mp4_9",
|
| 338 |
+
"industry": "",
|
| 339 |
+
"event_type": "",
|
| 340 |
+
"task_type": "",
|
| 341 |
"question": "At what point in the video does \"Two people wearing dark clothes and no uniform are walking and chatting\" happen? Answer the question only using start and end timestamps.",
|
| 342 |
"duration": 60.0
|
| 343 |
},
|
| 344 |
{
|
| 345 |
"vid": "concat_wh_52_2925",
|
| 346 |
"question_id": "concat_wh_52_2925.mp4_0",
|
| 347 |
+
"industry": "",
|
| 348 |
+
"event_type": "",
|
| 349 |
+
"task_type": "",
|
| 350 |
"question": "At what point in the video does \"A robot carrying a box is still in a warehouse, and there are people on the sides\" happen? Provide a response using only start and end timestamps.",
|
| 351 |
"duration": 59.562
|
| 352 |
},
|
| 353 |
{
|
| 354 |
"vid": "concat_wh_52_2925",
|
| 355 |
"question_id": "concat_wh_52_2925.mp4_1",
|
| 356 |
+
"industry": "",
|
| 357 |
+
"event_type": "",
|
| 358 |
+
"task_type": "",
|
| 359 |
"question": "At what time in the video does \"A box falls off the robot\" take place? Answer the question only using start and end timestamps.",
|
| 360 |
"duration": 59.562
|
| 361 |
},
|
| 362 |
{
|
| 363 |
"vid": "concat_wh_52_2925",
|
| 364 |
"question_id": "concat_wh_52_2925.mp4_2",
|
| 365 |
+
"industry": "",
|
| 366 |
+
"event_type": "",
|
| 367 |
+
"task_type": "",
|
| 368 |
"question": "At what point in the video does \"A man wearing white without uniform walks closer to the camera\" happen? Provide a response using only start and end timestamps.",
|
| 369 |
"duration": 59.562
|
| 370 |
},
|
| 371 |
{
|
| 372 |
"vid": "concat_wh_52_2925",
|
| 373 |
"question_id": "concat_wh_52_2925.mp4_3",
|
| 374 |
+
"industry": "",
|
| 375 |
+
"event_type": "",
|
| 376 |
+
"task_type": "",
|
| 377 |
"question": "When does \"A man puts the box back on the robot\" happen in the video? Convey your answer using start and end timestamps exclusively.",
|
| 378 |
"duration": 59.562
|
| 379 |
},
|
| 380 |
{
|
| 381 |
"vid": "concat_wh_52_2925",
|
| 382 |
"question_id": "concat_wh_52_2925.mp4_4",
|
| 383 |
+
"industry": "",
|
| 384 |
+
"event_type": "",
|
| 385 |
+
"task_type": "",
|
| 386 |
"question": "At what time in the video does \"The man wearing white without uniform walks away\" take place? Answer the question only using start and end timestamps.",
|
| 387 |
"duration": 59.562
|
| 388 |
},
|
| 389 |
{
|
| 390 |
"vid": "concat_wh_52_2925",
|
| 391 |
"question_id": "concat_wh_52_2925.mp4_5",
|
| 392 |
+
"industry": "",
|
| 393 |
+
"event_type": "",
|
| 394 |
+
"task_type": "",
|
| 395 |
"question": "At what point in the video does \"A forklift moves closer to the camera\" happen? Provide a response using only start and end timestamps.",
|
| 396 |
"duration": 59.562
|
| 397 |
},
|
| 398 |
{
|
| 399 |
"vid": "concat_wh_52_2925",
|
| 400 |
"question_id": "concat_wh_52_2925.mp4_6",
|
| 401 |
+
"industry": "",
|
| 402 |
+
"event_type": "",
|
| 403 |
+
"task_type": "",
|
| 404 |
"question": "When does \"A robot with a box is blocking the forklift\" happen in the video? Provide a response using only start and end timestamps.",
|
| 405 |
"duration": 59.562
|
| 406 |
}
|
| 407 |
+
]
|
data/temporal_localization/data_jsons/annotations/output_llava_temporal.json
CHANGED
|
@@ -5624,4 +5624,4 @@
|
|
| 5624 |
"question": "When does the bicycle enter the frame from the right and exit from the left? happen in the video? Answer the question only using start and end timestamps.",
|
| 5625 |
"duration": 33.3333
|
| 5626 |
}
|
| 5627 |
-
]
|
|
|
|
| 5624 |
"question": "When does the bicycle enter the frame from the right and exit from the left? happen in the video? Answer the question only using start and end timestamps.",
|
| 5625 |
"duration": 33.3333
|
| 5626 |
}
|
| 5627 |
+
]
|
data/temporal_localization/data_jsons/annotations/smart_spaces_03262025.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/vqa/data_jsons/annotations/Metropolis_VQA_Verification_Final_ITS_Data.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/vqa/data_jsons/annotations/metrics_spatial_ss.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/vqa/data_jsons/annotations/metrics_spatial_wo_ss.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/vqa/data_jsons/annotations/metrics_temporal_filtered_ss.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
"question": "Which of the following is true according to the segment?",
|
| 5 |
"options": [
|
| 6 |
"everyone is holding something",
|
|
@@ -8,10 +14,16 @@
|
|
| 8 |
"no one is carrying a laptop",
|
| 9 |
"only one person at a time can leave the room"
|
| 10 |
],
|
| 11 |
-
"
|
| 12 |
},
|
| 13 |
{
|
| 14 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
"question": "In the scene, what caused the transparent gate to open?",
|
| 16 |
"options": [
|
| 17 |
"A man touching a metal part of the transparent gate",
|
|
@@ -19,10 +31,16 @@
|
|
| 19 |
"The door opens automatically as the person approaches",
|
| 20 |
"None of the above"
|
| 21 |
],
|
| 22 |
-
"
|
| 23 |
},
|
| 24 |
{
|
| 25 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
"question": "In the scene, what is causing the transparent gates to open?",
|
| 27 |
"options": [
|
| 28 |
"People scanning cards beside the transparent doors",
|
|
@@ -30,10 +48,16 @@
|
|
| 30 |
"It senses a person approaching and opens automatically",
|
| 31 |
"None of the above"
|
| 32 |
],
|
| 33 |
-
"
|
| 34 |
},
|
| 35 |
{
|
| 36 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
"question": "What is causing the transparent gates to open?",
|
| 38 |
"options": [
|
| 39 |
"People scanning cards beside the gates",
|
|
@@ -41,10 +65,16 @@
|
|
| 41 |
"When someone approaches, the gate automatically opens after detecting their presence",
|
| 42 |
"None of the above"
|
| 43 |
],
|
| 44 |
-
"
|
| 45 |
},
|
| 46 |
{
|
| 47 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
"question": "Why was the person wearing a black T-shirt stopped by others near the door?",
|
| 49 |
"options": [
|
| 50 |
"was for higher level",
|
|
@@ -52,10 +82,16 @@
|
|
| 52 |
"privacy purpose",
|
| 53 |
"both a and c"
|
| 54 |
],
|
| 55 |
-
"
|
| 56 |
},
|
| 57 |
{
|
| 58 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
"question": "Why did the door on the right close?",
|
| 60 |
"options": [
|
| 61 |
"A person pulling the door",
|
|
@@ -63,10 +99,16 @@
|
|
| 63 |
"A person rotating the door handle",
|
| 64 |
"None of the above"
|
| 65 |
],
|
| 66 |
-
"
|
| 67 |
},
|
| 68 |
{
|
| 69 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
"question": "In the scene, what is causing the turnstiles to open?",
|
| 71 |
"options": [
|
| 72 |
"People pushing a button beside the turnstile",
|
|
@@ -74,10 +116,16 @@
|
|
| 74 |
"When someone approaches the turnstile, it detects their presence and opens automatically",
|
| 75 |
"None of the above"
|
| 76 |
],
|
| 77 |
-
"
|
| 78 |
},
|
| 79 |
{
|
| 80 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
"question": "What caused the door to close?",
|
| 82 |
"options": [
|
| 83 |
"The door being closed automatically",
|
|
@@ -85,10 +133,16 @@
|
|
| 85 |
"A person scanning a card beside the door",
|
| 86 |
"None of the above"
|
| 87 |
],
|
| 88 |
-
"
|
| 89 |
},
|
| 90 |
{
|
| 91 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 92 |
"question": "What is the least likely reason the person stood alone, folding his hands, before others?",
|
| 93 |
"options": [
|
| 94 |
"had permission to exit early",
|
|
@@ -96,10 +150,16 @@
|
|
| 96 |
"skipped a meeting and reached early",
|
| 97 |
"a secret force pulled him ahead"
|
| 98 |
],
|
| 99 |
-
"
|
| 100 |
},
|
| 101 |
{
|
| 102 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 103 |
"question": "What caused the door to close?",
|
| 104 |
"options": [
|
| 105 |
"closed automatically",
|
|
@@ -107,10 +167,16 @@
|
|
| 107 |
"a man pulling the door",
|
| 108 |
"none of the above"
|
| 109 |
],
|
| 110 |
-
"
|
| 111 |
},
|
| 112 |
{
|
| 113 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 114 |
"question": "What caused the transparent gate to open and close?",
|
| 115 |
"options": [
|
| 116 |
"People open and close it manually",
|
|
@@ -118,10 +184,16 @@
|
|
| 118 |
"There is a switch near the gate",
|
| 119 |
"The gate opens and closes randomly"
|
| 120 |
],
|
| 121 |
-
"
|
| 122 |
},
|
| 123 |
{
|
| 124 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 125 |
"question": "What caused the transparent doors to open in the video segment?",
|
| 126 |
"options": [
|
| 127 |
"A vehicle passing through",
|
|
@@ -129,10 +201,16 @@
|
|
| 129 |
"Objects passing through",
|
| 130 |
"None of the above"
|
| 131 |
],
|
| 132 |
-
"
|
| 133 |
},
|
| 134 |
{
|
| 135 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 136 |
"question": "What caused the door to open?",
|
| 137 |
"options": [
|
| 138 |
"A person swiping a card beside the door",
|
|
@@ -140,10 +218,16 @@
|
|
| 140 |
"Both a and b",
|
| 141 |
"None of the above"
|
| 142 |
],
|
| 143 |
-
"
|
| 144 |
},
|
| 145 |
{
|
| 146 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 147 |
"question": "What caused the door to open?",
|
| 148 |
"options": [
|
| 149 |
"A person scanning a card beside the door",
|
|
@@ -151,10 +235,16 @@
|
|
| 151 |
"Both a and b",
|
| 152 |
"None of the above"
|
| 153 |
],
|
| 154 |
-
"
|
| 155 |
},
|
| 156 |
{
|
| 157 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 158 |
"question": "When the first person walked up to the transparent door, why did it open?",
|
| 159 |
"options": [
|
| 160 |
"The person scanned a card beside the door",
|
|
@@ -162,10 +252,16 @@
|
|
| 162 |
"The person clicked a button beside the door",
|
| 163 |
"None of the above"
|
| 164 |
],
|
| 165 |
-
"
|
| 166 |
},
|
| 167 |
{
|
| 168 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 169 |
"question": "Why does the man wearing the black outfit near the door push a small card against the black object on the white wall beside the door?",
|
| 170 |
"options": [
|
| 171 |
"To change the color of the wall",
|
|
@@ -173,19 +269,31 @@
|
|
| 173 |
"To gain access to the room and unlock the door",
|
| 174 |
"None of the above"
|
| 175 |
],
|
| 176 |
-
"
|
| 177 |
},
|
| 178 |
{
|
| 179 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 180 |
"question": "Did two people in the video tailgate?",
|
| 181 |
"options": [
|
| 182 |
"Yes",
|
| 183 |
"No"
|
| 184 |
],
|
| 185 |
-
"
|
| 186 |
},
|
| 187 |
{
|
| 188 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 189 |
"question": "What caused the people who entered the room to close the door twice?",
|
| 190 |
"options": [
|
| 191 |
"maintain privacy",
|
|
@@ -193,10 +301,16 @@
|
|
| 193 |
"focus on work",
|
| 194 |
"all of the above"
|
| 195 |
],
|
| 196 |
-
"
|
| 197 |
},
|
| 198 |
{
|
| 199 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 200 |
"question": "What caused the third person not to punch his card while entering the room?",
|
| 201 |
"options": [
|
| 202 |
"forgot his card",
|
|
@@ -204,10 +318,16 @@
|
|
| 204 |
"Forgot to punch the card",
|
| 205 |
"all of the above"
|
| 206 |
],
|
| 207 |
-
"
|
| 208 |
},
|
| 209 |
{
|
| 210 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 211 |
"question": "What caused the door to open?",
|
| 212 |
"options": [
|
| 213 |
"A man swiping a card beside the door",
|
|
@@ -215,6 +335,6 @@
|
|
| 215 |
"Both a and b",
|
| 216 |
"None of the above"
|
| 217 |
],
|
| 218 |
-
"
|
| 219 |
}
|
| 220 |
-
]
|
|
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
+
"q_uid": "GX010071_Clip_4.mp4",
|
| 4 |
+
"industry": "",
|
| 5 |
+
"event_type": "",
|
| 6 |
+
"start_time": null,
|
| 7 |
+
"end_time": null,
|
| 8 |
+
"video_duration": null,
|
| 9 |
+
"task_type": "",
|
| 10 |
"question": "Which of the following is true according to the segment?",
|
| 11 |
"options": [
|
| 12 |
"everyone is holding something",
|
|
|
|
| 14 |
"no one is carrying a laptop",
|
| 15 |
"only one person at a time can leave the room"
|
| 16 |
],
|
| 17 |
+
"dimension": "Temporal reasoning"
|
| 18 |
},
|
| 19 |
{
|
| 20 |
+
"q_uid": "GX010071_Clip_6.mp4",
|
| 21 |
+
"industry": "",
|
| 22 |
+
"event_type": "",
|
| 23 |
+
"start_time": null,
|
| 24 |
+
"end_time": null,
|
| 25 |
+
"video_duration": null,
|
| 26 |
+
"task_type": "",
|
| 27 |
"question": "In the scene, what caused the transparent gate to open?",
|
| 28 |
"options": [
|
| 29 |
"A man touching a metal part of the transparent gate",
|
|
|
|
| 31 |
"The door opens automatically as the person approaches",
|
| 32 |
"None of the above"
|
| 33 |
],
|
| 34 |
+
"dimension": "Temporal reasoning"
|
| 35 |
},
|
| 36 |
{
|
| 37 |
+
"q_uid": "GX010032_Clip_2.mp4",
|
| 38 |
+
"industry": "",
|
| 39 |
+
"event_type": "",
|
| 40 |
+
"start_time": null,
|
| 41 |
+
"end_time": null,
|
| 42 |
+
"video_duration": null,
|
| 43 |
+
"task_type": "",
|
| 44 |
"question": "In the scene, what is causing the transparent gates to open?",
|
| 45 |
"options": [
|
| 46 |
"People scanning cards beside the transparent doors",
|
|
|
|
| 48 |
"It senses a person approaching and opens automatically",
|
| 49 |
"None of the above"
|
| 50 |
],
|
| 51 |
+
"dimension": "Temporal reasoning"
|
| 52 |
},
|
| 53 |
{
|
| 54 |
+
"q_uid": "GX010014_Clip_1.mp4",
|
| 55 |
+
"industry": "",
|
| 56 |
+
"event_type": "",
|
| 57 |
+
"start_time": null,
|
| 58 |
+
"end_time": null,
|
| 59 |
+
"video_duration": null,
|
| 60 |
+
"task_type": "",
|
| 61 |
"question": "What is causing the transparent gates to open?",
|
| 62 |
"options": [
|
| 63 |
"People scanning cards beside the gates",
|
|
|
|
| 65 |
"When someone approaches, the gate automatically opens after detecting their presence",
|
| 66 |
"None of the above"
|
| 67 |
],
|
| 68 |
+
"dimension": "Temporal reasoning"
|
| 69 |
},
|
| 70 |
{
|
| 71 |
+
"q_uid": "GX010031_Clip_3.mp4",
|
| 72 |
+
"industry": "",
|
| 73 |
+
"event_type": "",
|
| 74 |
+
"start_time": null,
|
| 75 |
+
"end_time": null,
|
| 76 |
+
"video_duration": null,
|
| 77 |
+
"task_type": "",
|
| 78 |
"question": "Why was the person wearing a black T-shirt stopped by others near the door?",
|
| 79 |
"options": [
|
| 80 |
"was for higher level",
|
|
|
|
| 82 |
"privacy purpose",
|
| 83 |
"both a and c"
|
| 84 |
],
|
| 85 |
+
"dimension": "Temporal reasoning"
|
| 86 |
},
|
| 87 |
{
|
| 88 |
+
"q_uid": "GX010029_Clip_6.mp4",
|
| 89 |
+
"industry": "",
|
| 90 |
+
"event_type": "",
|
| 91 |
+
"start_time": null,
|
| 92 |
+
"end_time": null,
|
| 93 |
+
"video_duration": null,
|
| 94 |
+
"task_type": "",
|
| 95 |
"question": "Why did the door on the right close?",
|
| 96 |
"options": [
|
| 97 |
"A person pulling the door",
|
|
|
|
| 99 |
"A person rotating the door handle",
|
| 100 |
"None of the above"
|
| 101 |
],
|
| 102 |
+
"dimension": "Temporal reasoning"
|
| 103 |
},
|
| 104 |
{
|
| 105 |
+
"q_uid": "GX010030_Clip_2.mp4",
|
| 106 |
+
"industry": "",
|
| 107 |
+
"event_type": "",
|
| 108 |
+
"start_time": null,
|
| 109 |
+
"end_time": null,
|
| 110 |
+
"video_duration": null,
|
| 111 |
+
"task_type": "",
|
| 112 |
"question": "In the scene, what is causing the turnstiles to open?",
|
| 113 |
"options": [
|
| 114 |
"People pushing a button beside the turnstile",
|
|
|
|
| 116 |
"When someone approaches the turnstile, it detects their presence and opens automatically",
|
| 117 |
"None of the above"
|
| 118 |
],
|
| 119 |
+
"dimension": "Temporal reasoning"
|
| 120 |
},
|
| 121 |
{
|
| 122 |
+
"q_uid": "GX010069_Clip_8.mp4",
|
| 123 |
+
"industry": "",
|
| 124 |
+
"event_type": "",
|
| 125 |
+
"start_time": null,
|
| 126 |
+
"end_time": null,
|
| 127 |
+
"video_duration": null,
|
| 128 |
+
"task_type": "",
|
| 129 |
"question": "What caused the door to close?",
|
| 130 |
"options": [
|
| 131 |
"The door being closed automatically",
|
|
|
|
| 133 |
"A person scanning a card beside the door",
|
| 134 |
"None of the above"
|
| 135 |
],
|
| 136 |
+
"dimension": "Temporal reasoning"
|
| 137 |
},
|
| 138 |
{
|
| 139 |
+
"q_uid": "GX010070_Clip_4.mp4",
|
| 140 |
+
"industry": "",
|
| 141 |
+
"event_type": "",
|
| 142 |
+
"start_time": null,
|
| 143 |
+
"end_time": null,
|
| 144 |
+
"video_duration": null,
|
| 145 |
+
"task_type": "",
|
| 146 |
"question": "What is the least likely reason the person stood alone, folding his hands, before others?",
|
| 147 |
"options": [
|
| 148 |
"had permission to exit early",
|
|
|
|
| 150 |
"skipped a meeting and reached early",
|
| 151 |
"a secret force pulled him ahead"
|
| 152 |
],
|
| 153 |
+
"dimension": "Temporal reasoning"
|
| 154 |
},
|
| 155 |
{
|
| 156 |
+
"q_uid": "GX010069_Clip_5.mp4",
|
| 157 |
+
"industry": "",
|
| 158 |
+
"event_type": "",
|
| 159 |
+
"start_time": null,
|
| 160 |
+
"end_time": null,
|
| 161 |
+
"video_duration": null,
|
| 162 |
+
"task_type": "",
|
| 163 |
"question": "What caused the door to close?",
|
| 164 |
"options": [
|
| 165 |
"closed automatically",
|
|
|
|
| 167 |
"a man pulling the door",
|
| 168 |
"none of the above"
|
| 169 |
],
|
| 170 |
+
"dimension": "Temporal reasoning"
|
| 171 |
},
|
| 172 |
{
|
| 173 |
+
"q_uid": "GX010012_Clip_4.mp4",
|
| 174 |
+
"industry": "",
|
| 175 |
+
"event_type": "",
|
| 176 |
+
"start_time": null,
|
| 177 |
+
"end_time": null,
|
| 178 |
+
"video_duration": null,
|
| 179 |
+
"task_type": "",
|
| 180 |
"question": "What caused the transparent gate to open and close?",
|
| 181 |
"options": [
|
| 182 |
"People open and close it manually",
|
|
|
|
| 184 |
"There is a switch near the gate",
|
| 185 |
"The gate opens and closes randomly"
|
| 186 |
],
|
| 187 |
+
"dimension": "Temporal reasoning"
|
| 188 |
},
|
| 189 |
{
|
| 190 |
+
"q_uid": "GX010030_Clip_1.mp4",
|
| 191 |
+
"industry": "",
|
| 192 |
+
"event_type": "",
|
| 193 |
+
"start_time": null,
|
| 194 |
+
"end_time": null,
|
| 195 |
+
"video_duration": null,
|
| 196 |
+
"task_type": "",
|
| 197 |
"question": "What caused the transparent doors to open in the video segment?",
|
| 198 |
"options": [
|
| 199 |
"A vehicle passing through",
|
|
|
|
| 201 |
"Objects passing through",
|
| 202 |
"None of the above"
|
| 203 |
],
|
| 204 |
+
"dimension": "Temporal reasoning"
|
| 205 |
},
|
| 206 |
{
|
| 207 |
+
"q_uid": "GX010011_Clip_3.mp4",
|
| 208 |
+
"industry": "",
|
| 209 |
+
"event_type": "",
|
| 210 |
+
"start_time": null,
|
| 211 |
+
"end_time": null,
|
| 212 |
+
"video_duration": null,
|
| 213 |
+
"task_type": "",
|
| 214 |
"question": "What caused the door to open?",
|
| 215 |
"options": [
|
| 216 |
"A person swiping a card beside the door",
|
|
|
|
| 218 |
"Both a and b",
|
| 219 |
"None of the above"
|
| 220 |
],
|
| 221 |
+
"dimension": "Temporal reasoning"
|
| 222 |
},
|
| 223 |
{
|
| 224 |
+
"q_uid": "GX010029_Clip_7.mp4",
|
| 225 |
+
"industry": "",
|
| 226 |
+
"event_type": "",
|
| 227 |
+
"start_time": null,
|
| 228 |
+
"end_time": null,
|
| 229 |
+
"video_duration": null,
|
| 230 |
+
"task_type": "",
|
| 231 |
"question": "What caused the door to open?",
|
| 232 |
"options": [
|
| 233 |
"A person scanning a card beside the door",
|
|
|
|
| 235 |
"Both a and b",
|
| 236 |
"None of the above"
|
| 237 |
],
|
| 238 |
+
"dimension": "Temporal reasoning"
|
| 239 |
},
|
| 240 |
{
|
| 241 |
+
"q_uid": "GX010030_Clip_4.mp4",
|
| 242 |
+
"industry": "",
|
| 243 |
+
"event_type": "",
|
| 244 |
+
"start_time": null,
|
| 245 |
+
"end_time": null,
|
| 246 |
+
"video_duration": null,
|
| 247 |
+
"task_type": "",
|
| 248 |
"question": "When the first person walked up to the transparent door, why did it open?",
|
| 249 |
"options": [
|
| 250 |
"The person scanned a card beside the door",
|
|
|
|
| 252 |
"The person clicked a button beside the door",
|
| 253 |
"None of the above"
|
| 254 |
],
|
| 255 |
+
"dimension": "Temporal reasoning"
|
| 256 |
},
|
| 257 |
{
|
| 258 |
+
"q_uid": "GX010029_Clip_4.mp4",
|
| 259 |
+
"industry": "",
|
| 260 |
+
"event_type": "",
|
| 261 |
+
"start_time": null,
|
| 262 |
+
"end_time": null,
|
| 263 |
+
"video_duration": null,
|
| 264 |
+
"task_type": "",
|
| 265 |
"question": "Why does the man wearing the black outfit near the door push a small card against the black object on the white wall beside the door?",
|
| 266 |
"options": [
|
| 267 |
"To change the color of the wall",
|
|
|
|
| 269 |
"To gain access to the room and unlock the door",
|
| 270 |
"None of the above"
|
| 271 |
],
|
| 272 |
+
"dimension": "Temporal reasoning"
|
| 273 |
},
|
| 274 |
{
|
| 275 |
+
"q_uid": "GX010069_Clip_4.mp4",
|
| 276 |
+
"industry": "",
|
| 277 |
+
"event_type": "",
|
| 278 |
+
"start_time": null,
|
| 279 |
+
"end_time": null,
|
| 280 |
+
"video_duration": null,
|
| 281 |
+
"task_type": "",
|
| 282 |
"question": "Did two people in the video tailgate?",
|
| 283 |
"options": [
|
| 284 |
"Yes",
|
| 285 |
"No"
|
| 286 |
],
|
| 287 |
+
"dimension": "Temporal reasoning"
|
| 288 |
},
|
| 289 |
{
|
| 290 |
+
"q_uid": "GX010011_Clip_9.mp4",
|
| 291 |
+
"industry": "",
|
| 292 |
+
"event_type": "",
|
| 293 |
+
"start_time": null,
|
| 294 |
+
"end_time": null,
|
| 295 |
+
"video_duration": null,
|
| 296 |
+
"task_type": "",
|
| 297 |
"question": "What caused the people who entered the room to close the door twice?",
|
| 298 |
"options": [
|
| 299 |
"maintain privacy",
|
|
|
|
| 301 |
"focus on work",
|
| 302 |
"all of the above"
|
| 303 |
],
|
| 304 |
+
"dimension": "Temporal reasoning"
|
| 305 |
},
|
| 306 |
{
|
| 307 |
+
"q_uid": "GX010011_Clip_9.mp4",
|
| 308 |
+
"industry": "",
|
| 309 |
+
"event_type": "",
|
| 310 |
+
"start_time": null,
|
| 311 |
+
"end_time": null,
|
| 312 |
+
"video_duration": null,
|
| 313 |
+
"task_type": "",
|
| 314 |
"question": "What caused the third person not to punch his card while entering the room?",
|
| 315 |
"options": [
|
| 316 |
"forgot his card",
|
|
|
|
| 318 |
"Forgot to punch the card",
|
| 319 |
"all of the above"
|
| 320 |
],
|
| 321 |
+
"dimension": "Temporal reasoning"
|
| 322 |
},
|
| 323 |
{
|
| 324 |
+
"q_uid": "GX010011_Clip_4.mp4",
|
| 325 |
+
"industry": "",
|
| 326 |
+
"event_type": "",
|
| 327 |
+
"start_time": null,
|
| 328 |
+
"end_time": null,
|
| 329 |
+
"video_duration": null,
|
| 330 |
+
"task_type": "",
|
| 331 |
"question": "What caused the door to open?",
|
| 332 |
"options": [
|
| 333 |
"A man swiping a card beside the door",
|
|
|
|
| 335 |
"Both a and b",
|
| 336 |
"None of the above"
|
| 337 |
],
|
| 338 |
+
"dimension": "Temporal reasoning"
|
| 339 |
}
|
| 340 |
+
]
|
data/vqa/data_jsons/annotations/metrics_temporal_wo_ss.json
CHANGED
|
@@ -1,24 +1,36 @@
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
"q_uid": "concat_wh_52_0_0.mp4",
|
| 4 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
"question": "What caused the box to fall?",
|
| 6 |
"options": [
|
| 7 |
"The black object under the box moves away",
|
| 8 |
"A person hits the box",
|
| 9 |
"An object hits the box",
|
| 10 |
"None of the above"
|
| 11 |
-
]
|
|
|
|
| 12 |
},
|
| 13 |
{
|
| 14 |
"q_uid": "concat_wh_52_0_1.mp4",
|
| 15 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
"question": "What caused the box to fall?",
|
| 17 |
"options": [
|
| 18 |
"The box is not properly placed on the moving black object",
|
| 19 |
"A person hitting the box",
|
| 20 |
"An object hits the box",
|
| 21 |
"None of the above"
|
| 22 |
-
]
|
|
|
|
| 23 |
}
|
| 24 |
-
]
|
|
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
"q_uid": "concat_wh_52_0_0.mp4",
|
| 4 |
+
"industry": "",
|
| 5 |
+
"event_type": "",
|
| 6 |
+
"start_time": null,
|
| 7 |
+
"end_time": null,
|
| 8 |
+
"video_duration": null,
|
| 9 |
+
"task_type": "",
|
| 10 |
"question": "What caused the box to fall?",
|
| 11 |
"options": [
|
| 12 |
"The black object under the box moves away",
|
| 13 |
"A person hits the box",
|
| 14 |
"An object hits the box",
|
| 15 |
"None of the above"
|
| 16 |
+
],
|
| 17 |
+
"dimension": "Temporal reasoning"
|
| 18 |
},
|
| 19 |
{
|
| 20 |
"q_uid": "concat_wh_52_0_1.mp4",
|
| 21 |
+
"industry": "",
|
| 22 |
+
"event_type": "",
|
| 23 |
+
"start_time": null,
|
| 24 |
+
"end_time": null,
|
| 25 |
+
"video_duration": null,
|
| 26 |
+
"task_type": "",
|
| 27 |
"question": "What caused the box to fall?",
|
| 28 |
"options": [
|
| 29 |
"The box is not properly placed on the moving black object",
|
| 30 |
"A person hitting the box",
|
| 31 |
"An object hits the box",
|
| 32 |
"None of the above"
|
| 33 |
+
],
|
| 34 |
+
"dimension": "Temporal reasoning"
|
| 35 |
}
|
| 36 |
+
]
|