-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPro-Response-Streaming.json
More file actions
20561 lines (20561 loc) · 783 KB
/
Pro-Response-Streaming.json
File metadata and controls
20561 lines (20561 loc) · 783 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"video_source": "Ego4D-Narration-Val",
"video_id": "87bbc5c0-1b4a-47a5-bfbb-ec417b8e12d1",
"video_path": "87bbc5c0-1b4a-47a5-bfbb-ec417b8e12d1.mp4",
"duration_sec": 312.5,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"87bbc5c0-1b4a-47a5-bfbb-ec417b8e12d1@1",
"87bbc5c0-1b4a-47a5-bfbb-ec417b8e12d1@2"
],
"question": [
"What can you tell me about? Be concise.",
"Simply interpret the scene for me."
],
"question_time": [
270.8421305546634,
305.95987055466344
],
"choices": [],
"correct_answer": {
"87bbc5c0-1b4a-47a5-bfbb-ec417b8e12d1@1": [
"You file a piece of furniture with a hand file.",
"You wipe the furniture with your right hand.",
"You remove the sellotape from the furniture."
],
"87bbc5c0-1b4a-47a5-bfbb-ec417b8e12d1@2": [
"You pick up some sellotapes from the furniture with your right hand.",
"You walk to the front of the furniture.",
"You touch the camera."
]
},
"time_reference": {
"87bbc5c0-1b4a-47a5-bfbb-ec417b8e12d1@1": [
270.8421305546634,
275.80245055466344,
277.9683505546634
],
"87bbc5c0-1b4a-47a5-bfbb-ec417b8e12d1@2": [
305.95987055466344,
309.00634055466344,
311.0571705546634
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "5991c3ba-86a4-46d0-be04-966d1f681b4d",
"video_path": "5991c3ba-86a4-46d0-be04-966d1f681b4d.mp4",
"duration_sec": 94.0,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"5991c3ba-86a4-46d0-be04-966d1f681b4d@1",
"5991c3ba-86a4-46d0-be04-966d1f681b4d@2"
],
"question": [
"Help me to illustrate my view in short.",
"Hey assistant, do you know the current video content? Reply me concisely."
],
"question_time": [
0.4480772,
43.4372172
],
"choices": [],
"correct_answer": {
"5991c3ba-86a4-46d0-be04-966d1f681b4d@1": [
"You pick a bowl from the table.",
"You put something in the bowl.",
"You put the bowl on the table.",
"You open the microwave."
],
"5991c3ba-86a4-46d0-be04-966d1f681b4d@2": [
"You put the washing sponge on the sink.",
"You turn off the tap."
]
},
"time_reference": {
"5991c3ba-86a4-46d0-be04-966d1f681b4d@1": [
0.4480772,
1.4026672,
6.1303872,
8.509067199999999
],
"5991c3ba-86a4-46d0-be04-966d1f681b4d@2": [
43.4372172,
44.1893272
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "6d3939f5-5636-43c7-94bb-86318392bd2d",
"video_path": "6d3939f5-5636-43c7-94bb-86318392bd2d.mp4",
"duration_sec": 533.75,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"6d3939f5-5636-43c7-94bb-86318392bd2d@1"
],
"question": [
"What can you tell me about? Be concise."
],
"question_time": [
270.0210286458333
],
"choices": [],
"correct_answer": {
"6d3939f5-5636-43c7-94bb-86318392bd2d@1": [
"You switch the light on.",
"You walk around the house.",
"You turn the board."
]
},
"time_reference": {
"6d3939f5-5636-43c7-94bb-86318392bd2d@1": [
270.0210286458333,
271.7579286458333,
273.27844864583335
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "8d84ee2b-5dcb-4311-9769-a52e7b68d9e1",
"video_path": "8d84ee2b-5dcb-4311-9769-a52e7b68d9e1.mp4",
"duration_sec": 488.0,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@1",
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@2",
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@3",
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@4",
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@5"
],
"question": [
"Continuously answer what you observed with simple text.",
"Simply interpret the scene for me.",
"Simply interpret the scene for me.",
"Hey assistant, do you know the current video content? Reply me concisely.",
"Help me to illustrate my view in short."
],
"question_time": [
310.17134,
337.94952,
378.68147,
409.24427000000003,
452.31483000000003
],
"choices": [],
"correct_answer": {
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@1": [
"You remove the spanner from your gloved right hand from the scooter wheel.",
"You remove your gloved left hand from the scooter wheel.",
"A man walks to a spot in the workshop."
],
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@2": [
"You remove both hands from the scooter on the floor.",
"You shift a dissembled part of the wheel cover with your gloved right hand on the floor."
],
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@3": [
"You remove the spanner from your gloved hands, taking it away from the wheel cover.",
"You shift a spanner on the floor with your left hand."
],
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@4": [
"You move to the table in the workshop.",
"You pick a spanner from the table with your gloved left hand.",
"You pick up a hammer from the floor with your gloved left hand.",
"You move to the scooter in the workshop."
],
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@5": [
"You drop the spanner on the floor with your gloved right hand.",
"You cut the wire on the scooter with the pliers in your gloved right hand.",
"You pass the plier from one gloved hand to the other."
]
},
"time_reference": {
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@1": [
310.17134,
310.36778,
310.65753
],
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@2": [
337.94952,
339.18138999999996
],
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@3": [
378.68147,
379.30177000000003
],
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@4": [
409.24427000000003,
410.92795,
412.54212,
413.01599999999996
],
"8d84ee2b-5dcb-4311-9769-a52e7b68d9e1@5": [
452.31483000000003,
453.26706,
456.37999
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "a850112c-68e3-45d7-9fc0-9ada21e970a4",
"video_path": "a850112c-68e3-45d7-9fc0-9ada21e970a4.mp4",
"duration_sec": 651.5,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"a850112c-68e3-45d7-9fc0-9ada21e970a4@1",
"a850112c-68e3-45d7-9fc0-9ada21e970a4@2",
"a850112c-68e3-45d7-9fc0-9ada21e970a4@3"
],
"question": [
"Help me to illustrate my view in short.",
"Continuously answer what you observed with simple text.",
"What can you tell me about? Be concise."
],
"question_time": [
540.0420572,
598.6403072,
632.8818472
],
"choices": [],
"correct_answer": {
"a850112c-68e3-45d7-9fc0-9ada21e970a4@1": [
"And a woman holds the grinder with you.",
"A woman hands the grinder to you.",
"A woman walks away from you.",
"She picks up a fan."
],
"a850112c-68e3-45d7-9fc0-9ada21e970a4@2": [
"You make up a wire.",
"You drop the wire."
],
"a850112c-68e3-45d7-9fc0-9ada21e970a4@3": [
"You make some small movements.",
"You adjust the camera."
]
},
"time_reference": {
"a850112c-68e3-45d7-9fc0-9ada21e970a4@1": [
540.0420572,
540.3406472,
543.7923272,
553.1678272
],
"a850112c-68e3-45d7-9fc0-9ada21e970a4@2": [
598.6403072,
600.7609772000001
],
"a850112c-68e3-45d7-9fc0-9ada21e970a4@3": [
632.8818472,
641.9453272000001
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "89857b33-fa50-469a-bbb3-91c8ab655931",
"video_path": "89857b33-fa50-469a-bbb3-91c8ab655931.mp4",
"duration_sec": 164.25,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"89857b33-fa50-469a-bbb3-91c8ab655931@1",
"89857b33-fa50-469a-bbb3-91c8ab655931@2",
"89857b33-fa50-469a-bbb3-91c8ab655931@3",
"89857b33-fa50-469a-bbb3-91c8ab655931@4"
],
"question": [
"Help me to illustrate my view in short.",
"Hey assistant, do you know the current video content? Reply me concisely.",
"Hey assistant, do you know the current video content? Reply me concisely.",
"What is the action now? Please response in short."
],
"question_time": [
0.9912441999999999,
52.1517642,
95.47542419999999,
140.3286142
],
"choices": [],
"correct_answer": {
"89857b33-fa50-469a-bbb3-91c8ab655931@1": [
"You mold the dough with your hands.",
"You rub your hand with the powder on the table."
],
"89857b33-fa50-469a-bbb3-91c8ab655931@2": [
"You turn around in the kitchen.",
"You open the kitchen drawer with your hand."
],
"89857b33-fa50-469a-bbb3-91c8ab655931@3": [
"You move the orange bowl on the kitchen table.",
"You mold the dough with your hands.",
"You pick up the powder container on the table.",
"You pour the powder on the table."
],
"89857b33-fa50-469a-bbb3-91c8ab655931@4": [
"You drop the ball of dough on the side of the kitchen table.",
"You pick up another ball of dough with your left hand.",
"You put the ball of dough on the powder."
]
},
"time_reference": {
"89857b33-fa50-469a-bbb3-91c8ab655931@1": [
0.9912441999999999,
23.137164200000004
],
"89857b33-fa50-469a-bbb3-91c8ab655931@2": [
52.1517642,
52.1820642
],
"89857b33-fa50-469a-bbb3-91c8ab655931@3": [
95.47542419999999,
97.09880419999999,
105.39161419999999,
107.27159419999998
],
"89857b33-fa50-469a-bbb3-91c8ab655931@4": [
140.3286142,
141.1475242,
141.6023642
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "775acd8e-086f-48cf-adf3-c154f0d0bd2d",
"video_path": "775acd8e-086f-48cf-adf3-c154f0d0bd2d.mp4",
"duration_sec": 1708.0,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@1",
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@2",
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@3",
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@4",
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@5",
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@6"
],
"question": [
"Please simply describe what do you see.",
"Help me to illustrate my view in short.",
"What is the action now? Please response in short.",
"Please simply describe what do you see.",
"Do concise real-time narration.",
"What can you tell me about? Be concise."
],
"question_time": [
1350.0640623999998,
1425.7790223999998,
1451.5365223999997,
1513.7328623999997,
1568.5129524,
1604.8785323999998
],
"choices": [],
"correct_answer": {
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@1": [
"You put your arms on the blue pull-up bar.",
"You remove your left arm from the blue pull-up bar.",
"You put your left arm on the blue pull-up bar."
],
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@2": [
"You remove your hands from the blue pull-up bar.",
"You hold the blue pull-up bar with your right hand.",
"You hold the blue pull-up bar with your hands."
],
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@3": [
"You start doing pull-ups.",
"You stop the pull-up exercise.",
"You walk towards the blue spring rocker on the floor.",
"You walk towards the pull-up bar."
],
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@4": [
"You remove your arm from the blue pull-up bar.",
"You touch the camera with your left hand."
],
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@5": [
"You hold the blue pull-up bar with your hands.",
"You walk towards the blue spring rocker on the floor."
],
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@6": [
"You start doing pull-ups.",
"You stop the pull-up exercise."
]
},
"time_reference": {
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@1": [
1350.0640623999998,
1355.3033823999997,
1357.8345123999998
],
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@2": [
1425.7790223999998,
1428.2513723999998,
1432.3579323999998
],
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@3": [
1451.5365223999997,
1464.8970223999997,
1465.9167623999997,
1471.7271623999998
],
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@4": [
1513.7328623999997,
1517.0256123999998
],
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@5": [
1568.5129524,
1570.2343323999999
],
"775acd8e-086f-48cf-adf3-c154f0d0bd2d@6": [
1604.8785323999998,
1619.4997823999997
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "37d183ce-ba64-4ad2-8a54-ae2fb791fd38",
"video_path": "37d183ce-ba64-4ad2-8a54-ae2fb791fd38.mp4",
"duration_sec": 1058.25,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"37d183ce-ba64-4ad2-8a54-ae2fb791fd38@1",
"37d183ce-ba64-4ad2-8a54-ae2fb791fd38@2",
"37d183ce-ba64-4ad2-8a54-ae2fb791fd38@3"
],
"question": [
"Use simple text to explain what is shown in front of me.",
"Hey assistant, do you know the current video content? Reply me concisely.",
"Simply interpret the scene for me."
],
"question_time": [
840.0420572,
1020.4331772,
1041.5323872
],
"choices": [],
"correct_answer": {
"37d183ce-ba64-4ad2-8a54-ae2fb791fd38@1": [
"You fry a pouch.",
"You pick up a spoon.",
"You fry a pouch."
],
"37d183ce-ba64-4ad2-8a54-ae2fb791fd38@2": [
"You pick a Mandazi from the pan.",
"You put down the pouch."
],
"37d183ce-ba64-4ad2-8a54-ae2fb791fd38@3": [
"You stand up from your seat.",
"You pick a pouch.",
"You put the Mandazi inside a pan."
]
},
"time_reference": {
"37d183ce-ba64-4ad2-8a54-ae2fb791fd38@1": [
840.0420572,
865.7682672000001,
867.8544172000001
],
"37d183ce-ba64-4ad2-8a54-ae2fb791fd38@2": [
1020.4331772,
1037.2520072
],
"37d183ce-ba64-4ad2-8a54-ae2fb791fd38@3": [
1041.5323872,
1046.8086071999999,
1048.9569872
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "a6a2231e-725b-4732-8076-323e9525d03a",
"video_path": "a6a2231e-725b-4732-8076-323e9525d03a.mp4",
"duration_sec": 1519.5,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"a6a2231e-725b-4732-8076-323e9525d03a@1",
"a6a2231e-725b-4732-8076-323e9525d03a@2"
],
"question": [
"Please concisely narrate the video in real time.",
"What is the action now? Please response in short."
],
"question_time": [
1080.56233,
1299.64006
],
"choices": [],
"correct_answer": {
"a6a2231e-725b-4732-8076-323e9525d03a@1": [
"You mow a lawn around some houses with a lawn mower.",
"You turn around with the mowing machine in your hands.",
"You mow the lawn with the mowing machine."
],
"a6a2231e-725b-4732-8076-323e9525d03a@2": [
"You walk backward with the mowing machine in your hands.",
"You mow the lawn in a straight line.",
"You turn around with the mowing machine in your hands.",
"You mow the lawn with the mowing machine."
]
},
"time_reference": {
"a6a2231e-725b-4732-8076-323e9525d03a@1": [
1080.56233,
1110.86539,
1114.85783
],
"a6a2231e-725b-4732-8076-323e9525d03a@2": [
1299.64006,
1304.84695,
1321.03535,
1326.32653
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "6b91041f-bd60-4738-8305-46b144ce725d",
"video_path": "6b91041f-bd60-4738-8305-46b144ce725d.mp4",
"duration_sec": 553.25,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"6b91041f-bd60-4738-8305-46b144ce725d@1",
"6b91041f-bd60-4738-8305-46b144ce725d@2",
"6b91041f-bd60-4738-8305-46b144ce725d@3",
"6b91041f-bd60-4738-8305-46b144ce725d@4",
"6b91041f-bd60-4738-8305-46b144ce725d@5",
"6b91041f-bd60-4738-8305-46b144ce725d@6",
"6b91041f-bd60-4738-8305-46b144ce725d@7",
"6b91041f-bd60-4738-8305-46b144ce725d@8"
],
"question": [
"Please concisely narrate the video in real time.",
"What can you tell me about? Be concise.",
"Please concisely narrate the video in real time.",
"What is the action now? Please response in short.",
"Simply interpret the scene for me.",
"Continuously answer what you observed with simple text.",
"What is the action now? Please response in short.",
"Simply interpret the scene for me."
],
"question_time": [
1.16281,
66.20955,
104.94471,
124.87977,
152.00493,
207.2648,
245.57274,
297.15016
],
"choices": [],
"correct_answer": {
"6b91041f-bd60-4738-8305-46b144ce725d@1": [
"You pick the screw.",
"You place the screw on the drawer.",
"You pick up the screwdriver.",
"You loosen the screw."
],
"6b91041f-bd60-4738-8305-46b144ce725d@2": [
"You drive the nut onto the screw.",
"You pick up the screwdriver.",
"You tighten the screw."
],
"6b91041f-bd60-4738-8305-46b144ce725d@3": [
"You adjust the handle.",
"You check the handle.",
"You place the craw on the table."
],
"6b91041f-bd60-4738-8305-46b144ce725d@4": [
"You pick the container.",
"You walk around the workshop.",
"You open the container.",
"You place the lid on the table."
],
"6b91041f-bd60-4738-8305-46b144ce725d@5": [
"You place the screwdriver in the drawer.",
"You pick the screw."
],
"6b91041f-bd60-4738-8305-46b144ce725d@6": [
"You hold the nut with the pliers.",
"You place the pliers on the table.",
"You untighten the screw."
],
"6b91041f-bd60-4738-8305-46b144ce725d@7": [
"You tighten the screw.",
"You check the handle.",
"You place the screwdriver in the drawer."
],
"6b91041f-bd60-4738-8305-46b144ce725d@8": [
"You lift the cloth.",
"You pick the drawer."
]
},
"time_reference": {
"6b91041f-bd60-4738-8305-46b144ce725d@1": [
1.16281,
3.77823,
7.91335,
10.14151
],
"6b91041f-bd60-4738-8305-46b144ce725d@2": [
66.20955,
68.1097,
70.61227
],
"6b91041f-bd60-4738-8305-46b144ce725d@3": [
104.94471,
107.52195,
109.10035
],
"6b91041f-bd60-4738-8305-46b144ce725d@4": [
124.87977,
127.42514,
134.55381,
134.89433
],
"6b91041f-bd60-4738-8305-46b144ce725d@5": [
152.00493,
153.07601
],
"6b91041f-bd60-4738-8305-46b144ce725d@6": [
207.2648,
211.26752,
213.28369
],
"6b91041f-bd60-4738-8305-46b144ce725d@7": [
245.57274,
250.63482,
260.12302
],
"6b91041f-bd60-4738-8305-46b144ce725d@8": [
297.15016,
299.03517
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "1a58c3e1-e04c-40eb-974b-379773a18736",
"video_path": "1a58c3e1-e04c-40eb-974b-379773a18736.mp4",
"duration_sec": 1082.25,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"1a58c3e1-e04c-40eb-974b-379773a18736@1",
"1a58c3e1-e04c-40eb-974b-379773a18736@2",
"1a58c3e1-e04c-40eb-974b-379773a18736@3",
"1a58c3e1-e04c-40eb-974b-379773a18736@4",
"1a58c3e1-e04c-40eb-974b-379773a18736@5"
],
"question": [
"Continuously answer what you observed with simple text.",
"Use simple text to explain what is shown in front of me.",
"Please concisely narrate the video in real time.",
"What is the action now? Please response in short.",
"Do concise real-time narration."
],
"question_time": [
0.028057200000000004,
58.3611772,
83.87760719999999,
179.61265719999997,
232.87045719999998
],
"choices": [],
"correct_answer": {
"1a58c3e1-e04c-40eb-974b-379773a18736@1": [
"You clap your hands.",
"You hold the box."
],
"1a58c3e1-e04c-40eb-974b-379773a18736@2": [
"You open the box with a lady.",
"A lady takes the scissors from the drawer.",
"A lady cuts the box with scissors.",
"A lady puts the scissors on the ground."
],
"1a58c3e1-e04c-40eb-974b-379773a18736@3": [
"A lady returns the scissors to the drawer.",
"A lady removes the Christmas tree stand from the box.",
"A lady removes the Christmas tree from the box."
],
"1a58c3e1-e04c-40eb-974b-379773a18736@4": [
"You move the branch aside.",
"A lady touches the worn rope on the branch."
],
"1a58c3e1-e04c-40eb-974b-379773a18736@5": [
"You cut the rope with scissors.",
"A lady drops the branch on the ground.",
"A lady fixes the branch.",
"A woman separates the branches."
]
},
"time_reference": {
"1a58c3e1-e04c-40eb-974b-379773a18736@1": [
0.028057200000000004,
5.3666772
],
"1a58c3e1-e04c-40eb-974b-379773a18736@2": [
58.3611772,
65.6652972,
69.23075719999999,
72.1354372
],
"1a58c3e1-e04c-40eb-974b-379773a18736@3": [
83.87760719999999,
86.6232472,
91.0036272
],
"1a58c3e1-e04c-40eb-974b-379773a18736@4": [
179.61265719999997,
221.36505719999997
],
"1a58c3e1-e04c-40eb-974b-379773a18736@5": [
232.87045719999998,
241.6250572,
254.59151719999997,
258.03012720000004
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "8253ab0b-51ab-4168-8c63-3bb179be485a",
"video_path": "8253ab0b-51ab-4168-8c63-3bb179be485a.mp4",
"duration_sec": 37.75,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"8253ab0b-51ab-4168-8c63-3bb179be485a@1"
],
"question": [
"What can you tell me about? Be concise."
],
"question_time": [
3.1642490666666667
],
"choices": [],
"correct_answer": {
"8253ab0b-51ab-4168-8c63-3bb179be485a@1": [
"You cut a mango with a knife.",
"You put down the knife.",
"You put mango pieces in a container.",
"You inspect a piece of mango."
]
},
"time_reference": {
"8253ab0b-51ab-4168-8c63-3bb179be485a@1": [
3.1642490666666667,
4.860269066666666,
6.266699066666666,
10.798739066666668
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "3a580dc3-93c0-44ef-9328-be6f65214def",
"video_path": "3a580dc3-93c0-44ef-9328-be6f65214def.mp4",
"duration_sec": 216.0,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"3a580dc3-93c0-44ef-9328-be6f65214def@1",
"3a580dc3-93c0-44ef-9328-be6f65214def@2",
"3a580dc3-93c0-44ef-9328-be6f65214def@3",
"3a580dc3-93c0-44ef-9328-be6f65214def@4",
"3a580dc3-93c0-44ef-9328-be6f65214def@5"
],
"question": [
"What can you tell me about? Be concise.",
"Use simple text to explain what is shown in front of me.",
"Simply interpret the scene for me.",
"Please concisely narrate the video in real time.",
"Please simply describe what do you see."
],
"question_time": [
0.0420572,
44.4914572,
92.71221719999998,
146.8668472,
190.64035719999998
],
"choices": [],
"correct_answer": {
"3a580dc3-93c0-44ef-9328-be6f65214def@1": [
"You cover the flask with the lid.",
"You adjust the flasks on the table with your left hand."
],
"3a580dc3-93c0-44ef-9328-be6f65214def@2": [
"You pick granules of tea from the container with your left hand.",
"You insert the granules into a glass cup on the table.",
"You pick granules of tea from the container with your left hand.",
"You insert the granules into a glass cup on the table."
],
"3a580dc3-93c0-44ef-9328-be6f65214def@3": [
"You place the glass cup in the shelf with your right hand.",
"She passes the tea mug from her left hand to her right hand."
],
"3a580dc3-93c0-44ef-9328-be6f65214def@4": [
"You hold the spoon with both hands.",
"You operate the cooker with your right hand.",
"You take the vegetable mixture from the pot with the spoon in your left hand."
],
"3a580dc3-93c0-44ef-9328-be6f65214def@5": [
"You put the vegetable mixture in the pot on the cooker.",
"You drop the spoon in the pot of vegetable mixture."
]
},
"time_reference": {
"3a580dc3-93c0-44ef-9328-be6f65214def@1": [
0.0420572,
5.0919572
],
"3a580dc3-93c0-44ef-9328-be6f65214def@2": [
44.4914572,
49.494317200000005,
50.2313372,
51.292847200000004
],
"3a580dc3-93c0-44ef-9328-be6f65214def@3": [
92.71221719999998,
94.32910719999998
],
"3a580dc3-93c0-44ef-9328-be6f65214def@4": [
146.8668472,
151.4868972,
154.6134572
],
"3a580dc3-93c0-44ef-9328-be6f65214def@5": [
190.64035719999998,
192.27153719999998
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "c6afac8f-86bc-4caa-9980-77d66f41abba",
"video_path": "c6afac8f-86bc-4caa-9980-77d66f41abba.mp4",
"duration_sec": 312.0,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"c6afac8f-86bc-4caa-9980-77d66f41abba@1"
],
"question": [
"Please simply describe what do you see."
],
"question_time": [
269.0955655215333
],
"choices": [],
"correct_answer": {
"c6afac8f-86bc-4caa-9980-77d66f41abba@1": [
"You put the clothes in a bag.",
"You look at the washing machine.",
"You hold the washing machine door."
]
},
"time_reference": {
"c6afac8f-86bc-4caa-9980-77d66f41abba@1": [
269.0955655215333,
274.8732355215333,
275.5542955215333
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "4480f4ee-d218-41bd-8cdf-a7cbe13b61a0",
"video_path": "4480f4ee-d218-41bd-8cdf-a7cbe13b61a0.mp4",
"duration_sec": 708.25,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"4480f4ee-d218-41bd-8cdf-a7cbe13b61a0@1",
"4480f4ee-d218-41bd-8cdf-a7cbe13b61a0@2",
"4480f4ee-d218-41bd-8cdf-a7cbe13b61a0@3"
],
"question": [
"Help me to illustrate my view in short.",
"Use simple text to explain what is shown in front of me.",
"What can you tell me about? Be concise."
],
"question_time": [
540.0420572,
636.7338372,
679.1649772000001
],
"choices": [],
"correct_answer": {
"4480f4ee-d218-41bd-8cdf-a7cbe13b61a0@1": [
"You stir the fry with the stirring sticks."
],
"4480f4ee-d218-41bd-8cdf-a7cbe13b61a0@2": [
"You carry the pepper in a plate from the cabinet.",
"You pour the pepper into the frying pan on the stove.",
"You drop the plate on the cabinet."
],
"4480f4ee-d218-41bd-8cdf-a7cbe13b61a0@3": [
"You pick up a plate from the cabinet.",
"You pass the plate from your left hand to your right hand.",
"You pick up a knife from the cabinet.",
"You drop the plate in the sink."
]
},
"time_reference": {
"4480f4ee-d218-41bd-8cdf-a7cbe13b61a0@1": [
540.0420572
],
"4480f4ee-d218-41bd-8cdf-a7cbe13b61a0@2": [
636.7338372,
638.6981372,
639.6638072000001
],
"4480f4ee-d218-41bd-8cdf-a7cbe13b61a0@3": [
679.1649772000001,
679.5668272,
680.4202172,
680.6291472
]
}
},
{
"video_source": "Ego4D-Narration-Val",
"video_id": "db532877-0281-434f-ba15-8d2430c4a110",
"video_path": "db532877-0281-434f-ba15-8d2430c4a110.mp4",
"duration_sec": 1235.0,
"fps": 4.0,
"question_type": "Pro-Response-Streaming",
"question_id": [
"db532877-0281-434f-ba15-8d2430c4a110@1",
"db532877-0281-434f-ba15-8d2430c4a110@2",
"db532877-0281-434f-ba15-8d2430c4a110@3",
"db532877-0281-434f-ba15-8d2430c4a110@4"
],
"question": [
"What can you tell me about? Be concise.",
"Please concisely narrate the video in real time.",
"Do concise real-time narration.",
"Simply interpret the scene for me."
],
"question_time": [
1080.56625,
1114.01171,
1175.50903,
1223.69303
],
"choices": [],
"correct_answer": {
"db532877-0281-434f-ba15-8d2430c4a110@1": [
"You wipe the kettle with a towel.",
"You remove a towel from the kettle.",
"You wipe the kettle.",
"You put the towel on the table."
],
"db532877-0281-434f-ba15-8d2430c4a110@2": [
"You walk to the kitchen.",
"You pick up a few small ceramic cups.",
"You walk to the dining area."
],
"db532877-0281-434f-ba15-8d2430c4a110@3": [
"You put a mug of water in the cabinet.",
"You push a kettle into the cabinet."
],
"db532877-0281-434f-ba15-8d2430c4a110@4": [
"You put a small ceramic cup in the cabinet.",
"You pick plates from the table.",
"You put the plates in the cabinet."
]
},
"time_reference": {
"db532877-0281-434f-ba15-8d2430c4a110@1": [
1080.56625,
1084.33068,
1086.81474,
1091.13158
],
"db532877-0281-434f-ba15-8d2430c4a110@2": [
1114.01171,
1118.14124,
1123.33208
],
"db532877-0281-434f-ba15-8d2430c4a110@3": [
1175.50903,
1180.08509
],
"db532877-0281-434f-ba15-8d2430c4a110@4": [