KHUjongseo commited on
Commit
f22285b
·
verified ·
1 Parent(s): 5dda4f9

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: direction_only_close_ended
4
+ data_files:
5
+ - split: val
6
+ path: direction_only_close_ended.json
7
+ - config_name: direction_only_open_ended
8
+ data_files:
9
+ - split: val
10
+ path: direction_only_open_ended.json
11
+ - config_name: direction_obj_in_q_close_ended
12
+ data_files:
13
+ - split: val
14
+ path: direction_obj_in_q_close_ended.json
15
+ - config_name: direction_obj_in_q_open_ended
16
+ data_files:
17
+ - split: val
18
+ path: direction_obj_in_q_open_ended.json
19
+ - config_name: direction_obj_in_a_close_ended
20
+ data_files:
21
+ - split: val
22
+ path: direction_obj_in_a_close_ended.json
23
+ - config_name: direction_obj_in_a_open_ended
24
+ data_files:
25
+ - split: val
26
+ path: direction_obj_in_a_open_ended.json
27
+ - config_name: direction_obj_in_qa_close_ended
28
+ data_files:
29
+ - split: val
30
+ path: direction_obj_in_qa_close_ended.json
31
+ - config_name: direction_obj_in_qa_open_ended
32
+ data_files:
33
+ - split: val
34
+ path: direction_obj_in_qa_open_ended.json
35
+ - config_name: object_recognition_close_ended
36
+ data_files:
37
+ - split: val
38
+ path: object_recognition_close_ended.json
39
+ - config_name: object_recognition_open_ended
40
+ data_files:
41
+ - split: val
42
+ path: object_recognition_open_ended.json
43
+ license: mit
44
+ task_categories:
45
+ - video-classification
46
+ - question-answering
47
+ language:
48
+ - en
49
+ tags:
50
+ - video
51
+ - spatial-reasoning
52
+ - direction
53
+ - VideoLLM
54
+ pretty_name: E2E Real Object Direction
55
+ size_categories:
56
+ - n<1K
57
+ ---
58
+
59
+ # E2E Real Object Direction
60
+
61
+ A video-based benchmark for evaluating VideoLLMs' directional reasoning and object recognition on real-world objects.
62
+
63
+ ## Conditions
64
+
65
+ | Condition | Question | Answer | Purpose |
66
+ |---|---|---|---|
67
+ | `direction_only` | "In which direction is the **object** moving?" | "Up" | Baseline direction recognition |
68
+ | `direction_obj_in_q` | "In which direction is the **car** moving?" | "Up" | Does naming the object help? |
69
+ | `direction_obj_in_a` | "In which direction is the **object** moving?" | "The **car** is moving up" | Object grounding in answer |
70
+ | `direction_obj_in_qa` | "In which direction is the **car** moving?" | "The **car** is moving up" | Full object grounding |
71
+ | `object_recognition` | "What is the object moving in this video?" | "Car" | Object identification only |
72
+
73
+ Each condition has both `close_ended` (MCQ) and `open_ended` (free-form) variants.
74
+
75
+ ## Usage
76
+
77
+ ```python
78
+ from datasets import load_dataset
79
+
80
+ ds = load_dataset("YOUR_HF_ID/E2E_real_object", name="direction_only_close_ended", split="val")
81
+ ```
82
+
83
+ ## Data Format
84
+
85
+ ### Direction tasks (close_ended)
86
+ ```json
87
+ {
88
+ "id": 0,
89
+ "video": "up/horse.mp4",
90
+ "category": "up",
91
+ "question": "In which direction is the object moving in this video?",
92
+ "options": ["Up", "Down", "Left", "Right"],
93
+ "answer": "A"
94
+ }
95
+ ```
96
+
97
+ ### Object recognition (close_ended)
98
+ ```json
99
+ {
100
+ "id": 0,
101
+ "video": "up/horse.mp4",
102
+ "category": "up",
103
+ "question": "What is the object moving in this video?",
104
+ "options": ["Horse", "Car", "Dog", "Laptop"],
105
+ "answer": "A"
106
+ }
107
+ ```
108
+
109
+ ## Video Structure
110
+
111
+ ```
112
+ E2E_real_object/
113
+ ├── up/
114
+ │ ├── car.mp4
115
+ │ ├── dog.mp4
116
+ │ └── ...
117
+ ├── down/
118
+ ├── left/
119
+ └── right/
120
+ ```
121
+
122
+ ## Objects
123
+
124
+ bicycle, car, dog, bed, basketball, bench, sophia, chair, sofa, horse, laptop, duck, sphere
direction_obj_in_a_close_ended.json ADDED
@@ -0,0 +1,678 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "video": "left/basketball.mp4",
4
+ "category": "left",
5
+ "question": "In which direction is the object moving in this video?",
6
+ "options": [
7
+ "The basketball is moving up",
8
+ "The basketball is moving down",
9
+ "The basketball is moving left",
10
+ "The basketball is moving right"
11
+ ],
12
+ "answer": "C",
13
+ "id": 0
14
+ },
15
+ {
16
+ "video": "up/duck.mp4",
17
+ "category": "up",
18
+ "question": "In which direction is the object moving in this video?",
19
+ "options": [
20
+ "The duck is moving up",
21
+ "The duck is moving down",
22
+ "The duck is moving left",
23
+ "The duck is moving right"
24
+ ],
25
+ "answer": "A",
26
+ "id": 1
27
+ },
28
+ {
29
+ "video": "right/car.mp4",
30
+ "category": "right",
31
+ "question": "In which direction is the object moving in this video?",
32
+ "options": [
33
+ "The car is moving up",
34
+ "The car is moving down",
35
+ "The car is moving left",
36
+ "The car is moving right"
37
+ ],
38
+ "answer": "D",
39
+ "id": 2
40
+ },
41
+ {
42
+ "video": "up/sophia.mp4",
43
+ "category": "up",
44
+ "question": "In which direction is the object moving in this video?",
45
+ "options": [
46
+ "The sophia is moving up",
47
+ "The sophia is moving down",
48
+ "The sophia is moving left",
49
+ "The sophia is moving right"
50
+ ],
51
+ "answer": "A",
52
+ "id": 3
53
+ },
54
+ {
55
+ "video": "down/chair.mp4",
56
+ "category": "down",
57
+ "question": "In which direction is the object moving in this video?",
58
+ "options": [
59
+ "The chair is moving up",
60
+ "The chair is moving down",
61
+ "The chair is moving left",
62
+ "The chair is moving right"
63
+ ],
64
+ "answer": "B",
65
+ "id": 4
66
+ },
67
+ {
68
+ "video": "down/horse.mp4",
69
+ "category": "down",
70
+ "question": "In which direction is the object moving in this video?",
71
+ "options": [
72
+ "The horse is moving up",
73
+ "The horse is moving down",
74
+ "The horse is moving left",
75
+ "The horse is moving right"
76
+ ],
77
+ "answer": "B",
78
+ "id": 5
79
+ },
80
+ {
81
+ "video": "up/dog.mp4",
82
+ "category": "up",
83
+ "question": "In which direction is the object moving in this video?",
84
+ "options": [
85
+ "The dog is moving up",
86
+ "The dog is moving down",
87
+ "The dog is moving left",
88
+ "The dog is moving right"
89
+ ],
90
+ "answer": "A",
91
+ "id": 6
92
+ },
93
+ {
94
+ "video": "down/laptop.mp4",
95
+ "category": "down",
96
+ "question": "In which direction is the object moving in this video?",
97
+ "options": [
98
+ "The laptop is moving up",
99
+ "The laptop is moving down",
100
+ "The laptop is moving left",
101
+ "The laptop is moving right"
102
+ ],
103
+ "answer": "B",
104
+ "id": 7
105
+ },
106
+ {
107
+ "video": "right/bicycle.mp4",
108
+ "category": "right",
109
+ "question": "In which direction is the object moving in this video?",
110
+ "options": [
111
+ "The bicycle is moving up",
112
+ "The bicycle is moving down",
113
+ "The bicycle is moving left",
114
+ "The bicycle is moving right"
115
+ ],
116
+ "answer": "D",
117
+ "id": 8
118
+ },
119
+ {
120
+ "video": "left/duck.mp4",
121
+ "category": "left",
122
+ "question": "In which direction is the object moving in this video?",
123
+ "options": [
124
+ "The duck is moving up",
125
+ "The duck is moving down",
126
+ "The duck is moving left",
127
+ "The duck is moving right"
128
+ ],
129
+ "answer": "C",
130
+ "id": 9
131
+ },
132
+ {
133
+ "video": "up/sofa.mp4",
134
+ "category": "up",
135
+ "question": "In which direction is the object moving in this video?",
136
+ "options": [
137
+ "The sofa is moving up",
138
+ "The sofa is moving down",
139
+ "The sofa is moving left",
140
+ "The sofa is moving right"
141
+ ],
142
+ "answer": "A",
143
+ "id": 10
144
+ },
145
+ {
146
+ "video": "up/basketball.mp4",
147
+ "category": "up",
148
+ "question": "In which direction is the object moving in this video?",
149
+ "options": [
150
+ "The basketball is moving up",
151
+ "The basketball is moving down",
152
+ "The basketball is moving left",
153
+ "The basketball is moving right"
154
+ ],
155
+ "answer": "A",
156
+ "id": 11
157
+ },
158
+ {
159
+ "video": "left/bench.mp4",
160
+ "category": "left",
161
+ "question": "In which direction is the object moving in this video?",
162
+ "options": [
163
+ "The bench is moving up",
164
+ "The bench is moving down",
165
+ "The bench is moving left",
166
+ "The bench is moving right"
167
+ ],
168
+ "answer": "C",
169
+ "id": 12
170
+ },
171
+ {
172
+ "video": "left/dog.mp4",
173
+ "category": "left",
174
+ "question": "In which direction is the object moving in this video?",
175
+ "options": [
176
+ "The dog is moving up",
177
+ "The dog is moving down",
178
+ "The dog is moving left",
179
+ "The dog is moving right"
180
+ ],
181
+ "answer": "C",
182
+ "id": 13
183
+ },
184
+ {
185
+ "video": "right/basketball.mp4",
186
+ "category": "right",
187
+ "question": "In which direction is the object moving in this video?",
188
+ "options": [
189
+ "The basketball is moving up",
190
+ "The basketball is moving down",
191
+ "The basketball is moving left",
192
+ "The basketball is moving right"
193
+ ],
194
+ "answer": "D",
195
+ "id": 14
196
+ },
197
+ {
198
+ "video": "right/sofa.mp4",
199
+ "category": "right",
200
+ "question": "In which direction is the object moving in this video?",
201
+ "options": [
202
+ "The sofa is moving up",
203
+ "The sofa is moving down",
204
+ "The sofa is moving left",
205
+ "The sofa is moving right"
206
+ ],
207
+ "answer": "D",
208
+ "id": 15
209
+ },
210
+ {
211
+ "video": "down/car.mp4",
212
+ "category": "down",
213
+ "question": "In which direction is the object moving in this video?",
214
+ "options": [
215
+ "The car is moving up",
216
+ "The car is moving down",
217
+ "The car is moving left",
218
+ "The car is moving right"
219
+ ],
220
+ "answer": "B",
221
+ "id": 16
222
+ },
223
+ {
224
+ "video": "up/sphere.mp4",
225
+ "category": "up",
226
+ "question": "In which direction is the object moving in this video?",
227
+ "options": [
228
+ "The sphere is moving up",
229
+ "The sphere is moving down",
230
+ "The sphere is moving left",
231
+ "The sphere is moving right"
232
+ ],
233
+ "answer": "A",
234
+ "id": 17
235
+ },
236
+ {
237
+ "video": "right/sophia.mp4",
238
+ "category": "right",
239
+ "question": "In which direction is the object moving in this video?",
240
+ "options": [
241
+ "The sophia is moving up",
242
+ "The sophia is moving down",
243
+ "The sophia is moving left",
244
+ "The sophia is moving right"
245
+ ],
246
+ "answer": "D",
247
+ "id": 18
248
+ },
249
+ {
250
+ "video": "down/dog.mp4",
251
+ "category": "down",
252
+ "question": "In which direction is the object moving in this video?",
253
+ "options": [
254
+ "The dog is moving up",
255
+ "The dog is moving down",
256
+ "The dog is moving left",
257
+ "The dog is moving right"
258
+ ],
259
+ "answer": "B",
260
+ "id": 19
261
+ },
262
+ {
263
+ "video": "right/horse.mp4",
264
+ "category": "right",
265
+ "question": "In which direction is the object moving in this video?",
266
+ "options": [
267
+ "The horse is moving up",
268
+ "The horse is moving down",
269
+ "The horse is moving left",
270
+ "The horse is moving right"
271
+ ],
272
+ "answer": "D",
273
+ "id": 20
274
+ },
275
+ {
276
+ "video": "up/chair.mp4",
277
+ "category": "up",
278
+ "question": "In which direction is the object moving in this video?",
279
+ "options": [
280
+ "The chair is moving up",
281
+ "The chair is moving down",
282
+ "The chair is moving left",
283
+ "The chair is moving right"
284
+ ],
285
+ "answer": "A",
286
+ "id": 21
287
+ },
288
+ {
289
+ "video": "right/laptop.mp4",
290
+ "category": "right",
291
+ "question": "In which direction is the object moving in this video?",
292
+ "options": [
293
+ "The laptop is moving up",
294
+ "The laptop is moving down",
295
+ "The laptop is moving left",
296
+ "The laptop is moving right"
297
+ ],
298
+ "answer": "D",
299
+ "id": 22
300
+ },
301
+ {
302
+ "video": "left/car.mp4",
303
+ "category": "left",
304
+ "question": "In which direction is the object moving in this video?",
305
+ "options": [
306
+ "The car is moving up",
307
+ "The car is moving down",
308
+ "The car is moving left",
309
+ "The car is moving right"
310
+ ],
311
+ "answer": "C",
312
+ "id": 23
313
+ },
314
+ {
315
+ "video": "up/bicycle.mp4",
316
+ "category": "up",
317
+ "question": "In which direction is the object moving in this video?",
318
+ "options": [
319
+ "The bicycle is moving up",
320
+ "The bicycle is moving down",
321
+ "The bicycle is moving left",
322
+ "The bicycle is moving right"
323
+ ],
324
+ "answer": "A",
325
+ "id": 24
326
+ },
327
+ {
328
+ "video": "up/bed.mp4",
329
+ "category": "up",
330
+ "question": "In which direction is the object moving in this video?",
331
+ "options": [
332
+ "The bed is moving up",
333
+ "The bed is moving down",
334
+ "The bed is moving left",
335
+ "The bed is moving right"
336
+ ],
337
+ "answer": "A",
338
+ "id": 25
339
+ },
340
+ {
341
+ "video": "down/sophia.mp4",
342
+ "category": "down",
343
+ "question": "In which direction is the object moving in this video?",
344
+ "options": [
345
+ "The sophia is moving up",
346
+ "The sophia is moving down",
347
+ "The sophia is moving left",
348
+ "The sophia is moving right"
349
+ ],
350
+ "answer": "B",
351
+ "id": 26
352
+ },
353
+ {
354
+ "video": "up/bench.mp4",
355
+ "category": "up",
356
+ "question": "In which direction is the object moving in this video?",
357
+ "options": [
358
+ "The bench is moving up",
359
+ "The bench is moving down",
360
+ "The bench is moving left",
361
+ "The bench is moving right"
362
+ ],
363
+ "answer": "A",
364
+ "id": 27
365
+ },
366
+ {
367
+ "video": "left/sphere.mp4",
368
+ "category": "left",
369
+ "question": "In which direction is the object moving in this video?",
370
+ "options": [
371
+ "The sphere is moving up",
372
+ "The sphere is moving down",
373
+ "The sphere is moving left",
374
+ "The sphere is moving right"
375
+ ],
376
+ "answer": "C",
377
+ "id": 28
378
+ },
379
+ {
380
+ "video": "left/sophia.mp4",
381
+ "category": "left",
382
+ "question": "In which direction is the object moving in this video?",
383
+ "options": [
384
+ "The sophia is moving up",
385
+ "The sophia is moving down",
386
+ "The sophia is moving left",
387
+ "The sophia is moving right"
388
+ ],
389
+ "answer": "C",
390
+ "id": 29
391
+ },
392
+ {
393
+ "video": "up/car.mp4",
394
+ "category": "up",
395
+ "question": "In which direction is the object moving in this video?",
396
+ "options": [
397
+ "The car is moving up",
398
+ "The car is moving down",
399
+ "The car is moving left",
400
+ "The car is moving right"
401
+ ],
402
+ "answer": "A",
403
+ "id": 30
404
+ },
405
+ {
406
+ "video": "down/bed.mp4",
407
+ "category": "down",
408
+ "question": "In which direction is the object moving in this video?",
409
+ "options": [
410
+ "The bed is moving up",
411
+ "The bed is moving down",
412
+ "The bed is moving left",
413
+ "The bed is moving right"
414
+ ],
415
+ "answer": "B",
416
+ "id": 31
417
+ },
418
+ {
419
+ "video": "down/sofa.mp4",
420
+ "category": "down",
421
+ "question": "In which direction is the object moving in this video?",
422
+ "options": [
423
+ "The sofa is moving up",
424
+ "The sofa is moving down",
425
+ "The sofa is moving left",
426
+ "The sofa is moving right"
427
+ ],
428
+ "answer": "B",
429
+ "id": 32
430
+ },
431
+ {
432
+ "video": "right/chair.mp4",
433
+ "category": "right",
434
+ "question": "In which direction is the object moving in this video?",
435
+ "options": [
436
+ "The chair is moving up",
437
+ "The chair is moving down",
438
+ "The chair is moving left",
439
+ "The chair is moving right"
440
+ ],
441
+ "answer": "D",
442
+ "id": 33
443
+ },
444
+ {
445
+ "video": "left/bed.mp4",
446
+ "category": "left",
447
+ "question": "In which direction is the object moving in this video?",
448
+ "options": [
449
+ "The bed is moving up",
450
+ "The bed is moving down",
451
+ "The bed is moving left",
452
+ "The bed is moving right"
453
+ ],
454
+ "answer": "C",
455
+ "id": 34
456
+ },
457
+ {
458
+ "video": "right/bed.mp4",
459
+ "category": "right",
460
+ "question": "In which direction is the object moving in this video?",
461
+ "options": [
462
+ "The bed is moving up",
463
+ "The bed is moving down",
464
+ "The bed is moving left",
465
+ "The bed is moving right"
466
+ ],
467
+ "answer": "D",
468
+ "id": 35
469
+ },
470
+ {
471
+ "video": "left/horse.mp4",
472
+ "category": "left",
473
+ "question": "In which direction is the object moving in this video?",
474
+ "options": [
475
+ "The horse is moving up",
476
+ "The horse is moving down",
477
+ "The horse is moving left",
478
+ "The horse is moving right"
479
+ ],
480
+ "answer": "C",
481
+ "id": 36
482
+ },
483
+ {
484
+ "video": "left/laptop.mp4",
485
+ "category": "left",
486
+ "question": "In which direction is the object moving in this video?",
487
+ "options": [
488
+ "The laptop is moving up",
489
+ "The laptop is moving down",
490
+ "The laptop is moving left",
491
+ "The laptop is moving right"
492
+ ],
493
+ "answer": "C",
494
+ "id": 37
495
+ },
496
+ {
497
+ "video": "down/bench.mp4",
498
+ "category": "down",
499
+ "question": "In which direction is the object moving in this video?",
500
+ "options": [
501
+ "The bench is moving up",
502
+ "The bench is moving down",
503
+ "The bench is moving left",
504
+ "The bench is moving right"
505
+ ],
506
+ "answer": "B",
507
+ "id": 38
508
+ },
509
+ {
510
+ "video": "up/horse.mp4",
511
+ "category": "up",
512
+ "question": "In which direction is the object moving in this video?",
513
+ "options": [
514
+ "The horse is moving up",
515
+ "The horse is moving down",
516
+ "The horse is moving left",
517
+ "The horse is moving right"
518
+ ],
519
+ "answer": "A",
520
+ "id": 39
521
+ },
522
+ {
523
+ "video": "down/bicycle.mp4",
524
+ "category": "down",
525
+ "question": "In which direction is the object moving in this video?",
526
+ "options": [
527
+ "The bicycle is moving up",
528
+ "The bicycle is moving down",
529
+ "The bicycle is moving left",
530
+ "The bicycle is moving right"
531
+ ],
532
+ "answer": "B",
533
+ "id": 40
534
+ },
535
+ {
536
+ "video": "up/laptop.mp4",
537
+ "category": "up",
538
+ "question": "In which direction is the object moving in this video?",
539
+ "options": [
540
+ "The laptop is moving up",
541
+ "The laptop is moving down",
542
+ "The laptop is moving left",
543
+ "The laptop is moving right"
544
+ ],
545
+ "answer": "A",
546
+ "id": 41
547
+ },
548
+ {
549
+ "video": "left/bicycle.mp4",
550
+ "category": "left",
551
+ "question": "In which direction is the object moving in this video?",
552
+ "options": [
553
+ "The bicycle is moving up",
554
+ "The bicycle is moving down",
555
+ "The bicycle is moving left",
556
+ "The bicycle is moving right"
557
+ ],
558
+ "answer": "C",
559
+ "id": 42
560
+ },
561
+ {
562
+ "video": "right/duck.mp4",
563
+ "category": "right",
564
+ "question": "In which direction is the object moving in this video?",
565
+ "options": [
566
+ "The duck is moving up",
567
+ "The duck is moving down",
568
+ "The duck is moving left",
569
+ "The duck is moving right"
570
+ ],
571
+ "answer": "D",
572
+ "id": 43
573
+ },
574
+ {
575
+ "video": "down/sphere.mp4",
576
+ "category": "down",
577
+ "question": "In which direction is the object moving in this video?",
578
+ "options": [
579
+ "The sphere is moving up",
580
+ "The sphere is moving down",
581
+ "The sphere is moving left",
582
+ "The sphere is moving right"
583
+ ],
584
+ "answer": "B",
585
+ "id": 44
586
+ },
587
+ {
588
+ "video": "left/chair.mp4",
589
+ "category": "left",
590
+ "question": "In which direction is the object moving in this video?",
591
+ "options": [
592
+ "The chair is moving up",
593
+ "The chair is moving down",
594
+ "The chair is moving left",
595
+ "The chair is moving right"
596
+ ],
597
+ "answer": "C",
598
+ "id": 45
599
+ },
600
+ {
601
+ "video": "right/bench.mp4",
602
+ "category": "right",
603
+ "question": "In which direction is the object moving in this video?",
604
+ "options": [
605
+ "The bench is moving up",
606
+ "The bench is moving down",
607
+ "The bench is moving left",
608
+ "The bench is moving right"
609
+ ],
610
+ "answer": "D",
611
+ "id": 46
612
+ },
613
+ {
614
+ "video": "right/sphere.mp4",
615
+ "category": "right",
616
+ "question": "In which direction is the object moving in this video?",
617
+ "options": [
618
+ "The sphere is moving up",
619
+ "The sphere is moving down",
620
+ "The sphere is moving left",
621
+ "The sphere is moving right"
622
+ ],
623
+ "answer": "D",
624
+ "id": 47
625
+ },
626
+ {
627
+ "video": "down/duck.mp4",
628
+ "category": "down",
629
+ "question": "In which direction is the object moving in this video?",
630
+ "options": [
631
+ "The duck is moving up",
632
+ "The duck is moving down",
633
+ "The duck is moving left",
634
+ "The duck is moving right"
635
+ ],
636
+ "answer": "B",
637
+ "id": 48
638
+ },
639
+ {
640
+ "video": "right/dog.mp4",
641
+ "category": "right",
642
+ "question": "In which direction is the object moving in this video?",
643
+ "options": [
644
+ "The dog is moving up",
645
+ "The dog is moving down",
646
+ "The dog is moving left",
647
+ "The dog is moving right"
648
+ ],
649
+ "answer": "D",
650
+ "id": 49
651
+ },
652
+ {
653
+ "video": "left/sofa.mp4",
654
+ "category": "left",
655
+ "question": "In which direction is the object moving in this video?",
656
+ "options": [
657
+ "The sofa is moving up",
658
+ "The sofa is moving down",
659
+ "The sofa is moving left",
660
+ "The sofa is moving right"
661
+ ],
662
+ "answer": "C",
663
+ "id": 50
664
+ },
665
+ {
666
+ "video": "down/basketball.mp4",
667
+ "category": "down",
668
+ "question": "In which direction is the object moving in this video?",
669
+ "options": [
670
+ "The basketball is moving up",
671
+ "The basketball is moving down",
672
+ "The basketball is moving left",
673
+ "The basketball is moving right"
674
+ ],
675
+ "answer": "B",
676
+ "id": 51
677
+ }
678
+ ]
direction_obj_in_a_open_ended.json ADDED
@@ -0,0 +1,366 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "video": "left/basketball.mp4",
4
+ "category": "left",
5
+ "question": "In which direction is the object moving in this video?",
6
+ "answer": "The basketball is moving left",
7
+ "id": 0
8
+ },
9
+ {
10
+ "video": "up/duck.mp4",
11
+ "category": "up",
12
+ "question": "In which direction is the object moving in this video?",
13
+ "answer": "The duck is moving up",
14
+ "id": 1
15
+ },
16
+ {
17
+ "video": "right/car.mp4",
18
+ "category": "right",
19
+ "question": "In which direction is the object moving in this video?",
20
+ "answer": "The car is moving right",
21
+ "id": 2
22
+ },
23
+ {
24
+ "video": "up/sophia.mp4",
25
+ "category": "up",
26
+ "question": "In which direction is the object moving in this video?",
27
+ "answer": "The sophia is moving up",
28
+ "id": 3
29
+ },
30
+ {
31
+ "video": "down/chair.mp4",
32
+ "category": "down",
33
+ "question": "In which direction is the object moving in this video?",
34
+ "answer": "The chair is moving down",
35
+ "id": 4
36
+ },
37
+ {
38
+ "video": "down/horse.mp4",
39
+ "category": "down",
40
+ "question": "In which direction is the object moving in this video?",
41
+ "answer": "The horse is moving down",
42
+ "id": 5
43
+ },
44
+ {
45
+ "video": "up/dog.mp4",
46
+ "category": "up",
47
+ "question": "In which direction is the object moving in this video?",
48
+ "answer": "The dog is moving up",
49
+ "id": 6
50
+ },
51
+ {
52
+ "video": "down/laptop.mp4",
53
+ "category": "down",
54
+ "question": "In which direction is the object moving in this video?",
55
+ "answer": "The laptop is moving down",
56
+ "id": 7
57
+ },
58
+ {
59
+ "video": "right/bicycle.mp4",
60
+ "category": "right",
61
+ "question": "In which direction is the object moving in this video?",
62
+ "answer": "The bicycle is moving right",
63
+ "id": 8
64
+ },
65
+ {
66
+ "video": "left/duck.mp4",
67
+ "category": "left",
68
+ "question": "In which direction is the object moving in this video?",
69
+ "answer": "The duck is moving left",
70
+ "id": 9
71
+ },
72
+ {
73
+ "video": "up/sofa.mp4",
74
+ "category": "up",
75
+ "question": "In which direction is the object moving in this video?",
76
+ "answer": "The sofa is moving up",
77
+ "id": 10
78
+ },
79
+ {
80
+ "video": "up/basketball.mp4",
81
+ "category": "up",
82
+ "question": "In which direction is the object moving in this video?",
83
+ "answer": "The basketball is moving up",
84
+ "id": 11
85
+ },
86
+ {
87
+ "video": "left/bench.mp4",
88
+ "category": "left",
89
+ "question": "In which direction is the object moving in this video?",
90
+ "answer": "The bench is moving left",
91
+ "id": 12
92
+ },
93
+ {
94
+ "video": "left/dog.mp4",
95
+ "category": "left",
96
+ "question": "In which direction is the object moving in this video?",
97
+ "answer": "The dog is moving left",
98
+ "id": 13
99
+ },
100
+ {
101
+ "video": "right/basketball.mp4",
102
+ "category": "right",
103
+ "question": "In which direction is the object moving in this video?",
104
+ "answer": "The basketball is moving right",
105
+ "id": 14
106
+ },
107
+ {
108
+ "video": "right/sofa.mp4",
109
+ "category": "right",
110
+ "question": "In which direction is the object moving in this video?",
111
+ "answer": "The sofa is moving right",
112
+ "id": 15
113
+ },
114
+ {
115
+ "video": "down/car.mp4",
116
+ "category": "down",
117
+ "question": "In which direction is the object moving in this video?",
118
+ "answer": "The car is moving down",
119
+ "id": 16
120
+ },
121
+ {
122
+ "video": "up/sphere.mp4",
123
+ "category": "up",
124
+ "question": "In which direction is the object moving in this video?",
125
+ "answer": "The sphere is moving up",
126
+ "id": 17
127
+ },
128
+ {
129
+ "video": "right/sophia.mp4",
130
+ "category": "right",
131
+ "question": "In which direction is the object moving in this video?",
132
+ "answer": "The sophia is moving right",
133
+ "id": 18
134
+ },
135
+ {
136
+ "video": "down/dog.mp4",
137
+ "category": "down",
138
+ "question": "In which direction is the object moving in this video?",
139
+ "answer": "The dog is moving down",
140
+ "id": 19
141
+ },
142
+ {
143
+ "video": "right/horse.mp4",
144
+ "category": "right",
145
+ "question": "In which direction is the object moving in this video?",
146
+ "answer": "The horse is moving right",
147
+ "id": 20
148
+ },
149
+ {
150
+ "video": "up/chair.mp4",
151
+ "category": "up",
152
+ "question": "In which direction is the object moving in this video?",
153
+ "answer": "The chair is moving up",
154
+ "id": 21
155
+ },
156
+ {
157
+ "video": "right/laptop.mp4",
158
+ "category": "right",
159
+ "question": "In which direction is the object moving in this video?",
160
+ "answer": "The laptop is moving right",
161
+ "id": 22
162
+ },
163
+ {
164
+ "video": "left/car.mp4",
165
+ "category": "left",
166
+ "question": "In which direction is the object moving in this video?",
167
+ "answer": "The car is moving left",
168
+ "id": 23
169
+ },
170
+ {
171
+ "video": "up/bicycle.mp4",
172
+ "category": "up",
173
+ "question": "In which direction is the object moving in this video?",
174
+ "answer": "The bicycle is moving up",
175
+ "id": 24
176
+ },
177
+ {
178
+ "video": "up/bed.mp4",
179
+ "category": "up",
180
+ "question": "In which direction is the object moving in this video?",
181
+ "answer": "The bed is moving up",
182
+ "id": 25
183
+ },
184
+ {
185
+ "video": "down/sophia.mp4",
186
+ "category": "down",
187
+ "question": "In which direction is the object moving in this video?",
188
+ "answer": "The sophia is moving down",
189
+ "id": 26
190
+ },
191
+ {
192
+ "video": "up/bench.mp4",
193
+ "category": "up",
194
+ "question": "In which direction is the object moving in this video?",
195
+ "answer": "The bench is moving up",
196
+ "id": 27
197
+ },
198
+ {
199
+ "video": "left/sphere.mp4",
200
+ "category": "left",
201
+ "question": "In which direction is the object moving in this video?",
202
+ "answer": "The sphere is moving left",
203
+ "id": 28
204
+ },
205
+ {
206
+ "video": "left/sophia.mp4",
207
+ "category": "left",
208
+ "question": "In which direction is the object moving in this video?",
209
+ "answer": "The sophia is moving left",
210
+ "id": 29
211
+ },
212
+ {
213
+ "video": "up/car.mp4",
214
+ "category": "up",
215
+ "question": "In which direction is the object moving in this video?",
216
+ "answer": "The car is moving up",
217
+ "id": 30
218
+ },
219
+ {
220
+ "video": "down/bed.mp4",
221
+ "category": "down",
222
+ "question": "In which direction is the object moving in this video?",
223
+ "answer": "The bed is moving down",
224
+ "id": 31
225
+ },
226
+ {
227
+ "video": "down/sofa.mp4",
228
+ "category": "down",
229
+ "question": "In which direction is the object moving in this video?",
230
+ "answer": "The sofa is moving down",
231
+ "id": 32
232
+ },
233
+ {
234
+ "video": "right/chair.mp4",
235
+ "category": "right",
236
+ "question": "In which direction is the object moving in this video?",
237
+ "answer": "The chair is moving right",
238
+ "id": 33
239
+ },
240
+ {
241
+ "video": "left/bed.mp4",
242
+ "category": "left",
243
+ "question": "In which direction is the object moving in this video?",
244
+ "answer": "The bed is moving left",
245
+ "id": 34
246
+ },
247
+ {
248
+ "video": "right/bed.mp4",
249
+ "category": "right",
250
+ "question": "In which direction is the object moving in this video?",
251
+ "answer": "The bed is moving right",
252
+ "id": 35
253
+ },
254
+ {
255
+ "video": "left/horse.mp4",
256
+ "category": "left",
257
+ "question": "In which direction is the object moving in this video?",
258
+ "answer": "The horse is moving left",
259
+ "id": 36
260
+ },
261
+ {
262
+ "video": "left/laptop.mp4",
263
+ "category": "left",
264
+ "question": "In which direction is the object moving in this video?",
265
+ "answer": "The laptop is moving left",
266
+ "id": 37
267
+ },
268
+ {
269
+ "video": "down/bench.mp4",
270
+ "category": "down",
271
+ "question": "In which direction is the object moving in this video?",
272
+ "answer": "The bench is moving down",
273
+ "id": 38
274
+ },
275
+ {
276
+ "video": "up/horse.mp4",
277
+ "category": "up",
278
+ "question": "In which direction is the object moving in this video?",
279
+ "answer": "The horse is moving up",
280
+ "id": 39
281
+ },
282
+ {
283
+ "video": "down/bicycle.mp4",
284
+ "category": "down",
285
+ "question": "In which direction is the object moving in this video?",
286
+ "answer": "The bicycle is moving down",
287
+ "id": 40
288
+ },
289
+ {
290
+ "video": "up/laptop.mp4",
291
+ "category": "up",
292
+ "question": "In which direction is the object moving in this video?",
293
+ "answer": "The laptop is moving up",
294
+ "id": 41
295
+ },
296
+ {
297
+ "video": "left/bicycle.mp4",
298
+ "category": "left",
299
+ "question": "In which direction is the object moving in this video?",
300
+ "answer": "The bicycle is moving left",
301
+ "id": 42
302
+ },
303
+ {
304
+ "video": "right/duck.mp4",
305
+ "category": "right",
306
+ "question": "In which direction is the object moving in this video?",
307
+ "answer": "The duck is moving right",
308
+ "id": 43
309
+ },
310
+ {
311
+ "video": "down/sphere.mp4",
312
+ "category": "down",
313
+ "question": "In which direction is the object moving in this video?",
314
+ "answer": "The sphere is moving down",
315
+ "id": 44
316
+ },
317
+ {
318
+ "video": "left/chair.mp4",
319
+ "category": "left",
320
+ "question": "In which direction is the object moving in this video?",
321
+ "answer": "The chair is moving left",
322
+ "id": 45
323
+ },
324
+ {
325
+ "video": "right/bench.mp4",
326
+ "category": "right",
327
+ "question": "In which direction is the object moving in this video?",
328
+ "answer": "The bench is moving right",
329
+ "id": 46
330
+ },
331
+ {
332
+ "video": "right/sphere.mp4",
333
+ "category": "right",
334
+ "question": "In which direction is the object moving in this video?",
335
+ "answer": "The sphere is moving right",
336
+ "id": 47
337
+ },
338
+ {
339
+ "video": "down/duck.mp4",
340
+ "category": "down",
341
+ "question": "In which direction is the object moving in this video?",
342
+ "answer": "The duck is moving down",
343
+ "id": 48
344
+ },
345
+ {
346
+ "video": "right/dog.mp4",
347
+ "category": "right",
348
+ "question": "In which direction is the object moving in this video?",
349
+ "answer": "The dog is moving right",
350
+ "id": 49
351
+ },
352
+ {
353
+ "video": "left/sofa.mp4",
354
+ "category": "left",
355
+ "question": "In which direction is the object moving in this video?",
356
+ "answer": "The sofa is moving left",
357
+ "id": 50
358
+ },
359
+ {
360
+ "video": "down/basketball.mp4",
361
+ "category": "down",
362
+ "question": "In which direction is the object moving in this video?",
363
+ "answer": "The basketball is moving down",
364
+ "id": 51
365
+ }
366
+ ]
direction_obj_in_q_close_ended.json ADDED
@@ -0,0 +1,678 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "video": "down/basketball.mp4",
4
+ "category": "down",
5
+ "question": "In which direction is the basketball moving in this video?",
6
+ "options": [
7
+ "Up",
8
+ "Down",
9
+ "Left",
10
+ "Right"
11
+ ],
12
+ "answer": "B",
13
+ "id": 0
14
+ },
15
+ {
16
+ "video": "right/car.mp4",
17
+ "category": "right",
18
+ "question": "In which direction is the car moving in this video?",
19
+ "options": [
20
+ "Up",
21
+ "Down",
22
+ "Left",
23
+ "Right"
24
+ ],
25
+ "answer": "D",
26
+ "id": 1
27
+ },
28
+ {
29
+ "video": "down/bench.mp4",
30
+ "category": "down",
31
+ "question": "In which direction is the bench moving in this video?",
32
+ "options": [
33
+ "Up",
34
+ "Down",
35
+ "Left",
36
+ "Right"
37
+ ],
38
+ "answer": "B",
39
+ "id": 2
40
+ },
41
+ {
42
+ "video": "up/laptop.mp4",
43
+ "category": "up",
44
+ "question": "In which direction is the laptop moving in this video?",
45
+ "options": [
46
+ "Up",
47
+ "Down",
48
+ "Left",
49
+ "Right"
50
+ ],
51
+ "answer": "A",
52
+ "id": 3
53
+ },
54
+ {
55
+ "video": "down/sphere.mp4",
56
+ "category": "down",
57
+ "question": "In which direction is the sphere moving in this video?",
58
+ "options": [
59
+ "Up",
60
+ "Down",
61
+ "Left",
62
+ "Right"
63
+ ],
64
+ "answer": "B",
65
+ "id": 4
66
+ },
67
+ {
68
+ "video": "right/duck.mp4",
69
+ "category": "right",
70
+ "question": "In which direction is the duck moving in this video?",
71
+ "options": [
72
+ "Up",
73
+ "Down",
74
+ "Left",
75
+ "Right"
76
+ ],
77
+ "answer": "D",
78
+ "id": 5
79
+ },
80
+ {
81
+ "video": "up/bed.mp4",
82
+ "category": "up",
83
+ "question": "In which direction is the bed moving in this video?",
84
+ "options": [
85
+ "Up",
86
+ "Down",
87
+ "Left",
88
+ "Right"
89
+ ],
90
+ "answer": "A",
91
+ "id": 6
92
+ },
93
+ {
94
+ "video": "up/basketball.mp4",
95
+ "category": "up",
96
+ "question": "In which direction is the basketball moving in this video?",
97
+ "options": [
98
+ "Up",
99
+ "Down",
100
+ "Left",
101
+ "Right"
102
+ ],
103
+ "answer": "A",
104
+ "id": 7
105
+ },
106
+ {
107
+ "video": "down/bicycle.mp4",
108
+ "category": "down",
109
+ "question": "In which direction is the bicycle moving in this video?",
110
+ "options": [
111
+ "Up",
112
+ "Down",
113
+ "Left",
114
+ "Right"
115
+ ],
116
+ "answer": "B",
117
+ "id": 8
118
+ },
119
+ {
120
+ "video": "up/bicycle.mp4",
121
+ "category": "up",
122
+ "question": "In which direction is the bicycle moving in this video?",
123
+ "options": [
124
+ "Up",
125
+ "Down",
126
+ "Left",
127
+ "Right"
128
+ ],
129
+ "answer": "A",
130
+ "id": 9
131
+ },
132
+ {
133
+ "video": "left/basketball.mp4",
134
+ "category": "left",
135
+ "question": "In which direction is the basketball moving in this video?",
136
+ "options": [
137
+ "Up",
138
+ "Down",
139
+ "Left",
140
+ "Right"
141
+ ],
142
+ "answer": "C",
143
+ "id": 10
144
+ },
145
+ {
146
+ "video": "left/duck.mp4",
147
+ "category": "left",
148
+ "question": "In which direction is the duck moving in this video?",
149
+ "options": [
150
+ "Up",
151
+ "Down",
152
+ "Left",
153
+ "Right"
154
+ ],
155
+ "answer": "C",
156
+ "id": 11
157
+ },
158
+ {
159
+ "video": "left/chair.mp4",
160
+ "category": "left",
161
+ "question": "In which direction is the chair moving in this video?",
162
+ "options": [
163
+ "Up",
164
+ "Down",
165
+ "Left",
166
+ "Right"
167
+ ],
168
+ "answer": "C",
169
+ "id": 12
170
+ },
171
+ {
172
+ "video": "right/bicycle.mp4",
173
+ "category": "right",
174
+ "question": "In which direction is the bicycle moving in this video?",
175
+ "options": [
176
+ "Up",
177
+ "Down",
178
+ "Left",
179
+ "Right"
180
+ ],
181
+ "answer": "D",
182
+ "id": 13
183
+ },
184
+ {
185
+ "video": "left/bench.mp4",
186
+ "category": "left",
187
+ "question": "In which direction is the bench moving in this video?",
188
+ "options": [
189
+ "Up",
190
+ "Down",
191
+ "Left",
192
+ "Right"
193
+ ],
194
+ "answer": "C",
195
+ "id": 14
196
+ },
197
+ {
198
+ "video": "left/sophia.mp4",
199
+ "category": "left",
200
+ "question": "In which direction is the sophia moving in this video?",
201
+ "options": [
202
+ "Up",
203
+ "Down",
204
+ "Left",
205
+ "Right"
206
+ ],
207
+ "answer": "C",
208
+ "id": 15
209
+ },
210
+ {
211
+ "video": "right/sofa.mp4",
212
+ "category": "right",
213
+ "question": "In which direction is the sofa moving in this video?",
214
+ "options": [
215
+ "Up",
216
+ "Down",
217
+ "Left",
218
+ "Right"
219
+ ],
220
+ "answer": "D",
221
+ "id": 16
222
+ },
223
+ {
224
+ "video": "up/duck.mp4",
225
+ "category": "up",
226
+ "question": "In which direction is the duck moving in this video?",
227
+ "options": [
228
+ "Up",
229
+ "Down",
230
+ "Left",
231
+ "Right"
232
+ ],
233
+ "answer": "A",
234
+ "id": 17
235
+ },
236
+ {
237
+ "video": "left/horse.mp4",
238
+ "category": "left",
239
+ "question": "In which direction is the horse moving in this video?",
240
+ "options": [
241
+ "Up",
242
+ "Down",
243
+ "Left",
244
+ "Right"
245
+ ],
246
+ "answer": "C",
247
+ "id": 18
248
+ },
249
+ {
250
+ "video": "left/sphere.mp4",
251
+ "category": "left",
252
+ "question": "In which direction is the sphere moving in this video?",
253
+ "options": [
254
+ "Up",
255
+ "Down",
256
+ "Left",
257
+ "Right"
258
+ ],
259
+ "answer": "C",
260
+ "id": 19
261
+ },
262
+ {
263
+ "video": "left/dog.mp4",
264
+ "category": "left",
265
+ "question": "In which direction is the dog moving in this video?",
266
+ "options": [
267
+ "Up",
268
+ "Down",
269
+ "Left",
270
+ "Right"
271
+ ],
272
+ "answer": "C",
273
+ "id": 20
274
+ },
275
+ {
276
+ "video": "down/dog.mp4",
277
+ "category": "down",
278
+ "question": "In which direction is the dog moving in this video?",
279
+ "options": [
280
+ "Up",
281
+ "Down",
282
+ "Left",
283
+ "Right"
284
+ ],
285
+ "answer": "B",
286
+ "id": 21
287
+ },
288
+ {
289
+ "video": "right/bench.mp4",
290
+ "category": "right",
291
+ "question": "In which direction is the bench moving in this video?",
292
+ "options": [
293
+ "Up",
294
+ "Down",
295
+ "Left",
296
+ "Right"
297
+ ],
298
+ "answer": "D",
299
+ "id": 22
300
+ },
301
+ {
302
+ "video": "down/duck.mp4",
303
+ "category": "down",
304
+ "question": "In which direction is the duck moving in this video?",
305
+ "options": [
306
+ "Up",
307
+ "Down",
308
+ "Left",
309
+ "Right"
310
+ ],
311
+ "answer": "B",
312
+ "id": 23
313
+ },
314
+ {
315
+ "video": "left/bed.mp4",
316
+ "category": "left",
317
+ "question": "In which direction is the bed moving in this video?",
318
+ "options": [
319
+ "Up",
320
+ "Down",
321
+ "Left",
322
+ "Right"
323
+ ],
324
+ "answer": "C",
325
+ "id": 24
326
+ },
327
+ {
328
+ "video": "down/laptop.mp4",
329
+ "category": "down",
330
+ "question": "In which direction is the laptop moving in this video?",
331
+ "options": [
332
+ "Up",
333
+ "Down",
334
+ "Left",
335
+ "Right"
336
+ ],
337
+ "answer": "B",
338
+ "id": 25
339
+ },
340
+ {
341
+ "video": "up/horse.mp4",
342
+ "category": "up",
343
+ "question": "In which direction is the horse moving in this video?",
344
+ "options": [
345
+ "Up",
346
+ "Down",
347
+ "Left",
348
+ "Right"
349
+ ],
350
+ "answer": "A",
351
+ "id": 26
352
+ },
353
+ {
354
+ "video": "down/horse.mp4",
355
+ "category": "down",
356
+ "question": "In which direction is the horse moving in this video?",
357
+ "options": [
358
+ "Up",
359
+ "Down",
360
+ "Left",
361
+ "Right"
362
+ ],
363
+ "answer": "B",
364
+ "id": 27
365
+ },
366
+ {
367
+ "video": "right/chair.mp4",
368
+ "category": "right",
369
+ "question": "In which direction is the chair moving in this video?",
370
+ "options": [
371
+ "Up",
372
+ "Down",
373
+ "Left",
374
+ "Right"
375
+ ],
376
+ "answer": "D",
377
+ "id": 28
378
+ },
379
+ {
380
+ "video": "left/car.mp4",
381
+ "category": "left",
382
+ "question": "In which direction is the car moving in this video?",
383
+ "options": [
384
+ "Up",
385
+ "Down",
386
+ "Left",
387
+ "Right"
388
+ ],
389
+ "answer": "C",
390
+ "id": 29
391
+ },
392
+ {
393
+ "video": "up/sophia.mp4",
394
+ "category": "up",
395
+ "question": "In which direction is the sophia moving in this video?",
396
+ "options": [
397
+ "Up",
398
+ "Down",
399
+ "Left",
400
+ "Right"
401
+ ],
402
+ "answer": "A",
403
+ "id": 30
404
+ },
405
+ {
406
+ "video": "up/sofa.mp4",
407
+ "category": "up",
408
+ "question": "In which direction is the sofa moving in this video?",
409
+ "options": [
410
+ "Up",
411
+ "Down",
412
+ "Left",
413
+ "Right"
414
+ ],
415
+ "answer": "A",
416
+ "id": 31
417
+ },
418
+ {
419
+ "video": "right/dog.mp4",
420
+ "category": "right",
421
+ "question": "In which direction is the dog moving in this video?",
422
+ "options": [
423
+ "Up",
424
+ "Down",
425
+ "Left",
426
+ "Right"
427
+ ],
428
+ "answer": "D",
429
+ "id": 32
430
+ },
431
+ {
432
+ "video": "left/bicycle.mp4",
433
+ "category": "left",
434
+ "question": "In which direction is the bicycle moving in this video?",
435
+ "options": [
436
+ "Up",
437
+ "Down",
438
+ "Left",
439
+ "Right"
440
+ ],
441
+ "answer": "C",
442
+ "id": 33
443
+ },
444
+ {
445
+ "video": "down/car.mp4",
446
+ "category": "down",
447
+ "question": "In which direction is the car moving in this video?",
448
+ "options": [
449
+ "Up",
450
+ "Down",
451
+ "Left",
452
+ "Right"
453
+ ],
454
+ "answer": "B",
455
+ "id": 34
456
+ },
457
+ {
458
+ "video": "right/sphere.mp4",
459
+ "category": "right",
460
+ "question": "In which direction is the sphere moving in this video?",
461
+ "options": [
462
+ "Up",
463
+ "Down",
464
+ "Left",
465
+ "Right"
466
+ ],
467
+ "answer": "D",
468
+ "id": 35
469
+ },
470
+ {
471
+ "video": "up/dog.mp4",
472
+ "category": "up",
473
+ "question": "In which direction is the dog moving in this video?",
474
+ "options": [
475
+ "Up",
476
+ "Down",
477
+ "Left",
478
+ "Right"
479
+ ],
480
+ "answer": "A",
481
+ "id": 36
482
+ },
483
+ {
484
+ "video": "right/horse.mp4",
485
+ "category": "right",
486
+ "question": "In which direction is the horse moving in this video?",
487
+ "options": [
488
+ "Up",
489
+ "Down",
490
+ "Left",
491
+ "Right"
492
+ ],
493
+ "answer": "D",
494
+ "id": 37
495
+ },
496
+ {
497
+ "video": "right/sophia.mp4",
498
+ "category": "right",
499
+ "question": "In which direction is the sophia moving in this video?",
500
+ "options": [
501
+ "Up",
502
+ "Down",
503
+ "Left",
504
+ "Right"
505
+ ],
506
+ "answer": "D",
507
+ "id": 38
508
+ },
509
+ {
510
+ "video": "right/laptop.mp4",
511
+ "category": "right",
512
+ "question": "In which direction is the laptop moving in this video?",
513
+ "options": [
514
+ "Up",
515
+ "Down",
516
+ "Left",
517
+ "Right"
518
+ ],
519
+ "answer": "D",
520
+ "id": 39
521
+ },
522
+ {
523
+ "video": "down/bed.mp4",
524
+ "category": "down",
525
+ "question": "In which direction is the bed moving in this video?",
526
+ "options": [
527
+ "Up",
528
+ "Down",
529
+ "Left",
530
+ "Right"
531
+ ],
532
+ "answer": "B",
533
+ "id": 40
534
+ },
535
+ {
536
+ "video": "up/bench.mp4",
537
+ "category": "up",
538
+ "question": "In which direction is the bench moving in this video?",
539
+ "options": [
540
+ "Up",
541
+ "Down",
542
+ "Left",
543
+ "Right"
544
+ ],
545
+ "answer": "A",
546
+ "id": 41
547
+ },
548
+ {
549
+ "video": "up/car.mp4",
550
+ "category": "up",
551
+ "question": "In which direction is the car moving in this video?",
552
+ "options": [
553
+ "Up",
554
+ "Down",
555
+ "Left",
556
+ "Right"
557
+ ],
558
+ "answer": "A",
559
+ "id": 42
560
+ },
561
+ {
562
+ "video": "up/sphere.mp4",
563
+ "category": "up",
564
+ "question": "In which direction is the sphere moving in this video?",
565
+ "options": [
566
+ "Up",
567
+ "Down",
568
+ "Left",
569
+ "Right"
570
+ ],
571
+ "answer": "A",
572
+ "id": 43
573
+ },
574
+ {
575
+ "video": "left/sofa.mp4",
576
+ "category": "left",
577
+ "question": "In which direction is the sofa moving in this video?",
578
+ "options": [
579
+ "Up",
580
+ "Down",
581
+ "Left",
582
+ "Right"
583
+ ],
584
+ "answer": "C",
585
+ "id": 44
586
+ },
587
+ {
588
+ "video": "down/sofa.mp4",
589
+ "category": "down",
590
+ "question": "In which direction is the sofa moving in this video?",
591
+ "options": [
592
+ "Up",
593
+ "Down",
594
+ "Left",
595
+ "Right"
596
+ ],
597
+ "answer": "B",
598
+ "id": 45
599
+ },
600
+ {
601
+ "video": "right/basketball.mp4",
602
+ "category": "right",
603
+ "question": "In which direction is the basketball moving in this video?",
604
+ "options": [
605
+ "Up",
606
+ "Down",
607
+ "Left",
608
+ "Right"
609
+ ],
610
+ "answer": "D",
611
+ "id": 46
612
+ },
613
+ {
614
+ "video": "right/bed.mp4",
615
+ "category": "right",
616
+ "question": "In which direction is the bed moving in this video?",
617
+ "options": [
618
+ "Up",
619
+ "Down",
620
+ "Left",
621
+ "Right"
622
+ ],
623
+ "answer": "D",
624
+ "id": 47
625
+ },
626
+ {
627
+ "video": "down/chair.mp4",
628
+ "category": "down",
629
+ "question": "In which direction is the chair moving in this video?",
630
+ "options": [
631
+ "Up",
632
+ "Down",
633
+ "Left",
634
+ "Right"
635
+ ],
636
+ "answer": "B",
637
+ "id": 48
638
+ },
639
+ {
640
+ "video": "left/laptop.mp4",
641
+ "category": "left",
642
+ "question": "In which direction is the laptop moving in this video?",
643
+ "options": [
644
+ "Up",
645
+ "Down",
646
+ "Left",
647
+ "Right"
648
+ ],
649
+ "answer": "C",
650
+ "id": 49
651
+ },
652
+ {
653
+ "video": "up/chair.mp4",
654
+ "category": "up",
655
+ "question": "In which direction is the chair moving in this video?",
656
+ "options": [
657
+ "Up",
658
+ "Down",
659
+ "Left",
660
+ "Right"
661
+ ],
662
+ "answer": "A",
663
+ "id": 50
664
+ },
665
+ {
666
+ "video": "down/sophia.mp4",
667
+ "category": "down",
668
+ "question": "In which direction is the sophia moving in this video?",
669
+ "options": [
670
+ "Up",
671
+ "Down",
672
+ "Left",
673
+ "Right"
674
+ ],
675
+ "answer": "B",
676
+ "id": 51
677
+ }
678
+ ]
direction_obj_in_q_open_ended.json ADDED
@@ -0,0 +1,366 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "video": "down/basketball.mp4",
4
+ "category": "down",
5
+ "question": "In which direction is the basketball moving in this video?",
6
+ "answer": "Down",
7
+ "id": 0
8
+ },
9
+ {
10
+ "video": "right/car.mp4",
11
+ "category": "right",
12
+ "question": "In which direction is the car moving in this video?",
13
+ "answer": "Right",
14
+ "id": 1
15
+ },
16
+ {
17
+ "video": "down/bench.mp4",
18
+ "category": "down",
19
+ "question": "In which direction is the bench moving in this video?",
20
+ "answer": "Down",
21
+ "id": 2
22
+ },
23
+ {
24
+ "video": "up/laptop.mp4",
25
+ "category": "up",
26
+ "question": "In which direction is the laptop moving in this video?",
27
+ "answer": "Up",
28
+ "id": 3
29
+ },
30
+ {
31
+ "video": "down/sphere.mp4",
32
+ "category": "down",
33
+ "question": "In which direction is the sphere moving in this video?",
34
+ "answer": "Down",
35
+ "id": 4
36
+ },
37
+ {
38
+ "video": "right/duck.mp4",
39
+ "category": "right",
40
+ "question": "In which direction is the duck moving in this video?",
41
+ "answer": "Right",
42
+ "id": 5
43
+ },
44
+ {
45
+ "video": "up/bed.mp4",
46
+ "category": "up",
47
+ "question": "In which direction is the bed moving in this video?",
48
+ "answer": "Up",
49
+ "id": 6
50
+ },
51
+ {
52
+ "video": "up/basketball.mp4",
53
+ "category": "up",
54
+ "question": "In which direction is the basketball moving in this video?",
55
+ "answer": "Up",
56
+ "id": 7
57
+ },
58
+ {
59
+ "video": "down/bicycle.mp4",
60
+ "category": "down",
61
+ "question": "In which direction is the bicycle moving in this video?",
62
+ "answer": "Down",
63
+ "id": 8
64
+ },
65
+ {
66
+ "video": "up/bicycle.mp4",
67
+ "category": "up",
68
+ "question": "In which direction is the bicycle moving in this video?",
69
+ "answer": "Up",
70
+ "id": 9
71
+ },
72
+ {
73
+ "video": "left/basketball.mp4",
74
+ "category": "left",
75
+ "question": "In which direction is the basketball moving in this video?",
76
+ "answer": "Left",
77
+ "id": 10
78
+ },
79
+ {
80
+ "video": "left/duck.mp4",
81
+ "category": "left",
82
+ "question": "In which direction is the duck moving in this video?",
83
+ "answer": "Left",
84
+ "id": 11
85
+ },
86
+ {
87
+ "video": "left/chair.mp4",
88
+ "category": "left",
89
+ "question": "In which direction is the chair moving in this video?",
90
+ "answer": "Left",
91
+ "id": 12
92
+ },
93
+ {
94
+ "video": "right/bicycle.mp4",
95
+ "category": "right",
96
+ "question": "In which direction is the bicycle moving in this video?",
97
+ "answer": "Right",
98
+ "id": 13
99
+ },
100
+ {
101
+ "video": "left/bench.mp4",
102
+ "category": "left",
103
+ "question": "In which direction is the bench moving in this video?",
104
+ "answer": "Left",
105
+ "id": 14
106
+ },
107
+ {
108
+ "video": "left/sophia.mp4",
109
+ "category": "left",
110
+ "question": "In which direction is the sophia moving in this video?",
111
+ "answer": "Left",
112
+ "id": 15
113
+ },
114
+ {
115
+ "video": "right/sofa.mp4",
116
+ "category": "right",
117
+ "question": "In which direction is the sofa moving in this video?",
118
+ "answer": "Right",
119
+ "id": 16
120
+ },
121
+ {
122
+ "video": "up/duck.mp4",
123
+ "category": "up",
124
+ "question": "In which direction is the duck moving in this video?",
125
+ "answer": "Up",
126
+ "id": 17
127
+ },
128
+ {
129
+ "video": "left/horse.mp4",
130
+ "category": "left",
131
+ "question": "In which direction is the horse moving in this video?",
132
+ "answer": "Left",
133
+ "id": 18
134
+ },
135
+ {
136
+ "video": "left/sphere.mp4",
137
+ "category": "left",
138
+ "question": "In which direction is the sphere moving in this video?",
139
+ "answer": "Left",
140
+ "id": 19
141
+ },
142
+ {
143
+ "video": "left/dog.mp4",
144
+ "category": "left",
145
+ "question": "In which direction is the dog moving in this video?",
146
+ "answer": "Left",
147
+ "id": 20
148
+ },
149
+ {
150
+ "video": "down/dog.mp4",
151
+ "category": "down",
152
+ "question": "In which direction is the dog moving in this video?",
153
+ "answer": "Down",
154
+ "id": 21
155
+ },
156
+ {
157
+ "video": "right/bench.mp4",
158
+ "category": "right",
159
+ "question": "In which direction is the bench moving in this video?",
160
+ "answer": "Right",
161
+ "id": 22
162
+ },
163
+ {
164
+ "video": "down/duck.mp4",
165
+ "category": "down",
166
+ "question": "In which direction is the duck moving in this video?",
167
+ "answer": "Down",
168
+ "id": 23
169
+ },
170
+ {
171
+ "video": "left/bed.mp4",
172
+ "category": "left",
173
+ "question": "In which direction is the bed moving in this video?",
174
+ "answer": "Left",
175
+ "id": 24
176
+ },
177
+ {
178
+ "video": "down/laptop.mp4",
179
+ "category": "down",
180
+ "question": "In which direction is the laptop moving in this video?",
181
+ "answer": "Down",
182
+ "id": 25
183
+ },
184
+ {
185
+ "video": "up/horse.mp4",
186
+ "category": "up",
187
+ "question": "In which direction is the horse moving in this video?",
188
+ "answer": "Up",
189
+ "id": 26
190
+ },
191
+ {
192
+ "video": "down/horse.mp4",
193
+ "category": "down",
194
+ "question": "In which direction is the horse moving in this video?",
195
+ "answer": "Down",
196
+ "id": 27
197
+ },
198
+ {
199
+ "video": "right/chair.mp4",
200
+ "category": "right",
201
+ "question": "In which direction is the chair moving in this video?",
202
+ "answer": "Right",
203
+ "id": 28
204
+ },
205
+ {
206
+ "video": "left/car.mp4",
207
+ "category": "left",
208
+ "question": "In which direction is the car moving in this video?",
209
+ "answer": "Left",
210
+ "id": 29
211
+ },
212
+ {
213
+ "video": "up/sophia.mp4",
214
+ "category": "up",
215
+ "question": "In which direction is the sophia moving in this video?",
216
+ "answer": "Up",
217
+ "id": 30
218
+ },
219
+ {
220
+ "video": "up/sofa.mp4",
221
+ "category": "up",
222
+ "question": "In which direction is the sofa moving in this video?",
223
+ "answer": "Up",
224
+ "id": 31
225
+ },
226
+ {
227
+ "video": "right/dog.mp4",
228
+ "category": "right",
229
+ "question": "In which direction is the dog moving in this video?",
230
+ "answer": "Right",
231
+ "id": 32
232
+ },
233
+ {
234
+ "video": "left/bicycle.mp4",
235
+ "category": "left",
236
+ "question": "In which direction is the bicycle moving in this video?",
237
+ "answer": "Left",
238
+ "id": 33
239
+ },
240
+ {
241
+ "video": "down/car.mp4",
242
+ "category": "down",
243
+ "question": "In which direction is the car moving in this video?",
244
+ "answer": "Down",
245
+ "id": 34
246
+ },
247
+ {
248
+ "video": "right/sphere.mp4",
249
+ "category": "right",
250
+ "question": "In which direction is the sphere moving in this video?",
251
+ "answer": "Right",
252
+ "id": 35
253
+ },
254
+ {
255
+ "video": "up/dog.mp4",
256
+ "category": "up",
257
+ "question": "In which direction is the dog moving in this video?",
258
+ "answer": "Up",
259
+ "id": 36
260
+ },
261
+ {
262
+ "video": "right/horse.mp4",
263
+ "category": "right",
264
+ "question": "In which direction is the horse moving in this video?",
265
+ "answer": "Right",
266
+ "id": 37
267
+ },
268
+ {
269
+ "video": "right/sophia.mp4",
270
+ "category": "right",
271
+ "question": "In which direction is the sophia moving in this video?",
272
+ "answer": "Right",
273
+ "id": 38
274
+ },
275
+ {
276
+ "video": "right/laptop.mp4",
277
+ "category": "right",
278
+ "question": "In which direction is the laptop moving in this video?",
279
+ "answer": "Right",
280
+ "id": 39
281
+ },
282
+ {
283
+ "video": "down/bed.mp4",
284
+ "category": "down",
285
+ "question": "In which direction is the bed moving in this video?",
286
+ "answer": "Down",
287
+ "id": 40
288
+ },
289
+ {
290
+ "video": "up/bench.mp4",
291
+ "category": "up",
292
+ "question": "In which direction is the bench moving in this video?",
293
+ "answer": "Up",
294
+ "id": 41
295
+ },
296
+ {
297
+ "video": "up/car.mp4",
298
+ "category": "up",
299
+ "question": "In which direction is the car moving in this video?",
300
+ "answer": "Up",
301
+ "id": 42
302
+ },
303
+ {
304
+ "video": "up/sphere.mp4",
305
+ "category": "up",
306
+ "question": "In which direction is the sphere moving in this video?",
307
+ "answer": "Up",
308
+ "id": 43
309
+ },
310
+ {
311
+ "video": "left/sofa.mp4",
312
+ "category": "left",
313
+ "question": "In which direction is the sofa moving in this video?",
314
+ "answer": "Left",
315
+ "id": 44
316
+ },
317
+ {
318
+ "video": "down/sofa.mp4",
319
+ "category": "down",
320
+ "question": "In which direction is the sofa moving in this video?",
321
+ "answer": "Down",
322
+ "id": 45
323
+ },
324
+ {
325
+ "video": "right/basketball.mp4",
326
+ "category": "right",
327
+ "question": "In which direction is the basketball moving in this video?",
328
+ "answer": "Right",
329
+ "id": 46
330
+ },
331
+ {
332
+ "video": "right/bed.mp4",
333
+ "category": "right",
334
+ "question": "In which direction is the bed moving in this video?",
335
+ "answer": "Right",
336
+ "id": 47
337
+ },
338
+ {
339
+ "video": "down/chair.mp4",
340
+ "category": "down",
341
+ "question": "In which direction is the chair moving in this video?",
342
+ "answer": "Down",
343
+ "id": 48
344
+ },
345
+ {
346
+ "video": "left/laptop.mp4",
347
+ "category": "left",
348
+ "question": "In which direction is the laptop moving in this video?",
349
+ "answer": "Left",
350
+ "id": 49
351
+ },
352
+ {
353
+ "video": "up/chair.mp4",
354
+ "category": "up",
355
+ "question": "In which direction is the chair moving in this video?",
356
+ "answer": "Up",
357
+ "id": 50
358
+ },
359
+ {
360
+ "video": "down/sophia.mp4",
361
+ "category": "down",
362
+ "question": "In which direction is the sophia moving in this video?",
363
+ "answer": "Down",
364
+ "id": 51
365
+ }
366
+ ]
direction_obj_in_qa_close_ended.json ADDED
@@ -0,0 +1,678 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "video": "right/sophia.mp4",
4
+ "category": "right",
5
+ "question": "In which direction is the sophia moving in this video?",
6
+ "options": [
7
+ "The sophia is moving up",
8
+ "The sophia is moving down",
9
+ "The sophia is moving left",
10
+ "The sophia is moving right"
11
+ ],
12
+ "answer": "D",
13
+ "id": 0
14
+ },
15
+ {
16
+ "video": "left/bench.mp4",
17
+ "category": "left",
18
+ "question": "In which direction is the bench moving in this video?",
19
+ "options": [
20
+ "The bench is moving up",
21
+ "The bench is moving down",
22
+ "The bench is moving left",
23
+ "The bench is moving right"
24
+ ],
25
+ "answer": "C",
26
+ "id": 1
27
+ },
28
+ {
29
+ "video": "up/chair.mp4",
30
+ "category": "up",
31
+ "question": "In which direction is the chair moving in this video?",
32
+ "options": [
33
+ "The chair is moving up",
34
+ "The chair is moving down",
35
+ "The chair is moving left",
36
+ "The chair is moving right"
37
+ ],
38
+ "answer": "A",
39
+ "id": 2
40
+ },
41
+ {
42
+ "video": "down/basketball.mp4",
43
+ "category": "down",
44
+ "question": "In which direction is the basketball moving in this video?",
45
+ "options": [
46
+ "The basketball is moving up",
47
+ "The basketball is moving down",
48
+ "The basketball is moving left",
49
+ "The basketball is moving right"
50
+ ],
51
+ "answer": "B",
52
+ "id": 3
53
+ },
54
+ {
55
+ "video": "left/sophia.mp4",
56
+ "category": "left",
57
+ "question": "In which direction is the sophia moving in this video?",
58
+ "options": [
59
+ "The sophia is moving up",
60
+ "The sophia is moving down",
61
+ "The sophia is moving left",
62
+ "The sophia is moving right"
63
+ ],
64
+ "answer": "C",
65
+ "id": 4
66
+ },
67
+ {
68
+ "video": "down/sophia.mp4",
69
+ "category": "down",
70
+ "question": "In which direction is the sophia moving in this video?",
71
+ "options": [
72
+ "The sophia is moving up",
73
+ "The sophia is moving down",
74
+ "The sophia is moving left",
75
+ "The sophia is moving right"
76
+ ],
77
+ "answer": "B",
78
+ "id": 5
79
+ },
80
+ {
81
+ "video": "down/laptop.mp4",
82
+ "category": "down",
83
+ "question": "In which direction is the laptop moving in this video?",
84
+ "options": [
85
+ "The laptop is moving up",
86
+ "The laptop is moving down",
87
+ "The laptop is moving left",
88
+ "The laptop is moving right"
89
+ ],
90
+ "answer": "B",
91
+ "id": 6
92
+ },
93
+ {
94
+ "video": "right/bicycle.mp4",
95
+ "category": "right",
96
+ "question": "In which direction is the bicycle moving in this video?",
97
+ "options": [
98
+ "The bicycle is moving up",
99
+ "The bicycle is moving down",
100
+ "The bicycle is moving left",
101
+ "The bicycle is moving right"
102
+ ],
103
+ "answer": "D",
104
+ "id": 7
105
+ },
106
+ {
107
+ "video": "left/bed.mp4",
108
+ "category": "left",
109
+ "question": "In which direction is the bed moving in this video?",
110
+ "options": [
111
+ "The bed is moving up",
112
+ "The bed is moving down",
113
+ "The bed is moving left",
114
+ "The bed is moving right"
115
+ ],
116
+ "answer": "C",
117
+ "id": 8
118
+ },
119
+ {
120
+ "video": "down/car.mp4",
121
+ "category": "down",
122
+ "question": "In which direction is the car moving in this video?",
123
+ "options": [
124
+ "The car is moving up",
125
+ "The car is moving down",
126
+ "The car is moving left",
127
+ "The car is moving right"
128
+ ],
129
+ "answer": "B",
130
+ "id": 9
131
+ },
132
+ {
133
+ "video": "down/bed.mp4",
134
+ "category": "down",
135
+ "question": "In which direction is the bed moving in this video?",
136
+ "options": [
137
+ "The bed is moving up",
138
+ "The bed is moving down",
139
+ "The bed is moving left",
140
+ "The bed is moving right"
141
+ ],
142
+ "answer": "B",
143
+ "id": 10
144
+ },
145
+ {
146
+ "video": "up/horse.mp4",
147
+ "category": "up",
148
+ "question": "In which direction is the horse moving in this video?",
149
+ "options": [
150
+ "The horse is moving up",
151
+ "The horse is moving down",
152
+ "The horse is moving left",
153
+ "The horse is moving right"
154
+ ],
155
+ "answer": "A",
156
+ "id": 11
157
+ },
158
+ {
159
+ "video": "down/horse.mp4",
160
+ "category": "down",
161
+ "question": "In which direction is the horse moving in this video?",
162
+ "options": [
163
+ "The horse is moving up",
164
+ "The horse is moving down",
165
+ "The horse is moving left",
166
+ "The horse is moving right"
167
+ ],
168
+ "answer": "B",
169
+ "id": 12
170
+ },
171
+ {
172
+ "video": "left/horse.mp4",
173
+ "category": "left",
174
+ "question": "In which direction is the horse moving in this video?",
175
+ "options": [
176
+ "The horse is moving up",
177
+ "The horse is moving down",
178
+ "The horse is moving left",
179
+ "The horse is moving right"
180
+ ],
181
+ "answer": "C",
182
+ "id": 13
183
+ },
184
+ {
185
+ "video": "right/horse.mp4",
186
+ "category": "right",
187
+ "question": "In which direction is the horse moving in this video?",
188
+ "options": [
189
+ "The horse is moving up",
190
+ "The horse is moving down",
191
+ "The horse is moving left",
192
+ "The horse is moving right"
193
+ ],
194
+ "answer": "D",
195
+ "id": 14
196
+ },
197
+ {
198
+ "video": "up/car.mp4",
199
+ "category": "up",
200
+ "question": "In which direction is the car moving in this video?",
201
+ "options": [
202
+ "The car is moving up",
203
+ "The car is moving down",
204
+ "The car is moving left",
205
+ "The car is moving right"
206
+ ],
207
+ "answer": "A",
208
+ "id": 15
209
+ },
210
+ {
211
+ "video": "left/chair.mp4",
212
+ "category": "left",
213
+ "question": "In which direction is the chair moving in this video?",
214
+ "options": [
215
+ "The chair is moving up",
216
+ "The chair is moving down",
217
+ "The chair is moving left",
218
+ "The chair is moving right"
219
+ ],
220
+ "answer": "C",
221
+ "id": 16
222
+ },
223
+ {
224
+ "video": "left/car.mp4",
225
+ "category": "left",
226
+ "question": "In which direction is the car moving in this video?",
227
+ "options": [
228
+ "The car is moving up",
229
+ "The car is moving down",
230
+ "The car is moving left",
231
+ "The car is moving right"
232
+ ],
233
+ "answer": "C",
234
+ "id": 17
235
+ },
236
+ {
237
+ "video": "right/bench.mp4",
238
+ "category": "right",
239
+ "question": "In which direction is the bench moving in this video?",
240
+ "options": [
241
+ "The bench is moving up",
242
+ "The bench is moving down",
243
+ "The bench is moving left",
244
+ "The bench is moving right"
245
+ ],
246
+ "answer": "D",
247
+ "id": 18
248
+ },
249
+ {
250
+ "video": "up/bench.mp4",
251
+ "category": "up",
252
+ "question": "In which direction is the bench moving in this video?",
253
+ "options": [
254
+ "The bench is moving up",
255
+ "The bench is moving down",
256
+ "The bench is moving left",
257
+ "The bench is moving right"
258
+ ],
259
+ "answer": "A",
260
+ "id": 19
261
+ },
262
+ {
263
+ "video": "down/chair.mp4",
264
+ "category": "down",
265
+ "question": "In which direction is the chair moving in this video?",
266
+ "options": [
267
+ "The chair is moving up",
268
+ "The chair is moving down",
269
+ "The chair is moving left",
270
+ "The chair is moving right"
271
+ ],
272
+ "answer": "B",
273
+ "id": 20
274
+ },
275
+ {
276
+ "video": "left/laptop.mp4",
277
+ "category": "left",
278
+ "question": "In which direction is the laptop moving in this video?",
279
+ "options": [
280
+ "The laptop is moving up",
281
+ "The laptop is moving down",
282
+ "The laptop is moving left",
283
+ "The laptop is moving right"
284
+ ],
285
+ "answer": "C",
286
+ "id": 21
287
+ },
288
+ {
289
+ "video": "up/bed.mp4",
290
+ "category": "up",
291
+ "question": "In which direction is the bed moving in this video?",
292
+ "options": [
293
+ "The bed is moving up",
294
+ "The bed is moving down",
295
+ "The bed is moving left",
296
+ "The bed is moving right"
297
+ ],
298
+ "answer": "A",
299
+ "id": 22
300
+ },
301
+ {
302
+ "video": "up/duck.mp4",
303
+ "category": "up",
304
+ "question": "In which direction is the duck moving in this video?",
305
+ "options": [
306
+ "The duck is moving up",
307
+ "The duck is moving down",
308
+ "The duck is moving left",
309
+ "The duck is moving right"
310
+ ],
311
+ "answer": "A",
312
+ "id": 23
313
+ },
314
+ {
315
+ "video": "left/sofa.mp4",
316
+ "category": "left",
317
+ "question": "In which direction is the sofa moving in this video?",
318
+ "options": [
319
+ "The sofa is moving up",
320
+ "The sofa is moving down",
321
+ "The sofa is moving left",
322
+ "The sofa is moving right"
323
+ ],
324
+ "answer": "C",
325
+ "id": 24
326
+ },
327
+ {
328
+ "video": "down/sphere.mp4",
329
+ "category": "down",
330
+ "question": "In which direction is the sphere moving in this video?",
331
+ "options": [
332
+ "The sphere is moving up",
333
+ "The sphere is moving down",
334
+ "The sphere is moving left",
335
+ "The sphere is moving right"
336
+ ],
337
+ "answer": "B",
338
+ "id": 25
339
+ },
340
+ {
341
+ "video": "left/basketball.mp4",
342
+ "category": "left",
343
+ "question": "In which direction is the basketball moving in this video?",
344
+ "options": [
345
+ "The basketball is moving up",
346
+ "The basketball is moving down",
347
+ "The basketball is moving left",
348
+ "The basketball is moving right"
349
+ ],
350
+ "answer": "C",
351
+ "id": 26
352
+ },
353
+ {
354
+ "video": "right/chair.mp4",
355
+ "category": "right",
356
+ "question": "In which direction is the chair moving in this video?",
357
+ "options": [
358
+ "The chair is moving up",
359
+ "The chair is moving down",
360
+ "The chair is moving left",
361
+ "The chair is moving right"
362
+ ],
363
+ "answer": "D",
364
+ "id": 27
365
+ },
366
+ {
367
+ "video": "up/bicycle.mp4",
368
+ "category": "up",
369
+ "question": "In which direction is the bicycle moving in this video?",
370
+ "options": [
371
+ "The bicycle is moving up",
372
+ "The bicycle is moving down",
373
+ "The bicycle is moving left",
374
+ "The bicycle is moving right"
375
+ ],
376
+ "answer": "A",
377
+ "id": 28
378
+ },
379
+ {
380
+ "video": "right/basketball.mp4",
381
+ "category": "right",
382
+ "question": "In which direction is the basketball moving in this video?",
383
+ "options": [
384
+ "The basketball is moving up",
385
+ "The basketball is moving down",
386
+ "The basketball is moving left",
387
+ "The basketball is moving right"
388
+ ],
389
+ "answer": "D",
390
+ "id": 29
391
+ },
392
+ {
393
+ "video": "down/bench.mp4",
394
+ "category": "down",
395
+ "question": "In which direction is the bench moving in this video?",
396
+ "options": [
397
+ "The bench is moving up",
398
+ "The bench is moving down",
399
+ "The bench is moving left",
400
+ "The bench is moving right"
401
+ ],
402
+ "answer": "B",
403
+ "id": 30
404
+ },
405
+ {
406
+ "video": "down/duck.mp4",
407
+ "category": "down",
408
+ "question": "In which direction is the duck moving in this video?",
409
+ "options": [
410
+ "The duck is moving up",
411
+ "The duck is moving down",
412
+ "The duck is moving left",
413
+ "The duck is moving right"
414
+ ],
415
+ "answer": "B",
416
+ "id": 31
417
+ },
418
+ {
419
+ "video": "right/sofa.mp4",
420
+ "category": "right",
421
+ "question": "In which direction is the sofa moving in this video?",
422
+ "options": [
423
+ "The sofa is moving up",
424
+ "The sofa is moving down",
425
+ "The sofa is moving left",
426
+ "The sofa is moving right"
427
+ ],
428
+ "answer": "D",
429
+ "id": 32
430
+ },
431
+ {
432
+ "video": "left/duck.mp4",
433
+ "category": "left",
434
+ "question": "In which direction is the duck moving in this video?",
435
+ "options": [
436
+ "The duck is moving up",
437
+ "The duck is moving down",
438
+ "The duck is moving left",
439
+ "The duck is moving right"
440
+ ],
441
+ "answer": "C",
442
+ "id": 33
443
+ },
444
+ {
445
+ "video": "right/sphere.mp4",
446
+ "category": "right",
447
+ "question": "In which direction is the sphere moving in this video?",
448
+ "options": [
449
+ "The sphere is moving up",
450
+ "The sphere is moving down",
451
+ "The sphere is moving left",
452
+ "The sphere is moving right"
453
+ ],
454
+ "answer": "D",
455
+ "id": 34
456
+ },
457
+ {
458
+ "video": "down/sofa.mp4",
459
+ "category": "down",
460
+ "question": "In which direction is the sofa moving in this video?",
461
+ "options": [
462
+ "The sofa is moving up",
463
+ "The sofa is moving down",
464
+ "The sofa is moving left",
465
+ "The sofa is moving right"
466
+ ],
467
+ "answer": "B",
468
+ "id": 35
469
+ },
470
+ {
471
+ "video": "up/laptop.mp4",
472
+ "category": "up",
473
+ "question": "In which direction is the laptop moving in this video?",
474
+ "options": [
475
+ "The laptop is moving up",
476
+ "The laptop is moving down",
477
+ "The laptop is moving left",
478
+ "The laptop is moving right"
479
+ ],
480
+ "answer": "A",
481
+ "id": 36
482
+ },
483
+ {
484
+ "video": "up/sphere.mp4",
485
+ "category": "up",
486
+ "question": "In which direction is the sphere moving in this video?",
487
+ "options": [
488
+ "The sphere is moving up",
489
+ "The sphere is moving down",
490
+ "The sphere is moving left",
491
+ "The sphere is moving right"
492
+ ],
493
+ "answer": "A",
494
+ "id": 37
495
+ },
496
+ {
497
+ "video": "left/sphere.mp4",
498
+ "category": "left",
499
+ "question": "In which direction is the sphere moving in this video?",
500
+ "options": [
501
+ "The sphere is moving up",
502
+ "The sphere is moving down",
503
+ "The sphere is moving left",
504
+ "The sphere is moving right"
505
+ ],
506
+ "answer": "C",
507
+ "id": 38
508
+ },
509
+ {
510
+ "video": "right/car.mp4",
511
+ "category": "right",
512
+ "question": "In which direction is the car moving in this video?",
513
+ "options": [
514
+ "The car is moving up",
515
+ "The car is moving down",
516
+ "The car is moving left",
517
+ "The car is moving right"
518
+ ],
519
+ "answer": "D",
520
+ "id": 39
521
+ },
522
+ {
523
+ "video": "down/dog.mp4",
524
+ "category": "down",
525
+ "question": "In which direction is the dog moving in this video?",
526
+ "options": [
527
+ "The dog is moving up",
528
+ "The dog is moving down",
529
+ "The dog is moving left",
530
+ "The dog is moving right"
531
+ ],
532
+ "answer": "B",
533
+ "id": 40
534
+ },
535
+ {
536
+ "video": "right/bed.mp4",
537
+ "category": "right",
538
+ "question": "In which direction is the bed moving in this video?",
539
+ "options": [
540
+ "The bed is moving up",
541
+ "The bed is moving down",
542
+ "The bed is moving left",
543
+ "The bed is moving right"
544
+ ],
545
+ "answer": "D",
546
+ "id": 41
547
+ },
548
+ {
549
+ "video": "up/dog.mp4",
550
+ "category": "up",
551
+ "question": "In which direction is the dog moving in this video?",
552
+ "options": [
553
+ "The dog is moving up",
554
+ "The dog is moving down",
555
+ "The dog is moving left",
556
+ "The dog is moving right"
557
+ ],
558
+ "answer": "A",
559
+ "id": 42
560
+ },
561
+ {
562
+ "video": "right/dog.mp4",
563
+ "category": "right",
564
+ "question": "In which direction is the dog moving in this video?",
565
+ "options": [
566
+ "The dog is moving up",
567
+ "The dog is moving down",
568
+ "The dog is moving left",
569
+ "The dog is moving right"
570
+ ],
571
+ "answer": "D",
572
+ "id": 43
573
+ },
574
+ {
575
+ "video": "up/sophia.mp4",
576
+ "category": "up",
577
+ "question": "In which direction is the sophia moving in this video?",
578
+ "options": [
579
+ "The sophia is moving up",
580
+ "The sophia is moving down",
581
+ "The sophia is moving left",
582
+ "The sophia is moving right"
583
+ ],
584
+ "answer": "A",
585
+ "id": 44
586
+ },
587
+ {
588
+ "video": "left/dog.mp4",
589
+ "category": "left",
590
+ "question": "In which direction is the dog moving in this video?",
591
+ "options": [
592
+ "The dog is moving up",
593
+ "The dog is moving down",
594
+ "The dog is moving left",
595
+ "The dog is moving right"
596
+ ],
597
+ "answer": "C",
598
+ "id": 45
599
+ },
600
+ {
601
+ "video": "down/bicycle.mp4",
602
+ "category": "down",
603
+ "question": "In which direction is the bicycle moving in this video?",
604
+ "options": [
605
+ "The bicycle is moving up",
606
+ "The bicycle is moving down",
607
+ "The bicycle is moving left",
608
+ "The bicycle is moving right"
609
+ ],
610
+ "answer": "B",
611
+ "id": 46
612
+ },
613
+ {
614
+ "video": "right/laptop.mp4",
615
+ "category": "right",
616
+ "question": "In which direction is the laptop moving in this video?",
617
+ "options": [
618
+ "The laptop is moving up",
619
+ "The laptop is moving down",
620
+ "The laptop is moving left",
621
+ "The laptop is moving right"
622
+ ],
623
+ "answer": "D",
624
+ "id": 47
625
+ },
626
+ {
627
+ "video": "right/duck.mp4",
628
+ "category": "right",
629
+ "question": "In which direction is the duck moving in this video?",
630
+ "options": [
631
+ "The duck is moving up",
632
+ "The duck is moving down",
633
+ "The duck is moving left",
634
+ "The duck is moving right"
635
+ ],
636
+ "answer": "D",
637
+ "id": 48
638
+ },
639
+ {
640
+ "video": "up/basketball.mp4",
641
+ "category": "up",
642
+ "question": "In which direction is the basketball moving in this video?",
643
+ "options": [
644
+ "The basketball is moving up",
645
+ "The basketball is moving down",
646
+ "The basketball is moving left",
647
+ "The basketball is moving right"
648
+ ],
649
+ "answer": "A",
650
+ "id": 49
651
+ },
652
+ {
653
+ "video": "left/bicycle.mp4",
654
+ "category": "left",
655
+ "question": "In which direction is the bicycle moving in this video?",
656
+ "options": [
657
+ "The bicycle is moving up",
658
+ "The bicycle is moving down",
659
+ "The bicycle is moving left",
660
+ "The bicycle is moving right"
661
+ ],
662
+ "answer": "C",
663
+ "id": 50
664
+ },
665
+ {
666
+ "video": "up/sofa.mp4",
667
+ "category": "up",
668
+ "question": "In which direction is the sofa moving in this video?",
669
+ "options": [
670
+ "The sofa is moving up",
671
+ "The sofa is moving down",
672
+ "The sofa is moving left",
673
+ "The sofa is moving right"
674
+ ],
675
+ "answer": "A",
676
+ "id": 51
677
+ }
678
+ ]
direction_obj_in_qa_open_ended.json ADDED
@@ -0,0 +1,366 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "video": "right/sophia.mp4",
4
+ "category": "right",
5
+ "question": "In which direction is the sophia moving in this video?",
6
+ "answer": "The sophia is moving right",
7
+ "id": 0
8
+ },
9
+ {
10
+ "video": "left/bench.mp4",
11
+ "category": "left",
12
+ "question": "In which direction is the bench moving in this video?",
13
+ "answer": "The bench is moving left",
14
+ "id": 1
15
+ },
16
+ {
17
+ "video": "up/chair.mp4",
18
+ "category": "up",
19
+ "question": "In which direction is the chair moving in this video?",
20
+ "answer": "The chair is moving up",
21
+ "id": 2
22
+ },
23
+ {
24
+ "video": "down/basketball.mp4",
25
+ "category": "down",
26
+ "question": "In which direction is the basketball moving in this video?",
27
+ "answer": "The basketball is moving down",
28
+ "id": 3
29
+ },
30
+ {
31
+ "video": "left/sophia.mp4",
32
+ "category": "left",
33
+ "question": "In which direction is the sophia moving in this video?",
34
+ "answer": "The sophia is moving left",
35
+ "id": 4
36
+ },
37
+ {
38
+ "video": "down/sophia.mp4",
39
+ "category": "down",
40
+ "question": "In which direction is the sophia moving in this video?",
41
+ "answer": "The sophia is moving down",
42
+ "id": 5
43
+ },
44
+ {
45
+ "video": "down/laptop.mp4",
46
+ "category": "down",
47
+ "question": "In which direction is the laptop moving in this video?",
48
+ "answer": "The laptop is moving down",
49
+ "id": 6
50
+ },
51
+ {
52
+ "video": "right/bicycle.mp4",
53
+ "category": "right",
54
+ "question": "In which direction is the bicycle moving in this video?",
55
+ "answer": "The bicycle is moving right",
56
+ "id": 7
57
+ },
58
+ {
59
+ "video": "left/bed.mp4",
60
+ "category": "left",
61
+ "question": "In which direction is the bed moving in this video?",
62
+ "answer": "The bed is moving left",
63
+ "id": 8
64
+ },
65
+ {
66
+ "video": "down/car.mp4",
67
+ "category": "down",
68
+ "question": "In which direction is the car moving in this video?",
69
+ "answer": "The car is moving down",
70
+ "id": 9
71
+ },
72
+ {
73
+ "video": "down/bed.mp4",
74
+ "category": "down",
75
+ "question": "In which direction is the bed moving in this video?",
76
+ "answer": "The bed is moving down",
77
+ "id": 10
78
+ },
79
+ {
80
+ "video": "up/horse.mp4",
81
+ "category": "up",
82
+ "question": "In which direction is the horse moving in this video?",
83
+ "answer": "The horse is moving up",
84
+ "id": 11
85
+ },
86
+ {
87
+ "video": "down/horse.mp4",
88
+ "category": "down",
89
+ "question": "In which direction is the horse moving in this video?",
90
+ "answer": "The horse is moving down",
91
+ "id": 12
92
+ },
93
+ {
94
+ "video": "left/horse.mp4",
95
+ "category": "left",
96
+ "question": "In which direction is the horse moving in this video?",
97
+ "answer": "The horse is moving left",
98
+ "id": 13
99
+ },
100
+ {
101
+ "video": "right/horse.mp4",
102
+ "category": "right",
103
+ "question": "In which direction is the horse moving in this video?",
104
+ "answer": "The horse is moving right",
105
+ "id": 14
106
+ },
107
+ {
108
+ "video": "up/car.mp4",
109
+ "category": "up",
110
+ "question": "In which direction is the car moving in this video?",
111
+ "answer": "The car is moving up",
112
+ "id": 15
113
+ },
114
+ {
115
+ "video": "left/chair.mp4",
116
+ "category": "left",
117
+ "question": "In which direction is the chair moving in this video?",
118
+ "answer": "The chair is moving left",
119
+ "id": 16
120
+ },
121
+ {
122
+ "video": "left/car.mp4",
123
+ "category": "left",
124
+ "question": "In which direction is the car moving in this video?",
125
+ "answer": "The car is moving left",
126
+ "id": 17
127
+ },
128
+ {
129
+ "video": "right/bench.mp4",
130
+ "category": "right",
131
+ "question": "In which direction is the bench moving in this video?",
132
+ "answer": "The bench is moving right",
133
+ "id": 18
134
+ },
135
+ {
136
+ "video": "up/bench.mp4",
137
+ "category": "up",
138
+ "question": "In which direction is the bench moving in this video?",
139
+ "answer": "The bench is moving up",
140
+ "id": 19
141
+ },
142
+ {
143
+ "video": "down/chair.mp4",
144
+ "category": "down",
145
+ "question": "In which direction is the chair moving in this video?",
146
+ "answer": "The chair is moving down",
147
+ "id": 20
148
+ },
149
+ {
150
+ "video": "left/laptop.mp4",
151
+ "category": "left",
152
+ "question": "In which direction is the laptop moving in this video?",
153
+ "answer": "The laptop is moving left",
154
+ "id": 21
155
+ },
156
+ {
157
+ "video": "up/bed.mp4",
158
+ "category": "up",
159
+ "question": "In which direction is the bed moving in this video?",
160
+ "answer": "The bed is moving up",
161
+ "id": 22
162
+ },
163
+ {
164
+ "video": "up/duck.mp4",
165
+ "category": "up",
166
+ "question": "In which direction is the duck moving in this video?",
167
+ "answer": "The duck is moving up",
168
+ "id": 23
169
+ },
170
+ {
171
+ "video": "left/sofa.mp4",
172
+ "category": "left",
173
+ "question": "In which direction is the sofa moving in this video?",
174
+ "answer": "The sofa is moving left",
175
+ "id": 24
176
+ },
177
+ {
178
+ "video": "down/sphere.mp4",
179
+ "category": "down",
180
+ "question": "In which direction is the sphere moving in this video?",
181
+ "answer": "The sphere is moving down",
182
+ "id": 25
183
+ },
184
+ {
185
+ "video": "left/basketball.mp4",
186
+ "category": "left",
187
+ "question": "In which direction is the basketball moving in this video?",
188
+ "answer": "The basketball is moving left",
189
+ "id": 26
190
+ },
191
+ {
192
+ "video": "right/chair.mp4",
193
+ "category": "right",
194
+ "question": "In which direction is the chair moving in this video?",
195
+ "answer": "The chair is moving right",
196
+ "id": 27
197
+ },
198
+ {
199
+ "video": "up/bicycle.mp4",
200
+ "category": "up",
201
+ "question": "In which direction is the bicycle moving in this video?",
202
+ "answer": "The bicycle is moving up",
203
+ "id": 28
204
+ },
205
+ {
206
+ "video": "right/basketball.mp4",
207
+ "category": "right",
208
+ "question": "In which direction is the basketball moving in this video?",
209
+ "answer": "The basketball is moving right",
210
+ "id": 29
211
+ },
212
+ {
213
+ "video": "down/bench.mp4",
214
+ "category": "down",
215
+ "question": "In which direction is the bench moving in this video?",
216
+ "answer": "The bench is moving down",
217
+ "id": 30
218
+ },
219
+ {
220
+ "video": "down/duck.mp4",
221
+ "category": "down",
222
+ "question": "In which direction is the duck moving in this video?",
223
+ "answer": "The duck is moving down",
224
+ "id": 31
225
+ },
226
+ {
227
+ "video": "right/sofa.mp4",
228
+ "category": "right",
229
+ "question": "In which direction is the sofa moving in this video?",
230
+ "answer": "The sofa is moving right",
231
+ "id": 32
232
+ },
233
+ {
234
+ "video": "left/duck.mp4",
235
+ "category": "left",
236
+ "question": "In which direction is the duck moving in this video?",
237
+ "answer": "The duck is moving left",
238
+ "id": 33
239
+ },
240
+ {
241
+ "video": "right/sphere.mp4",
242
+ "category": "right",
243
+ "question": "In which direction is the sphere moving in this video?",
244
+ "answer": "The sphere is moving right",
245
+ "id": 34
246
+ },
247
+ {
248
+ "video": "down/sofa.mp4",
249
+ "category": "down",
250
+ "question": "In which direction is the sofa moving in this video?",
251
+ "answer": "The sofa is moving down",
252
+ "id": 35
253
+ },
254
+ {
255
+ "video": "up/laptop.mp4",
256
+ "category": "up",
257
+ "question": "In which direction is the laptop moving in this video?",
258
+ "answer": "The laptop is moving up",
259
+ "id": 36
260
+ },
261
+ {
262
+ "video": "up/sphere.mp4",
263
+ "category": "up",
264
+ "question": "In which direction is the sphere moving in this video?",
265
+ "answer": "The sphere is moving up",
266
+ "id": 37
267
+ },
268
+ {
269
+ "video": "left/sphere.mp4",
270
+ "category": "left",
271
+ "question": "In which direction is the sphere moving in this video?",
272
+ "answer": "The sphere is moving left",
273
+ "id": 38
274
+ },
275
+ {
276
+ "video": "right/car.mp4",
277
+ "category": "right",
278
+ "question": "In which direction is the car moving in this video?",
279
+ "answer": "The car is moving right",
280
+ "id": 39
281
+ },
282
+ {
283
+ "video": "down/dog.mp4",
284
+ "category": "down",
285
+ "question": "In which direction is the dog moving in this video?",
286
+ "answer": "The dog is moving down",
287
+ "id": 40
288
+ },
289
+ {
290
+ "video": "right/bed.mp4",
291
+ "category": "right",
292
+ "question": "In which direction is the bed moving in this video?",
293
+ "answer": "The bed is moving right",
294
+ "id": 41
295
+ },
296
+ {
297
+ "video": "up/dog.mp4",
298
+ "category": "up",
299
+ "question": "In which direction is the dog moving in this video?",
300
+ "answer": "The dog is moving up",
301
+ "id": 42
302
+ },
303
+ {
304
+ "video": "right/dog.mp4",
305
+ "category": "right",
306
+ "question": "In which direction is the dog moving in this video?",
307
+ "answer": "The dog is moving right",
308
+ "id": 43
309
+ },
310
+ {
311
+ "video": "up/sophia.mp4",
312
+ "category": "up",
313
+ "question": "In which direction is the sophia moving in this video?",
314
+ "answer": "The sophia is moving up",
315
+ "id": 44
316
+ },
317
+ {
318
+ "video": "left/dog.mp4",
319
+ "category": "left",
320
+ "question": "In which direction is the dog moving in this video?",
321
+ "answer": "The dog is moving left",
322
+ "id": 45
323
+ },
324
+ {
325
+ "video": "down/bicycle.mp4",
326
+ "category": "down",
327
+ "question": "In which direction is the bicycle moving in this video?",
328
+ "answer": "The bicycle is moving down",
329
+ "id": 46
330
+ },
331
+ {
332
+ "video": "right/laptop.mp4",
333
+ "category": "right",
334
+ "question": "In which direction is the laptop moving in this video?",
335
+ "answer": "The laptop is moving right",
336
+ "id": 47
337
+ },
338
+ {
339
+ "video": "right/duck.mp4",
340
+ "category": "right",
341
+ "question": "In which direction is the duck moving in this video?",
342
+ "answer": "The duck is moving right",
343
+ "id": 48
344
+ },
345
+ {
346
+ "video": "up/basketball.mp4",
347
+ "category": "up",
348
+ "question": "In which direction is the basketball moving in this video?",
349
+ "answer": "The basketball is moving up",
350
+ "id": 49
351
+ },
352
+ {
353
+ "video": "left/bicycle.mp4",
354
+ "category": "left",
355
+ "question": "In which direction is the bicycle moving in this video?",
356
+ "answer": "The bicycle is moving left",
357
+ "id": 50
358
+ },
359
+ {
360
+ "video": "up/sofa.mp4",
361
+ "category": "up",
362
+ "question": "In which direction is the sofa moving in this video?",
363
+ "answer": "The sofa is moving up",
364
+ "id": 51
365
+ }
366
+ ]
direction_only_close_ended.json ADDED
@@ -0,0 +1,678 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "video": "up/laptop.mp4",
4
+ "category": "up",
5
+ "question": "In which direction is the object moving in this video?",
6
+ "options": [
7
+ "Up",
8
+ "Down",
9
+ "Left",
10
+ "Right"
11
+ ],
12
+ "answer": "A",
13
+ "id": 0
14
+ },
15
+ {
16
+ "video": "down/sofa.mp4",
17
+ "category": "down",
18
+ "question": "In which direction is the object moving in this video?",
19
+ "options": [
20
+ "Up",
21
+ "Down",
22
+ "Left",
23
+ "Right"
24
+ ],
25
+ "answer": "B",
26
+ "id": 1
27
+ },
28
+ {
29
+ "video": "down/sphere.mp4",
30
+ "category": "down",
31
+ "question": "In which direction is the object moving in this video?",
32
+ "options": [
33
+ "Up",
34
+ "Down",
35
+ "Left",
36
+ "Right"
37
+ ],
38
+ "answer": "B",
39
+ "id": 2
40
+ },
41
+ {
42
+ "video": "up/bicycle.mp4",
43
+ "category": "up",
44
+ "question": "In which direction is the object moving in this video?",
45
+ "options": [
46
+ "Up",
47
+ "Down",
48
+ "Left",
49
+ "Right"
50
+ ],
51
+ "answer": "A",
52
+ "id": 3
53
+ },
54
+ {
55
+ "video": "down/horse.mp4",
56
+ "category": "down",
57
+ "question": "In which direction is the object moving in this video?",
58
+ "options": [
59
+ "Up",
60
+ "Down",
61
+ "Left",
62
+ "Right"
63
+ ],
64
+ "answer": "B",
65
+ "id": 4
66
+ },
67
+ {
68
+ "video": "left/sphere.mp4",
69
+ "category": "left",
70
+ "question": "In which direction is the object moving in this video?",
71
+ "options": [
72
+ "Up",
73
+ "Down",
74
+ "Left",
75
+ "Right"
76
+ ],
77
+ "answer": "C",
78
+ "id": 5
79
+ },
80
+ {
81
+ "video": "down/bicycle.mp4",
82
+ "category": "down",
83
+ "question": "In which direction is the object moving in this video?",
84
+ "options": [
85
+ "Up",
86
+ "Down",
87
+ "Left",
88
+ "Right"
89
+ ],
90
+ "answer": "B",
91
+ "id": 6
92
+ },
93
+ {
94
+ "video": "right/basketball.mp4",
95
+ "category": "right",
96
+ "question": "In which direction is the object moving in this video?",
97
+ "options": [
98
+ "Up",
99
+ "Down",
100
+ "Left",
101
+ "Right"
102
+ ],
103
+ "answer": "D",
104
+ "id": 7
105
+ },
106
+ {
107
+ "video": "down/dog.mp4",
108
+ "category": "down",
109
+ "question": "In which direction is the object moving in this video?",
110
+ "options": [
111
+ "Up",
112
+ "Down",
113
+ "Left",
114
+ "Right"
115
+ ],
116
+ "answer": "B",
117
+ "id": 8
118
+ },
119
+ {
120
+ "video": "up/sophia.mp4",
121
+ "category": "up",
122
+ "question": "In which direction is the object moving in this video?",
123
+ "options": [
124
+ "Up",
125
+ "Down",
126
+ "Left",
127
+ "Right"
128
+ ],
129
+ "answer": "A",
130
+ "id": 9
131
+ },
132
+ {
133
+ "video": "right/duck.mp4",
134
+ "category": "right",
135
+ "question": "In which direction is the object moving in this video?",
136
+ "options": [
137
+ "Up",
138
+ "Down",
139
+ "Left",
140
+ "Right"
141
+ ],
142
+ "answer": "D",
143
+ "id": 10
144
+ },
145
+ {
146
+ "video": "down/sophia.mp4",
147
+ "category": "down",
148
+ "question": "In which direction is the object moving in this video?",
149
+ "options": [
150
+ "Up",
151
+ "Down",
152
+ "Left",
153
+ "Right"
154
+ ],
155
+ "answer": "B",
156
+ "id": 11
157
+ },
158
+ {
159
+ "video": "left/duck.mp4",
160
+ "category": "left",
161
+ "question": "In which direction is the object moving in this video?",
162
+ "options": [
163
+ "Up",
164
+ "Down",
165
+ "Left",
166
+ "Right"
167
+ ],
168
+ "answer": "C",
169
+ "id": 12
170
+ },
171
+ {
172
+ "video": "left/bicycle.mp4",
173
+ "category": "left",
174
+ "question": "In which direction is the object moving in this video?",
175
+ "options": [
176
+ "Up",
177
+ "Down",
178
+ "Left",
179
+ "Right"
180
+ ],
181
+ "answer": "C",
182
+ "id": 13
183
+ },
184
+ {
185
+ "video": "left/chair.mp4",
186
+ "category": "left",
187
+ "question": "In which direction is the object moving in this video?",
188
+ "options": [
189
+ "Up",
190
+ "Down",
191
+ "Left",
192
+ "Right"
193
+ ],
194
+ "answer": "C",
195
+ "id": 14
196
+ },
197
+ {
198
+ "video": "right/car.mp4",
199
+ "category": "right",
200
+ "question": "In which direction is the object moving in this video?",
201
+ "options": [
202
+ "Up",
203
+ "Down",
204
+ "Left",
205
+ "Right"
206
+ ],
207
+ "answer": "D",
208
+ "id": 15
209
+ },
210
+ {
211
+ "video": "up/car.mp4",
212
+ "category": "up",
213
+ "question": "In which direction is the object moving in this video?",
214
+ "options": [
215
+ "Up",
216
+ "Down",
217
+ "Left",
218
+ "Right"
219
+ ],
220
+ "answer": "A",
221
+ "id": 16
222
+ },
223
+ {
224
+ "video": "left/bench.mp4",
225
+ "category": "left",
226
+ "question": "In which direction is the object moving in this video?",
227
+ "options": [
228
+ "Up",
229
+ "Down",
230
+ "Left",
231
+ "Right"
232
+ ],
233
+ "answer": "C",
234
+ "id": 17
235
+ },
236
+ {
237
+ "video": "up/sofa.mp4",
238
+ "category": "up",
239
+ "question": "In which direction is the object moving in this video?",
240
+ "options": [
241
+ "Up",
242
+ "Down",
243
+ "Left",
244
+ "Right"
245
+ ],
246
+ "answer": "A",
247
+ "id": 18
248
+ },
249
+ {
250
+ "video": "left/basketball.mp4",
251
+ "category": "left",
252
+ "question": "In which direction is the object moving in this video?",
253
+ "options": [
254
+ "Up",
255
+ "Down",
256
+ "Left",
257
+ "Right"
258
+ ],
259
+ "answer": "C",
260
+ "id": 19
261
+ },
262
+ {
263
+ "video": "left/sofa.mp4",
264
+ "category": "left",
265
+ "question": "In which direction is the object moving in this video?",
266
+ "options": [
267
+ "Up",
268
+ "Down",
269
+ "Left",
270
+ "Right"
271
+ ],
272
+ "answer": "C",
273
+ "id": 20
274
+ },
275
+ {
276
+ "video": "up/basketball.mp4",
277
+ "category": "up",
278
+ "question": "In which direction is the object moving in this video?",
279
+ "options": [
280
+ "Up",
281
+ "Down",
282
+ "Left",
283
+ "Right"
284
+ ],
285
+ "answer": "A",
286
+ "id": 21
287
+ },
288
+ {
289
+ "video": "right/chair.mp4",
290
+ "category": "right",
291
+ "question": "In which direction is the object moving in this video?",
292
+ "options": [
293
+ "Up",
294
+ "Down",
295
+ "Left",
296
+ "Right"
297
+ ],
298
+ "answer": "D",
299
+ "id": 22
300
+ },
301
+ {
302
+ "video": "down/chair.mp4",
303
+ "category": "down",
304
+ "question": "In which direction is the object moving in this video?",
305
+ "options": [
306
+ "Up",
307
+ "Down",
308
+ "Left",
309
+ "Right"
310
+ ],
311
+ "answer": "B",
312
+ "id": 23
313
+ },
314
+ {
315
+ "video": "right/bicycle.mp4",
316
+ "category": "right",
317
+ "question": "In which direction is the object moving in this video?",
318
+ "options": [
319
+ "Up",
320
+ "Down",
321
+ "Left",
322
+ "Right"
323
+ ],
324
+ "answer": "D",
325
+ "id": 24
326
+ },
327
+ {
328
+ "video": "right/sophia.mp4",
329
+ "category": "right",
330
+ "question": "In which direction is the object moving in this video?",
331
+ "options": [
332
+ "Up",
333
+ "Down",
334
+ "Left",
335
+ "Right"
336
+ ],
337
+ "answer": "D",
338
+ "id": 25
339
+ },
340
+ {
341
+ "video": "left/laptop.mp4",
342
+ "category": "left",
343
+ "question": "In which direction is the object moving in this video?",
344
+ "options": [
345
+ "Up",
346
+ "Down",
347
+ "Left",
348
+ "Right"
349
+ ],
350
+ "answer": "C",
351
+ "id": 26
352
+ },
353
+ {
354
+ "video": "right/laptop.mp4",
355
+ "category": "right",
356
+ "question": "In which direction is the object moving in this video?",
357
+ "options": [
358
+ "Up",
359
+ "Down",
360
+ "Left",
361
+ "Right"
362
+ ],
363
+ "answer": "D",
364
+ "id": 27
365
+ },
366
+ {
367
+ "video": "left/car.mp4",
368
+ "category": "left",
369
+ "question": "In which direction is the object moving in this video?",
370
+ "options": [
371
+ "Up",
372
+ "Down",
373
+ "Left",
374
+ "Right"
375
+ ],
376
+ "answer": "C",
377
+ "id": 28
378
+ },
379
+ {
380
+ "video": "down/duck.mp4",
381
+ "category": "down",
382
+ "question": "In which direction is the object moving in this video?",
383
+ "options": [
384
+ "Up",
385
+ "Down",
386
+ "Left",
387
+ "Right"
388
+ ],
389
+ "answer": "B",
390
+ "id": 29
391
+ },
392
+ {
393
+ "video": "down/laptop.mp4",
394
+ "category": "down",
395
+ "question": "In which direction is the object moving in this video?",
396
+ "options": [
397
+ "Up",
398
+ "Down",
399
+ "Left",
400
+ "Right"
401
+ ],
402
+ "answer": "B",
403
+ "id": 30
404
+ },
405
+ {
406
+ "video": "up/sphere.mp4",
407
+ "category": "up",
408
+ "question": "In which direction is the object moving in this video?",
409
+ "options": [
410
+ "Up",
411
+ "Down",
412
+ "Left",
413
+ "Right"
414
+ ],
415
+ "answer": "A",
416
+ "id": 31
417
+ },
418
+ {
419
+ "video": "right/sphere.mp4",
420
+ "category": "right",
421
+ "question": "In which direction is the object moving in this video?",
422
+ "options": [
423
+ "Up",
424
+ "Down",
425
+ "Left",
426
+ "Right"
427
+ ],
428
+ "answer": "D",
429
+ "id": 32
430
+ },
431
+ {
432
+ "video": "left/dog.mp4",
433
+ "category": "left",
434
+ "question": "In which direction is the object moving in this video?",
435
+ "options": [
436
+ "Up",
437
+ "Down",
438
+ "Left",
439
+ "Right"
440
+ ],
441
+ "answer": "C",
442
+ "id": 33
443
+ },
444
+ {
445
+ "video": "right/dog.mp4",
446
+ "category": "right",
447
+ "question": "In which direction is the object moving in this video?",
448
+ "options": [
449
+ "Up",
450
+ "Down",
451
+ "Left",
452
+ "Right"
453
+ ],
454
+ "answer": "D",
455
+ "id": 34
456
+ },
457
+ {
458
+ "video": "down/basketball.mp4",
459
+ "category": "down",
460
+ "question": "In which direction is the object moving in this video?",
461
+ "options": [
462
+ "Up",
463
+ "Down",
464
+ "Left",
465
+ "Right"
466
+ ],
467
+ "answer": "B",
468
+ "id": 35
469
+ },
470
+ {
471
+ "video": "right/bench.mp4",
472
+ "category": "right",
473
+ "question": "In which direction is the object moving in this video?",
474
+ "options": [
475
+ "Up",
476
+ "Down",
477
+ "Left",
478
+ "Right"
479
+ ],
480
+ "answer": "D",
481
+ "id": 36
482
+ },
483
+ {
484
+ "video": "right/sofa.mp4",
485
+ "category": "right",
486
+ "question": "In which direction is the object moving in this video?",
487
+ "options": [
488
+ "Up",
489
+ "Down",
490
+ "Left",
491
+ "Right"
492
+ ],
493
+ "answer": "D",
494
+ "id": 37
495
+ },
496
+ {
497
+ "video": "up/bench.mp4",
498
+ "category": "up",
499
+ "question": "In which direction is the object moving in this video?",
500
+ "options": [
501
+ "Up",
502
+ "Down",
503
+ "Left",
504
+ "Right"
505
+ ],
506
+ "answer": "A",
507
+ "id": 38
508
+ },
509
+ {
510
+ "video": "left/bed.mp4",
511
+ "category": "left",
512
+ "question": "In which direction is the object moving in this video?",
513
+ "options": [
514
+ "Up",
515
+ "Down",
516
+ "Left",
517
+ "Right"
518
+ ],
519
+ "answer": "C",
520
+ "id": 39
521
+ },
522
+ {
523
+ "video": "left/sophia.mp4",
524
+ "category": "left",
525
+ "question": "In which direction is the object moving in this video?",
526
+ "options": [
527
+ "Up",
528
+ "Down",
529
+ "Left",
530
+ "Right"
531
+ ],
532
+ "answer": "C",
533
+ "id": 40
534
+ },
535
+ {
536
+ "video": "up/chair.mp4",
537
+ "category": "up",
538
+ "question": "In which direction is the object moving in this video?",
539
+ "options": [
540
+ "Up",
541
+ "Down",
542
+ "Left",
543
+ "Right"
544
+ ],
545
+ "answer": "A",
546
+ "id": 41
547
+ },
548
+ {
549
+ "video": "left/horse.mp4",
550
+ "category": "left",
551
+ "question": "In which direction is the object moving in this video?",
552
+ "options": [
553
+ "Up",
554
+ "Down",
555
+ "Left",
556
+ "Right"
557
+ ],
558
+ "answer": "C",
559
+ "id": 42
560
+ },
561
+ {
562
+ "video": "up/dog.mp4",
563
+ "category": "up",
564
+ "question": "In which direction is the object moving in this video?",
565
+ "options": [
566
+ "Up",
567
+ "Down",
568
+ "Left",
569
+ "Right"
570
+ ],
571
+ "answer": "A",
572
+ "id": 43
573
+ },
574
+ {
575
+ "video": "up/horse.mp4",
576
+ "category": "up",
577
+ "question": "In which direction is the object moving in this video?",
578
+ "options": [
579
+ "Up",
580
+ "Down",
581
+ "Left",
582
+ "Right"
583
+ ],
584
+ "answer": "A",
585
+ "id": 44
586
+ },
587
+ {
588
+ "video": "down/bed.mp4",
589
+ "category": "down",
590
+ "question": "In which direction is the object moving in this video?",
591
+ "options": [
592
+ "Up",
593
+ "Down",
594
+ "Left",
595
+ "Right"
596
+ ],
597
+ "answer": "B",
598
+ "id": 45
599
+ },
600
+ {
601
+ "video": "down/bench.mp4",
602
+ "category": "down",
603
+ "question": "In which direction is the object moving in this video?",
604
+ "options": [
605
+ "Up",
606
+ "Down",
607
+ "Left",
608
+ "Right"
609
+ ],
610
+ "answer": "B",
611
+ "id": 46
612
+ },
613
+ {
614
+ "video": "down/car.mp4",
615
+ "category": "down",
616
+ "question": "In which direction is the object moving in this video?",
617
+ "options": [
618
+ "Up",
619
+ "Down",
620
+ "Left",
621
+ "Right"
622
+ ],
623
+ "answer": "B",
624
+ "id": 47
625
+ },
626
+ {
627
+ "video": "right/horse.mp4",
628
+ "category": "right",
629
+ "question": "In which direction is the object moving in this video?",
630
+ "options": [
631
+ "Up",
632
+ "Down",
633
+ "Left",
634
+ "Right"
635
+ ],
636
+ "answer": "D",
637
+ "id": 48
638
+ },
639
+ {
640
+ "video": "up/bed.mp4",
641
+ "category": "up",
642
+ "question": "In which direction is the object moving in this video?",
643
+ "options": [
644
+ "Up",
645
+ "Down",
646
+ "Left",
647
+ "Right"
648
+ ],
649
+ "answer": "A",
650
+ "id": 49
651
+ },
652
+ {
653
+ "video": "up/duck.mp4",
654
+ "category": "up",
655
+ "question": "In which direction is the object moving in this video?",
656
+ "options": [
657
+ "Up",
658
+ "Down",
659
+ "Left",
660
+ "Right"
661
+ ],
662
+ "answer": "A",
663
+ "id": 50
664
+ },
665
+ {
666
+ "video": "right/bed.mp4",
667
+ "category": "right",
668
+ "question": "In which direction is the object moving in this video?",
669
+ "options": [
670
+ "Up",
671
+ "Down",
672
+ "Left",
673
+ "Right"
674
+ ],
675
+ "answer": "D",
676
+ "id": 51
677
+ }
678
+ ]
direction_only_open_ended.json ADDED
@@ -0,0 +1,366 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "video": "up/laptop.mp4",
4
+ "category": "up",
5
+ "question": "In which direction is the object moving in this video?",
6
+ "answer": "Up",
7
+ "id": 0
8
+ },
9
+ {
10
+ "video": "down/sofa.mp4",
11
+ "category": "down",
12
+ "question": "In which direction is the object moving in this video?",
13
+ "answer": "Down",
14
+ "id": 1
15
+ },
16
+ {
17
+ "video": "down/sphere.mp4",
18
+ "category": "down",
19
+ "question": "In which direction is the object moving in this video?",
20
+ "answer": "Down",
21
+ "id": 2
22
+ },
23
+ {
24
+ "video": "up/bicycle.mp4",
25
+ "category": "up",
26
+ "question": "In which direction is the object moving in this video?",
27
+ "answer": "Up",
28
+ "id": 3
29
+ },
30
+ {
31
+ "video": "down/horse.mp4",
32
+ "category": "down",
33
+ "question": "In which direction is the object moving in this video?",
34
+ "answer": "Down",
35
+ "id": 4
36
+ },
37
+ {
38
+ "video": "left/sphere.mp4",
39
+ "category": "left",
40
+ "question": "In which direction is the object moving in this video?",
41
+ "answer": "Left",
42
+ "id": 5
43
+ },
44
+ {
45
+ "video": "down/bicycle.mp4",
46
+ "category": "down",
47
+ "question": "In which direction is the object moving in this video?",
48
+ "answer": "Down",
49
+ "id": 6
50
+ },
51
+ {
52
+ "video": "right/basketball.mp4",
53
+ "category": "right",
54
+ "question": "In which direction is the object moving in this video?",
55
+ "answer": "Right",
56
+ "id": 7
57
+ },
58
+ {
59
+ "video": "down/dog.mp4",
60
+ "category": "down",
61
+ "question": "In which direction is the object moving in this video?",
62
+ "answer": "Down",
63
+ "id": 8
64
+ },
65
+ {
66
+ "video": "up/sophia.mp4",
67
+ "category": "up",
68
+ "question": "In which direction is the object moving in this video?",
69
+ "answer": "Up",
70
+ "id": 9
71
+ },
72
+ {
73
+ "video": "right/duck.mp4",
74
+ "category": "right",
75
+ "question": "In which direction is the object moving in this video?",
76
+ "answer": "Right",
77
+ "id": 10
78
+ },
79
+ {
80
+ "video": "down/sophia.mp4",
81
+ "category": "down",
82
+ "question": "In which direction is the object moving in this video?",
83
+ "answer": "Down",
84
+ "id": 11
85
+ },
86
+ {
87
+ "video": "left/duck.mp4",
88
+ "category": "left",
89
+ "question": "In which direction is the object moving in this video?",
90
+ "answer": "Left",
91
+ "id": 12
92
+ },
93
+ {
94
+ "video": "left/bicycle.mp4",
95
+ "category": "left",
96
+ "question": "In which direction is the object moving in this video?",
97
+ "answer": "Left",
98
+ "id": 13
99
+ },
100
+ {
101
+ "video": "left/chair.mp4",
102
+ "category": "left",
103
+ "question": "In which direction is the object moving in this video?",
104
+ "answer": "Left",
105
+ "id": 14
106
+ },
107
+ {
108
+ "video": "right/car.mp4",
109
+ "category": "right",
110
+ "question": "In which direction is the object moving in this video?",
111
+ "answer": "Right",
112
+ "id": 15
113
+ },
114
+ {
115
+ "video": "up/car.mp4",
116
+ "category": "up",
117
+ "question": "In which direction is the object moving in this video?",
118
+ "answer": "Up",
119
+ "id": 16
120
+ },
121
+ {
122
+ "video": "left/bench.mp4",
123
+ "category": "left",
124
+ "question": "In which direction is the object moving in this video?",
125
+ "answer": "Left",
126
+ "id": 17
127
+ },
128
+ {
129
+ "video": "up/sofa.mp4",
130
+ "category": "up",
131
+ "question": "In which direction is the object moving in this video?",
132
+ "answer": "Up",
133
+ "id": 18
134
+ },
135
+ {
136
+ "video": "left/basketball.mp4",
137
+ "category": "left",
138
+ "question": "In which direction is the object moving in this video?",
139
+ "answer": "Left",
140
+ "id": 19
141
+ },
142
+ {
143
+ "video": "left/sofa.mp4",
144
+ "category": "left",
145
+ "question": "In which direction is the object moving in this video?",
146
+ "answer": "Left",
147
+ "id": 20
148
+ },
149
+ {
150
+ "video": "up/basketball.mp4",
151
+ "category": "up",
152
+ "question": "In which direction is the object moving in this video?",
153
+ "answer": "Up",
154
+ "id": 21
155
+ },
156
+ {
157
+ "video": "right/chair.mp4",
158
+ "category": "right",
159
+ "question": "In which direction is the object moving in this video?",
160
+ "answer": "Right",
161
+ "id": 22
162
+ },
163
+ {
164
+ "video": "down/chair.mp4",
165
+ "category": "down",
166
+ "question": "In which direction is the object moving in this video?",
167
+ "answer": "Down",
168
+ "id": 23
169
+ },
170
+ {
171
+ "video": "right/bicycle.mp4",
172
+ "category": "right",
173
+ "question": "In which direction is the object moving in this video?",
174
+ "answer": "Right",
175
+ "id": 24
176
+ },
177
+ {
178
+ "video": "right/sophia.mp4",
179
+ "category": "right",
180
+ "question": "In which direction is the object moving in this video?",
181
+ "answer": "Right",
182
+ "id": 25
183
+ },
184
+ {
185
+ "video": "left/laptop.mp4",
186
+ "category": "left",
187
+ "question": "In which direction is the object moving in this video?",
188
+ "answer": "Left",
189
+ "id": 26
190
+ },
191
+ {
192
+ "video": "right/laptop.mp4",
193
+ "category": "right",
194
+ "question": "In which direction is the object moving in this video?",
195
+ "answer": "Right",
196
+ "id": 27
197
+ },
198
+ {
199
+ "video": "left/car.mp4",
200
+ "category": "left",
201
+ "question": "In which direction is the object moving in this video?",
202
+ "answer": "Left",
203
+ "id": 28
204
+ },
205
+ {
206
+ "video": "down/duck.mp4",
207
+ "category": "down",
208
+ "question": "In which direction is the object moving in this video?",
209
+ "answer": "Down",
210
+ "id": 29
211
+ },
212
+ {
213
+ "video": "down/laptop.mp4",
214
+ "category": "down",
215
+ "question": "In which direction is the object moving in this video?",
216
+ "answer": "Down",
217
+ "id": 30
218
+ },
219
+ {
220
+ "video": "up/sphere.mp4",
221
+ "category": "up",
222
+ "question": "In which direction is the object moving in this video?",
223
+ "answer": "Up",
224
+ "id": 31
225
+ },
226
+ {
227
+ "video": "right/sphere.mp4",
228
+ "category": "right",
229
+ "question": "In which direction is the object moving in this video?",
230
+ "answer": "Right",
231
+ "id": 32
232
+ },
233
+ {
234
+ "video": "left/dog.mp4",
235
+ "category": "left",
236
+ "question": "In which direction is the object moving in this video?",
237
+ "answer": "Left",
238
+ "id": 33
239
+ },
240
+ {
241
+ "video": "right/dog.mp4",
242
+ "category": "right",
243
+ "question": "In which direction is the object moving in this video?",
244
+ "answer": "Right",
245
+ "id": 34
246
+ },
247
+ {
248
+ "video": "down/basketball.mp4",
249
+ "category": "down",
250
+ "question": "In which direction is the object moving in this video?",
251
+ "answer": "Down",
252
+ "id": 35
253
+ },
254
+ {
255
+ "video": "right/bench.mp4",
256
+ "category": "right",
257
+ "question": "In which direction is the object moving in this video?",
258
+ "answer": "Right",
259
+ "id": 36
260
+ },
261
+ {
262
+ "video": "right/sofa.mp4",
263
+ "category": "right",
264
+ "question": "In which direction is the object moving in this video?",
265
+ "answer": "Right",
266
+ "id": 37
267
+ },
268
+ {
269
+ "video": "up/bench.mp4",
270
+ "category": "up",
271
+ "question": "In which direction is the object moving in this video?",
272
+ "answer": "Up",
273
+ "id": 38
274
+ },
275
+ {
276
+ "video": "left/bed.mp4",
277
+ "category": "left",
278
+ "question": "In which direction is the object moving in this video?",
279
+ "answer": "Left",
280
+ "id": 39
281
+ },
282
+ {
283
+ "video": "left/sophia.mp4",
284
+ "category": "left",
285
+ "question": "In which direction is the object moving in this video?",
286
+ "answer": "Left",
287
+ "id": 40
288
+ },
289
+ {
290
+ "video": "up/chair.mp4",
291
+ "category": "up",
292
+ "question": "In which direction is the object moving in this video?",
293
+ "answer": "Up",
294
+ "id": 41
295
+ },
296
+ {
297
+ "video": "left/horse.mp4",
298
+ "category": "left",
299
+ "question": "In which direction is the object moving in this video?",
300
+ "answer": "Left",
301
+ "id": 42
302
+ },
303
+ {
304
+ "video": "up/dog.mp4",
305
+ "category": "up",
306
+ "question": "In which direction is the object moving in this video?",
307
+ "answer": "Up",
308
+ "id": 43
309
+ },
310
+ {
311
+ "video": "up/horse.mp4",
312
+ "category": "up",
313
+ "question": "In which direction is the object moving in this video?",
314
+ "answer": "Up",
315
+ "id": 44
316
+ },
317
+ {
318
+ "video": "down/bed.mp4",
319
+ "category": "down",
320
+ "question": "In which direction is the object moving in this video?",
321
+ "answer": "Down",
322
+ "id": 45
323
+ },
324
+ {
325
+ "video": "down/bench.mp4",
326
+ "category": "down",
327
+ "question": "In which direction is the object moving in this video?",
328
+ "answer": "Down",
329
+ "id": 46
330
+ },
331
+ {
332
+ "video": "down/car.mp4",
333
+ "category": "down",
334
+ "question": "In which direction is the object moving in this video?",
335
+ "answer": "Down",
336
+ "id": 47
337
+ },
338
+ {
339
+ "video": "right/horse.mp4",
340
+ "category": "right",
341
+ "question": "In which direction is the object moving in this video?",
342
+ "answer": "Right",
343
+ "id": 48
344
+ },
345
+ {
346
+ "video": "up/bed.mp4",
347
+ "category": "up",
348
+ "question": "In which direction is the object moving in this video?",
349
+ "answer": "Up",
350
+ "id": 49
351
+ },
352
+ {
353
+ "video": "up/duck.mp4",
354
+ "category": "up",
355
+ "question": "In which direction is the object moving in this video?",
356
+ "answer": "Up",
357
+ "id": 50
358
+ },
359
+ {
360
+ "video": "right/bed.mp4",
361
+ "category": "right",
362
+ "question": "In which direction is the object moving in this video?",
363
+ "answer": "Right",
364
+ "id": 51
365
+ }
366
+ ]
makejson.py ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import glob
4
+ import random
5
+
6
+ # ============================================================
7
+ # 설정
8
+ # ============================================================
9
+ import os
10
+ import json
11
+ import glob
12
+ import random
13
+ from collections import defaultdict
14
+
15
+ # ============================================================
16
+ # 설정
17
+ # ============================================================
18
+ DATA_ROOT = "/data/dataset/vlm_direction/direction_benchmarks/E2E_real_object"
19
+ OUTPUT_DIR = "./"
20
+
21
+ DIRECTION_CLASSES = ["up", "down", "left", "right"]
22
+ DIRECTION_OPTIONS = ["Up", "Down", "Left", "Right"]
23
+ DIR_TO_LETTER = {"up": "A", "down": "B", "left": "C", "right": "D"}
24
+ DIR_TO_LABEL = {"up": "Up", "down": "Down", "left": "Left", "right": "Right"}
25
+
26
+ random.seed(42)
27
+
28
+ # ============================================================
29
+ # 데이터 수집
30
+ # ============================================================
31
+ all_samples = []
32
+ all_objects = set()
33
+
34
+ for cls in DIRECTION_CLASSES:
35
+ cls_dir = os.path.join(DATA_ROOT, cls)
36
+ if not os.path.isdir(cls_dir):
37
+ print(f"[WARN] Directory not found: {cls_dir}")
38
+ continue
39
+
40
+ videos = sorted(glob.glob(os.path.join(cls_dir, "*.mp4")))
41
+ print(f"{cls}: {len(videos)} videos")
42
+
43
+ for video_path in videos:
44
+ filename = os.path.basename(video_path)
45
+ obj_name = os.path.splitext(filename)[0] # car.mp4 → car
46
+ video_rel = f"{cls}/{filename}"
47
+
48
+ all_samples.append({
49
+ "video": video_rel,
50
+ "category": cls,
51
+ "object": obj_name,
52
+ })
53
+ all_objects.add(obj_name)
54
+
55
+ all_objects = sorted(list(all_objects))
56
+ print(f"\nTotal: {len(all_samples)} samples, {len(all_objects)} unique objects")
57
+ print(f"Objects: {all_objects}")
58
+
59
+
60
+ # ============================================================
61
+ # JSON 생성 함수
62
+ # ============================================================
63
+ def make_direction_only(samples):
64
+ """조건1: 기본 - object 언급 없이 방향만"""
65
+ question = "In which direction is the object moving in this video?"
66
+ close, open_ = [], []
67
+
68
+ for s in samples:
69
+ close.append({
70
+ "video": s["video"], "category": s["category"],
71
+ "question": question,
72
+ "options": DIRECTION_OPTIONS,
73
+ "answer": DIR_TO_LETTER[s["category"]],
74
+ })
75
+ open_.append({
76
+ "video": s["video"], "category": s["category"],
77
+ "question": question,
78
+ "answer": DIR_TO_LABEL[s["category"]],
79
+ })
80
+ return close, open_
81
+
82
+
83
+ def make_direction_obj_in_q(samples):
84
+ """조건2: 질문에 object 이름 포함"""
85
+ close, open_ = [], []
86
+
87
+ for s in samples:
88
+ obj = s["object"]
89
+ question = f"In which direction is the {obj} moving in this video?"
90
+ close.append({
91
+ "video": s["video"], "category": s["category"],
92
+ "question": question,
93
+ "options": DIRECTION_OPTIONS,
94
+ "answer": DIR_TO_LETTER[s["category"]],
95
+ })
96
+ open_.append({
97
+ "video": s["video"], "category": s["category"],
98
+ "question": question,
99
+ "answer": DIR_TO_LABEL[s["category"]],
100
+ })
101
+ return close, open_
102
+
103
+
104
+ def make_direction_obj_in_a(samples):
105
+ """조건3: 답변에 object 이름 포함"""
106
+ question = "In which direction is the object moving in this video?"
107
+ close, open_ = [], []
108
+
109
+ for s in samples:
110
+ obj = s["object"]
111
+ direction = DIR_TO_LABEL[s["category"]]
112
+
113
+ # close-ended: 선택지에 object 포함
114
+ options = [f"The {obj} is moving {d.lower()}" for d in DIRECTION_OPTIONS]
115
+ answer_idx = DIRECTION_CLASSES.index(s["category"])
116
+ answer_letter = chr(ord("A") + answer_idx)
117
+
118
+ close.append({
119
+ "video": s["video"], "category": s["category"],
120
+ "question": question,
121
+ "options": options,
122
+ "answer": answer_letter,
123
+ })
124
+ open_.append({
125
+ "video": s["video"], "category": s["category"],
126
+ "question": question,
127
+ "answer": f"The {obj} is moving {direction.lower()}",
128
+ })
129
+ return close, open_
130
+
131
+
132
+ def make_direction_obj_in_qa(samples):
133
+ """조건4: 질문+답변 모두 object 이름 포함"""
134
+ close, open_ = [], []
135
+
136
+ for s in samples:
137
+ obj = s["object"]
138
+ direction = DIR_TO_LABEL[s["category"]]
139
+ question = f"In which direction is the {obj} moving in this video?"
140
+
141
+ options = [f"The {obj} is moving {d.lower()}" for d in DIRECTION_OPTIONS]
142
+ answer_idx = DIRECTION_CLASSES.index(s["category"])
143
+ answer_letter = chr(ord("A") + answer_idx)
144
+
145
+ close.append({
146
+ "video": s["video"], "category": s["category"],
147
+ "question": question,
148
+ "options": options,
149
+ "answer": answer_letter,
150
+ })
151
+ open_.append({
152
+ "video": s["video"], "category": s["category"],
153
+ "question": question,
154
+ "answer": f"The {obj} is moving {direction.lower()}",
155
+ })
156
+ return close, open_
157
+
158
+
159
+ def make_object_recognition(samples, all_objects):
160
+ """조건5: object 종류 맞추기"""
161
+ question = "What is the object moving in this video?"
162
+ close, open_ = [], []
163
+
164
+ for s in samples:
165
+ obj = s["object"]
166
+ obj_cap = obj.capitalize()
167
+
168
+ # close-ended: 정답 + 랜덤 3개 오답 (중복 없이)
169
+ distractors = [o for o in all_objects if o != obj]
170
+ chosen = random.sample(distractors, min(3, len(distractors)))
171
+ options_raw = [obj] + chosen
172
+ random.shuffle(options_raw)
173
+ options = [o.capitalize() for o in options_raw]
174
+ answer_letter = chr(ord("A") + options_raw.index(obj))
175
+
176
+ close.append({
177
+ "video": s["video"], "category": s["category"],
178
+ "question": question,
179
+ "options": options,
180
+ "answer": answer_letter,
181
+ })
182
+ open_.append({
183
+ "video": s["video"], "category": s["category"],
184
+ "question": question,
185
+ "answer": obj_cap,
186
+ })
187
+ return close, open_
188
+
189
+
190
+ # ============================================================
191
+ # 생성 & 저장
192
+ # ============================================================
193
+ CONDITIONS = {
194
+ "direction_only": lambda s: make_direction_only(s),
195
+ "direction_obj_in_q": lambda s: make_direction_obj_in_q(s),
196
+ "direction_obj_in_a": lambda s: make_direction_obj_in_a(s),
197
+ "direction_obj_in_qa": lambda s: make_direction_obj_in_qa(s),
198
+ "object_recognition": lambda s: make_object_recognition(s, all_objects),
199
+ }
200
+
201
+ for cond_name, gen_fn in CONDITIONS.items():
202
+ # 셔플된 복사본 사용
203
+ shuffled = all_samples.copy()
204
+ random.shuffle(shuffled)
205
+
206
+ close_data, open_data = gen_fn(shuffled)
207
+
208
+ # ID 부여
209
+ for i, d in enumerate(close_data):
210
+ d["id"] = i
211
+ for i, d in enumerate(open_data):
212
+ d["id"] = i
213
+
214
+ # 저장
215
+ close_path = os.path.join(OUTPUT_DIR, f"{cond_name}_close_ended.json")
216
+ open_path = os.path.join(OUTPUT_DIR, f"{cond_name}_open_ended.json")
217
+
218
+ with open(close_path, "w") as f:
219
+ json.dump(close_data, f, indent=2, ensure_ascii=False)
220
+ with open(open_path, "w") as f:
221
+ json.dump(open_data, f, indent=2, ensure_ascii=False)
222
+
223
+ print(f"\n[{cond_name}]")
224
+ print(f" close: {len(close_data)} → {close_path}")
225
+ print(f" open: {len(open_data)} → {open_path}")
226
+ # 샘플 출력
227
+ print(f" sample close: Q={close_data[0]['question']}")
228
+ print(f" options={close_data[0].get('options', 'N/A')}")
229
+ print(f" answer={close_data[0]['answer']}")
230
+ print(f" sample open: Q={open_data[0]['question']}")
231
+ print(f" answer={open_data[0]['answer']}")
232
+
233
+ print(f"\n=== All done! {len(CONDITIONS) * 2} JSON files saved to {OUTPUT_DIR} ===")
object_recognition_close_ended.json ADDED
@@ -0,0 +1,678 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "video": "left/car.mp4",
4
+ "category": "left",
5
+ "question": "What is the object moving in this video?",
6
+ "options": [
7
+ "Bed",
8
+ "Dog",
9
+ "Car",
10
+ "Sphere"
11
+ ],
12
+ "answer": "C",
13
+ "id": 0
14
+ },
15
+ {
16
+ "video": "left/bicycle.mp4",
17
+ "category": "left",
18
+ "question": "What is the object moving in this video?",
19
+ "options": [
20
+ "Horse",
21
+ "Laptop",
22
+ "Bicycle",
23
+ "Bench"
24
+ ],
25
+ "answer": "C",
26
+ "id": 1
27
+ },
28
+ {
29
+ "video": "right/bench.mp4",
30
+ "category": "right",
31
+ "question": "What is the object moving in this video?",
32
+ "options": [
33
+ "Horse",
34
+ "Bench",
35
+ "Car",
36
+ "Bed"
37
+ ],
38
+ "answer": "B",
39
+ "id": 2
40
+ },
41
+ {
42
+ "video": "down/laptop.mp4",
43
+ "category": "down",
44
+ "question": "What is the object moving in this video?",
45
+ "options": [
46
+ "Basketball",
47
+ "Sophia",
48
+ "Horse",
49
+ "Laptop"
50
+ ],
51
+ "answer": "D",
52
+ "id": 3
53
+ },
54
+ {
55
+ "video": "right/basketball.mp4",
56
+ "category": "right",
57
+ "question": "What is the object moving in this video?",
58
+ "options": [
59
+ "Duck",
60
+ "Bicycle",
61
+ "Basketball",
62
+ "Horse"
63
+ ],
64
+ "answer": "C",
65
+ "id": 4
66
+ },
67
+ {
68
+ "video": "up/sphere.mp4",
69
+ "category": "up",
70
+ "question": "What is the object moving in this video?",
71
+ "options": [
72
+ "Dog",
73
+ "Bench",
74
+ "Basketball",
75
+ "Sphere"
76
+ ],
77
+ "answer": "D",
78
+ "id": 5
79
+ },
80
+ {
81
+ "video": "left/bed.mp4",
82
+ "category": "left",
83
+ "question": "What is the object moving in this video?",
84
+ "options": [
85
+ "Horse",
86
+ "Chair",
87
+ "Bed",
88
+ "Duck"
89
+ ],
90
+ "answer": "C",
91
+ "id": 6
92
+ },
93
+ {
94
+ "video": "down/duck.mp4",
95
+ "category": "down",
96
+ "question": "What is the object moving in this video?",
97
+ "options": [
98
+ "Basketball",
99
+ "Car",
100
+ "Bicycle",
101
+ "Duck"
102
+ ],
103
+ "answer": "D",
104
+ "id": 7
105
+ },
106
+ {
107
+ "video": "up/laptop.mp4",
108
+ "category": "up",
109
+ "question": "What is the object moving in this video?",
110
+ "options": [
111
+ "Basketball",
112
+ "Laptop",
113
+ "Sphere",
114
+ "Sofa"
115
+ ],
116
+ "answer": "B",
117
+ "id": 8
118
+ },
119
+ {
120
+ "video": "up/sophia.mp4",
121
+ "category": "up",
122
+ "question": "What is the object moving in this video?",
123
+ "options": [
124
+ "Bed",
125
+ "Horse",
126
+ "Sophia",
127
+ "Basketball"
128
+ ],
129
+ "answer": "C",
130
+ "id": 9
131
+ },
132
+ {
133
+ "video": "up/chair.mp4",
134
+ "category": "up",
135
+ "question": "What is the object moving in this video?",
136
+ "options": [
137
+ "Sophia",
138
+ "Duck",
139
+ "Bicycle",
140
+ "Chair"
141
+ ],
142
+ "answer": "D",
143
+ "id": 10
144
+ },
145
+ {
146
+ "video": "down/sofa.mp4",
147
+ "category": "down",
148
+ "question": "What is the object moving in this video?",
149
+ "options": [
150
+ "Basketball",
151
+ "Sphere",
152
+ "Laptop",
153
+ "Sofa"
154
+ ],
155
+ "answer": "D",
156
+ "id": 11
157
+ },
158
+ {
159
+ "video": "up/sofa.mp4",
160
+ "category": "up",
161
+ "question": "What is the object moving in this video?",
162
+ "options": [
163
+ "Sofa",
164
+ "Bicycle",
165
+ "Chair",
166
+ "Car"
167
+ ],
168
+ "answer": "A",
169
+ "id": 12
170
+ },
171
+ {
172
+ "video": "left/horse.mp4",
173
+ "category": "left",
174
+ "question": "What is the object moving in this video?",
175
+ "options": [
176
+ "Sophia",
177
+ "Horse",
178
+ "Bench",
179
+ "Car"
180
+ ],
181
+ "answer": "B",
182
+ "id": 13
183
+ },
184
+ {
185
+ "video": "right/car.mp4",
186
+ "category": "right",
187
+ "question": "What is the object moving in this video?",
188
+ "options": [
189
+ "Basketball",
190
+ "Horse",
191
+ "Sofa",
192
+ "Car"
193
+ ],
194
+ "answer": "D",
195
+ "id": 14
196
+ },
197
+ {
198
+ "video": "down/sophia.mp4",
199
+ "category": "down",
200
+ "question": "What is the object moving in this video?",
201
+ "options": [
202
+ "Horse",
203
+ "Bench",
204
+ "Sophia",
205
+ "Car"
206
+ ],
207
+ "answer": "C",
208
+ "id": 15
209
+ },
210
+ {
211
+ "video": "down/basketball.mp4",
212
+ "category": "down",
213
+ "question": "What is the object moving in this video?",
214
+ "options": [
215
+ "Basketball",
216
+ "Dog",
217
+ "Chair",
218
+ "Bicycle"
219
+ ],
220
+ "answer": "A",
221
+ "id": 16
222
+ },
223
+ {
224
+ "video": "down/dog.mp4",
225
+ "category": "down",
226
+ "question": "What is the object moving in this video?",
227
+ "options": [
228
+ "Laptop",
229
+ "Sofa",
230
+ "Sophia",
231
+ "Dog"
232
+ ],
233
+ "answer": "D",
234
+ "id": 17
235
+ },
236
+ {
237
+ "video": "right/sofa.mp4",
238
+ "category": "right",
239
+ "question": "What is the object moving in this video?",
240
+ "options": [
241
+ "Sophia",
242
+ "Bench",
243
+ "Sofa",
244
+ "Bed"
245
+ ],
246
+ "answer": "C",
247
+ "id": 18
248
+ },
249
+ {
250
+ "video": "down/sphere.mp4",
251
+ "category": "down",
252
+ "question": "What is the object moving in this video?",
253
+ "options": [
254
+ "Bench",
255
+ "Sphere",
256
+ "Sophia",
257
+ "Horse"
258
+ ],
259
+ "answer": "B",
260
+ "id": 19
261
+ },
262
+ {
263
+ "video": "left/basketball.mp4",
264
+ "category": "left",
265
+ "question": "What is the object moving in this video?",
266
+ "options": [
267
+ "Basketball",
268
+ "Sphere",
269
+ "Car",
270
+ "Dog"
271
+ ],
272
+ "answer": "A",
273
+ "id": 20
274
+ },
275
+ {
276
+ "video": "down/chair.mp4",
277
+ "category": "down",
278
+ "question": "What is the object moving in this video?",
279
+ "options": [
280
+ "Basketball",
281
+ "Chair",
282
+ "Car",
283
+ "Bed"
284
+ ],
285
+ "answer": "B",
286
+ "id": 21
287
+ },
288
+ {
289
+ "video": "right/sophia.mp4",
290
+ "category": "right",
291
+ "question": "What is the object moving in this video?",
292
+ "options": [
293
+ "Bench",
294
+ "Basketball",
295
+ "Sophia",
296
+ "Chair"
297
+ ],
298
+ "answer": "C",
299
+ "id": 22
300
+ },
301
+ {
302
+ "video": "down/car.mp4",
303
+ "category": "down",
304
+ "question": "What is the object moving in this video?",
305
+ "options": [
306
+ "Laptop",
307
+ "Duck",
308
+ "Sphere",
309
+ "Car"
310
+ ],
311
+ "answer": "D",
312
+ "id": 23
313
+ },
314
+ {
315
+ "video": "up/dog.mp4",
316
+ "category": "up",
317
+ "question": "What is the object moving in this video?",
318
+ "options": [
319
+ "Bench",
320
+ "Laptop",
321
+ "Sphere",
322
+ "Dog"
323
+ ],
324
+ "answer": "D",
325
+ "id": 24
326
+ },
327
+ {
328
+ "video": "right/horse.mp4",
329
+ "category": "right",
330
+ "question": "What is the object moving in this video?",
331
+ "options": [
332
+ "Basketball",
333
+ "Horse",
334
+ "Dog",
335
+ "Bench"
336
+ ],
337
+ "answer": "B",
338
+ "id": 25
339
+ },
340
+ {
341
+ "video": "left/chair.mp4",
342
+ "category": "left",
343
+ "question": "What is the object moving in this video?",
344
+ "options": [
345
+ "Sophia",
346
+ "Bicycle",
347
+ "Dog",
348
+ "Chair"
349
+ ],
350
+ "answer": "D",
351
+ "id": 26
352
+ },
353
+ {
354
+ "video": "up/horse.mp4",
355
+ "category": "up",
356
+ "question": "What is the object moving in this video?",
357
+ "options": [
358
+ "Bench",
359
+ "Bicycle",
360
+ "Horse",
361
+ "Sofa"
362
+ ],
363
+ "answer": "C",
364
+ "id": 27
365
+ },
366
+ {
367
+ "video": "right/laptop.mp4",
368
+ "category": "right",
369
+ "question": "What is the object moving in this video?",
370
+ "options": [
371
+ "Basketball",
372
+ "Laptop",
373
+ "Bench",
374
+ "Chair"
375
+ ],
376
+ "answer": "B",
377
+ "id": 28
378
+ },
379
+ {
380
+ "video": "down/bicycle.mp4",
381
+ "category": "down",
382
+ "question": "What is the object moving in this video?",
383
+ "options": [
384
+ "Bench",
385
+ "Chair",
386
+ "Bicycle",
387
+ "Bed"
388
+ ],
389
+ "answer": "C",
390
+ "id": 29
391
+ },
392
+ {
393
+ "video": "left/dog.mp4",
394
+ "category": "left",
395
+ "question": "What is the object moving in this video?",
396
+ "options": [
397
+ "Horse",
398
+ "Dog",
399
+ "Bicycle",
400
+ "Sphere"
401
+ ],
402
+ "answer": "B",
403
+ "id": 30
404
+ },
405
+ {
406
+ "video": "right/chair.mp4",
407
+ "category": "right",
408
+ "question": "What is the object moving in this video?",
409
+ "options": [
410
+ "Chair",
411
+ "Basketball",
412
+ "Bicycle",
413
+ "Sphere"
414
+ ],
415
+ "answer": "A",
416
+ "id": 31
417
+ },
418
+ {
419
+ "video": "up/bench.mp4",
420
+ "category": "up",
421
+ "question": "What is the object moving in this video?",
422
+ "options": [
423
+ "Bench",
424
+ "Bed",
425
+ "Chair",
426
+ "Dog"
427
+ ],
428
+ "answer": "A",
429
+ "id": 32
430
+ },
431
+ {
432
+ "video": "left/sofa.mp4",
433
+ "category": "left",
434
+ "question": "What is the object moving in this video?",
435
+ "options": [
436
+ "Sofa",
437
+ "Car",
438
+ "Bed",
439
+ "Basketball"
440
+ ],
441
+ "answer": "A",
442
+ "id": 33
443
+ },
444
+ {
445
+ "video": "left/sphere.mp4",
446
+ "category": "left",
447
+ "question": "What is the object moving in this video?",
448
+ "options": [
449
+ "Sphere",
450
+ "Bed",
451
+ "Basketball",
452
+ "Laptop"
453
+ ],
454
+ "answer": "A",
455
+ "id": 34
456
+ },
457
+ {
458
+ "video": "up/bicycle.mp4",
459
+ "category": "up",
460
+ "question": "What is the object moving in this video?",
461
+ "options": [
462
+ "Sofa",
463
+ "Laptop",
464
+ "Duck",
465
+ "Bicycle"
466
+ ],
467
+ "answer": "D",
468
+ "id": 35
469
+ },
470
+ {
471
+ "video": "right/dog.mp4",
472
+ "category": "right",
473
+ "question": "What is the object moving in this video?",
474
+ "options": [
475
+ "Car",
476
+ "Duck",
477
+ "Basketball",
478
+ "Dog"
479
+ ],
480
+ "answer": "D",
481
+ "id": 36
482
+ },
483
+ {
484
+ "video": "up/basketball.mp4",
485
+ "category": "up",
486
+ "question": "What is the object moving in this video?",
487
+ "options": [
488
+ "Basketball",
489
+ "Dog",
490
+ "Bench",
491
+ "Duck"
492
+ ],
493
+ "answer": "A",
494
+ "id": 37
495
+ },
496
+ {
497
+ "video": "right/bed.mp4",
498
+ "category": "right",
499
+ "question": "What is the object moving in this video?",
500
+ "options": [
501
+ "Bed",
502
+ "Sophia",
503
+ "Chair",
504
+ "Bench"
505
+ ],
506
+ "answer": "A",
507
+ "id": 38
508
+ },
509
+ {
510
+ "video": "right/bicycle.mp4",
511
+ "category": "right",
512
+ "question": "What is the object moving in this video?",
513
+ "options": [
514
+ "Duck",
515
+ "Chair",
516
+ "Bicycle",
517
+ "Dog"
518
+ ],
519
+ "answer": "C",
520
+ "id": 39
521
+ },
522
+ {
523
+ "video": "right/duck.mp4",
524
+ "category": "right",
525
+ "question": "What is the object moving in this video?",
526
+ "options": [
527
+ "Bench",
528
+ "Duck",
529
+ "Sophia",
530
+ "Dog"
531
+ ],
532
+ "answer": "B",
533
+ "id": 40
534
+ },
535
+ {
536
+ "video": "left/laptop.mp4",
537
+ "category": "left",
538
+ "question": "What is the object moving in this video?",
539
+ "options": [
540
+ "Laptop",
541
+ "Car",
542
+ "Sphere",
543
+ "Bicycle"
544
+ ],
545
+ "answer": "A",
546
+ "id": 41
547
+ },
548
+ {
549
+ "video": "left/sophia.mp4",
550
+ "category": "left",
551
+ "question": "What is the object moving in this video?",
552
+ "options": [
553
+ "Sophia",
554
+ "Sofa",
555
+ "Sphere",
556
+ "Duck"
557
+ ],
558
+ "answer": "A",
559
+ "id": 42
560
+ },
561
+ {
562
+ "video": "up/bed.mp4",
563
+ "category": "up",
564
+ "question": "What is the object moving in this video?",
565
+ "options": [
566
+ "Bed",
567
+ "Sphere",
568
+ "Bench",
569
+ "Bicycle"
570
+ ],
571
+ "answer": "A",
572
+ "id": 43
573
+ },
574
+ {
575
+ "video": "down/horse.mp4",
576
+ "category": "down",
577
+ "question": "What is the object moving in this video?",
578
+ "options": [
579
+ "Car",
580
+ "Bicycle",
581
+ "Horse",
582
+ "Bed"
583
+ ],
584
+ "answer": "C",
585
+ "id": 44
586
+ },
587
+ {
588
+ "video": "up/car.mp4",
589
+ "category": "up",
590
+ "question": "What is the object moving in this video?",
591
+ "options": [
592
+ "Basketball",
593
+ "Car",
594
+ "Sphere",
595
+ "Bicycle"
596
+ ],
597
+ "answer": "B",
598
+ "id": 45
599
+ },
600
+ {
601
+ "video": "down/bed.mp4",
602
+ "category": "down",
603
+ "question": "What is the object moving in this video?",
604
+ "options": [
605
+ "Bed",
606
+ "Sofa",
607
+ "Duck",
608
+ "Horse"
609
+ ],
610
+ "answer": "A",
611
+ "id": 46
612
+ },
613
+ {
614
+ "video": "down/bench.mp4",
615
+ "category": "down",
616
+ "question": "What is the object moving in this video?",
617
+ "options": [
618
+ "Car",
619
+ "Bench",
620
+ "Duck",
621
+ "Horse"
622
+ ],
623
+ "answer": "B",
624
+ "id": 47
625
+ },
626
+ {
627
+ "video": "up/duck.mp4",
628
+ "category": "up",
629
+ "question": "What is the object moving in this video?",
630
+ "options": [
631
+ "Duck",
632
+ "Bicycle",
633
+ "Dog",
634
+ "Bed"
635
+ ],
636
+ "answer": "A",
637
+ "id": 48
638
+ },
639
+ {
640
+ "video": "right/sphere.mp4",
641
+ "category": "right",
642
+ "question": "What is the object moving in this video?",
643
+ "options": [
644
+ "Horse",
645
+ "Bicycle",
646
+ "Basketball",
647
+ "Sphere"
648
+ ],
649
+ "answer": "D",
650
+ "id": 49
651
+ },
652
+ {
653
+ "video": "left/duck.mp4",
654
+ "category": "left",
655
+ "question": "What is the object moving in this video?",
656
+ "options": [
657
+ "Duck",
658
+ "Laptop",
659
+ "Horse",
660
+ "Sophia"
661
+ ],
662
+ "answer": "A",
663
+ "id": 50
664
+ },
665
+ {
666
+ "video": "left/bench.mp4",
667
+ "category": "left",
668
+ "question": "What is the object moving in this video?",
669
+ "options": [
670
+ "Bench",
671
+ "Horse",
672
+ "Laptop",
673
+ "Bicycle"
674
+ ],
675
+ "answer": "A",
676
+ "id": 51
677
+ }
678
+ ]
object_recognition_open_ended.json ADDED
@@ -0,0 +1,366 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "video": "left/car.mp4",
4
+ "category": "left",
5
+ "question": "What is the object moving in this video?",
6
+ "answer": "Car",
7
+ "id": 0
8
+ },
9
+ {
10
+ "video": "left/bicycle.mp4",
11
+ "category": "left",
12
+ "question": "What is the object moving in this video?",
13
+ "answer": "Bicycle",
14
+ "id": 1
15
+ },
16
+ {
17
+ "video": "right/bench.mp4",
18
+ "category": "right",
19
+ "question": "What is the object moving in this video?",
20
+ "answer": "Bench",
21
+ "id": 2
22
+ },
23
+ {
24
+ "video": "down/laptop.mp4",
25
+ "category": "down",
26
+ "question": "What is the object moving in this video?",
27
+ "answer": "Laptop",
28
+ "id": 3
29
+ },
30
+ {
31
+ "video": "right/basketball.mp4",
32
+ "category": "right",
33
+ "question": "What is the object moving in this video?",
34
+ "answer": "Basketball",
35
+ "id": 4
36
+ },
37
+ {
38
+ "video": "up/sphere.mp4",
39
+ "category": "up",
40
+ "question": "What is the object moving in this video?",
41
+ "answer": "Sphere",
42
+ "id": 5
43
+ },
44
+ {
45
+ "video": "left/bed.mp4",
46
+ "category": "left",
47
+ "question": "What is the object moving in this video?",
48
+ "answer": "Bed",
49
+ "id": 6
50
+ },
51
+ {
52
+ "video": "down/duck.mp4",
53
+ "category": "down",
54
+ "question": "What is the object moving in this video?",
55
+ "answer": "Duck",
56
+ "id": 7
57
+ },
58
+ {
59
+ "video": "up/laptop.mp4",
60
+ "category": "up",
61
+ "question": "What is the object moving in this video?",
62
+ "answer": "Laptop",
63
+ "id": 8
64
+ },
65
+ {
66
+ "video": "up/sophia.mp4",
67
+ "category": "up",
68
+ "question": "What is the object moving in this video?",
69
+ "answer": "Sophia",
70
+ "id": 9
71
+ },
72
+ {
73
+ "video": "up/chair.mp4",
74
+ "category": "up",
75
+ "question": "What is the object moving in this video?",
76
+ "answer": "Chair",
77
+ "id": 10
78
+ },
79
+ {
80
+ "video": "down/sofa.mp4",
81
+ "category": "down",
82
+ "question": "What is the object moving in this video?",
83
+ "answer": "Sofa",
84
+ "id": 11
85
+ },
86
+ {
87
+ "video": "up/sofa.mp4",
88
+ "category": "up",
89
+ "question": "What is the object moving in this video?",
90
+ "answer": "Sofa",
91
+ "id": 12
92
+ },
93
+ {
94
+ "video": "left/horse.mp4",
95
+ "category": "left",
96
+ "question": "What is the object moving in this video?",
97
+ "answer": "Horse",
98
+ "id": 13
99
+ },
100
+ {
101
+ "video": "right/car.mp4",
102
+ "category": "right",
103
+ "question": "What is the object moving in this video?",
104
+ "answer": "Car",
105
+ "id": 14
106
+ },
107
+ {
108
+ "video": "down/sophia.mp4",
109
+ "category": "down",
110
+ "question": "What is the object moving in this video?",
111
+ "answer": "Sophia",
112
+ "id": 15
113
+ },
114
+ {
115
+ "video": "down/basketball.mp4",
116
+ "category": "down",
117
+ "question": "What is the object moving in this video?",
118
+ "answer": "Basketball",
119
+ "id": 16
120
+ },
121
+ {
122
+ "video": "down/dog.mp4",
123
+ "category": "down",
124
+ "question": "What is the object moving in this video?",
125
+ "answer": "Dog",
126
+ "id": 17
127
+ },
128
+ {
129
+ "video": "right/sofa.mp4",
130
+ "category": "right",
131
+ "question": "What is the object moving in this video?",
132
+ "answer": "Sofa",
133
+ "id": 18
134
+ },
135
+ {
136
+ "video": "down/sphere.mp4",
137
+ "category": "down",
138
+ "question": "What is the object moving in this video?",
139
+ "answer": "Sphere",
140
+ "id": 19
141
+ },
142
+ {
143
+ "video": "left/basketball.mp4",
144
+ "category": "left",
145
+ "question": "What is the object moving in this video?",
146
+ "answer": "Basketball",
147
+ "id": 20
148
+ },
149
+ {
150
+ "video": "down/chair.mp4",
151
+ "category": "down",
152
+ "question": "What is the object moving in this video?",
153
+ "answer": "Chair",
154
+ "id": 21
155
+ },
156
+ {
157
+ "video": "right/sophia.mp4",
158
+ "category": "right",
159
+ "question": "What is the object moving in this video?",
160
+ "answer": "Sophia",
161
+ "id": 22
162
+ },
163
+ {
164
+ "video": "down/car.mp4",
165
+ "category": "down",
166
+ "question": "What is the object moving in this video?",
167
+ "answer": "Car",
168
+ "id": 23
169
+ },
170
+ {
171
+ "video": "up/dog.mp4",
172
+ "category": "up",
173
+ "question": "What is the object moving in this video?",
174
+ "answer": "Dog",
175
+ "id": 24
176
+ },
177
+ {
178
+ "video": "right/horse.mp4",
179
+ "category": "right",
180
+ "question": "What is the object moving in this video?",
181
+ "answer": "Horse",
182
+ "id": 25
183
+ },
184
+ {
185
+ "video": "left/chair.mp4",
186
+ "category": "left",
187
+ "question": "What is the object moving in this video?",
188
+ "answer": "Chair",
189
+ "id": 26
190
+ },
191
+ {
192
+ "video": "up/horse.mp4",
193
+ "category": "up",
194
+ "question": "What is the object moving in this video?",
195
+ "answer": "Horse",
196
+ "id": 27
197
+ },
198
+ {
199
+ "video": "right/laptop.mp4",
200
+ "category": "right",
201
+ "question": "What is the object moving in this video?",
202
+ "answer": "Laptop",
203
+ "id": 28
204
+ },
205
+ {
206
+ "video": "down/bicycle.mp4",
207
+ "category": "down",
208
+ "question": "What is the object moving in this video?",
209
+ "answer": "Bicycle",
210
+ "id": 29
211
+ },
212
+ {
213
+ "video": "left/dog.mp4",
214
+ "category": "left",
215
+ "question": "What is the object moving in this video?",
216
+ "answer": "Dog",
217
+ "id": 30
218
+ },
219
+ {
220
+ "video": "right/chair.mp4",
221
+ "category": "right",
222
+ "question": "What is the object moving in this video?",
223
+ "answer": "Chair",
224
+ "id": 31
225
+ },
226
+ {
227
+ "video": "up/bench.mp4",
228
+ "category": "up",
229
+ "question": "What is the object moving in this video?",
230
+ "answer": "Bench",
231
+ "id": 32
232
+ },
233
+ {
234
+ "video": "left/sofa.mp4",
235
+ "category": "left",
236
+ "question": "What is the object moving in this video?",
237
+ "answer": "Sofa",
238
+ "id": 33
239
+ },
240
+ {
241
+ "video": "left/sphere.mp4",
242
+ "category": "left",
243
+ "question": "What is the object moving in this video?",
244
+ "answer": "Sphere",
245
+ "id": 34
246
+ },
247
+ {
248
+ "video": "up/bicycle.mp4",
249
+ "category": "up",
250
+ "question": "What is the object moving in this video?",
251
+ "answer": "Bicycle",
252
+ "id": 35
253
+ },
254
+ {
255
+ "video": "right/dog.mp4",
256
+ "category": "right",
257
+ "question": "What is the object moving in this video?",
258
+ "answer": "Dog",
259
+ "id": 36
260
+ },
261
+ {
262
+ "video": "up/basketball.mp4",
263
+ "category": "up",
264
+ "question": "What is the object moving in this video?",
265
+ "answer": "Basketball",
266
+ "id": 37
267
+ },
268
+ {
269
+ "video": "right/bed.mp4",
270
+ "category": "right",
271
+ "question": "What is the object moving in this video?",
272
+ "answer": "Bed",
273
+ "id": 38
274
+ },
275
+ {
276
+ "video": "right/bicycle.mp4",
277
+ "category": "right",
278
+ "question": "What is the object moving in this video?",
279
+ "answer": "Bicycle",
280
+ "id": 39
281
+ },
282
+ {
283
+ "video": "right/duck.mp4",
284
+ "category": "right",
285
+ "question": "What is the object moving in this video?",
286
+ "answer": "Duck",
287
+ "id": 40
288
+ },
289
+ {
290
+ "video": "left/laptop.mp4",
291
+ "category": "left",
292
+ "question": "What is the object moving in this video?",
293
+ "answer": "Laptop",
294
+ "id": 41
295
+ },
296
+ {
297
+ "video": "left/sophia.mp4",
298
+ "category": "left",
299
+ "question": "What is the object moving in this video?",
300
+ "answer": "Sophia",
301
+ "id": 42
302
+ },
303
+ {
304
+ "video": "up/bed.mp4",
305
+ "category": "up",
306
+ "question": "What is the object moving in this video?",
307
+ "answer": "Bed",
308
+ "id": 43
309
+ },
310
+ {
311
+ "video": "down/horse.mp4",
312
+ "category": "down",
313
+ "question": "What is the object moving in this video?",
314
+ "answer": "Horse",
315
+ "id": 44
316
+ },
317
+ {
318
+ "video": "up/car.mp4",
319
+ "category": "up",
320
+ "question": "What is the object moving in this video?",
321
+ "answer": "Car",
322
+ "id": 45
323
+ },
324
+ {
325
+ "video": "down/bed.mp4",
326
+ "category": "down",
327
+ "question": "What is the object moving in this video?",
328
+ "answer": "Bed",
329
+ "id": 46
330
+ },
331
+ {
332
+ "video": "down/bench.mp4",
333
+ "category": "down",
334
+ "question": "What is the object moving in this video?",
335
+ "answer": "Bench",
336
+ "id": 47
337
+ },
338
+ {
339
+ "video": "up/duck.mp4",
340
+ "category": "up",
341
+ "question": "What is the object moving in this video?",
342
+ "answer": "Duck",
343
+ "id": 48
344
+ },
345
+ {
346
+ "video": "right/sphere.mp4",
347
+ "category": "right",
348
+ "question": "What is the object moving in this video?",
349
+ "answer": "Sphere",
350
+ "id": 49
351
+ },
352
+ {
353
+ "video": "left/duck.mp4",
354
+ "category": "left",
355
+ "question": "What is the object moving in this video?",
356
+ "answer": "Duck",
357
+ "id": 50
358
+ },
359
+ {
360
+ "video": "left/bench.mp4",
361
+ "category": "left",
362
+ "question": "What is the object moving in this video?",
363
+ "answer": "Bench",
364
+ "id": 51
365
+ }
366
+ ]