-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvqav2_1000.json
5002 lines (5002 loc) · 152 KB
/
vqav2_1000.json
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
[
{
"question_id": 130419000,
"question": "How many bushes is she standing by?",
"image_name": "COCO_val2014_000000130419.jpg"
},
{
"question_id": 118113000,
"question": "Is it dark?",
"image_name": "COCO_val2014_000000118113.jpg"
},
{
"question_id": 106053000,
"question": "Do these slices match up?",
"image_name": "COCO_val2014_000000106053.jpg"
},
{
"question_id": 119748000,
"question": "What color light is lit on the traffic light?",
"image_name": "COCO_val2014_000000119748.jpg"
},
{
"question_id": 128756000,
"question": "How many girls are in the photo?",
"image_name": "COCO_val2014_000000128756.jpg"
},
{
"question_id": 478380000,
"question": "What would happen if the driver pressed the accelerator?",
"image_name": "COCO_val2014_000000478380.jpg"
},
{
"question_id": 369460000,
"question": "What is the woman doing?",
"image_name": "COCO_val2014_000000369460.jpg"
},
{
"question_id": 284542000,
"question": "What brand of sneakers is the woman wearing?",
"image_name": "COCO_val2014_000000284542.jpg"
},
{
"question_id": 166392000,
"question": "Are any hands touching the skateboard?",
"image_name": "COCO_val2014_000000166392.jpg"
},
{
"question_id": 557114000,
"question": "How many animals?",
"image_name": "COCO_val2014_000000557114.jpg"
},
{
"question_id": 79213000,
"question": "Does the man have a guitar?",
"image_name": "COCO_val2014_000000079213.jpg"
},
{
"question_id": 290234000,
"question": "What is he holding?",
"image_name": "COCO_val2014_000000290234.jpg"
},
{
"question_id": 74369000,
"question": "Is there a shadow?",
"image_name": "COCO_val2014_000000074369.jpg"
},
{
"question_id": 25529000,
"question": "What toppings are on the bread?",
"image_name": "COCO_val2014_000000025529.jpg"
},
{
"question_id": 283505000,
"question": "Is there grass in the picture?",
"image_name": "COCO_val2014_000000283505.jpg"
},
{
"question_id": 375078000,
"question": "Are there any flowers in the vase?",
"image_name": "COCO_val2014_000000375078.jpg"
},
{
"question_id": 328352000,
"question": "How many people?",
"image_name": "COCO_val2014_000000328352.jpg"
},
{
"question_id": 298924000,
"question": "What kind of food is this?",
"image_name": "COCO_val2014_000000298924.jpg"
},
{
"question_id": 263477000,
"question": "What is the relationship between these two animals?",
"image_name": "COCO_val2014_000000263477.jpg"
},
{
"question_id": 248051000,
"question": "Is anyone watching?",
"image_name": "COCO_val2014_000000248051.jpg"
},
{
"question_id": 258061000,
"question": "What sport is he doing?",
"image_name": "COCO_val2014_000000258061.jpg"
},
{
"question_id": 204994000,
"question": "Where is the rhinoceros?",
"image_name": "COCO_val2014_000000204994.jpg"
},
{
"question_id": 117690000,
"question": "What website is there?",
"image_name": "COCO_val2014_000000117690.jpg"
},
{
"question_id": 157955000,
"question": "What view is this picture taken from?",
"image_name": "COCO_val2014_000000157955.jpg"
},
{
"question_id": 492817000,
"question": "What color is the elephant?",
"image_name": "COCO_val2014_000000492817.jpg"
},
{
"question_id": 232849000,
"question": "Is it night time?",
"image_name": "COCO_val2014_000000232849.jpg"
},
{
"question_id": 367608000,
"question": "Are these boys able to swim?",
"image_name": "COCO_val2014_000000367608.jpg"
},
{
"question_id": 327601000,
"question": "What color is the women dress?",
"image_name": "COCO_val2014_000000327601.jpg"
},
{
"question_id": 484351000,
"question": "Is everyone here students in the same class?",
"image_name": "COCO_val2014_000000484351.jpg"
},
{
"question_id": 70353000,
"question": "Is this animal resting?",
"image_name": "COCO_val2014_000000070353.jpg"
},
{
"question_id": 100909000,
"question": "What charitable cause is represented on #35's uniform?",
"image_name": "COCO_val2014_000000100909.jpg"
},
{
"question_id": 275210000,
"question": "What time of year is it?",
"image_name": "COCO_val2014_000000275210.jpg"
},
{
"question_id": 322122000,
"question": "What is stuck to the inside of the toilet bowl?",
"image_name": "COCO_val2014_000000322122.jpg"
},
{
"question_id": 502410000,
"question": "Is this baby horse ready to leave its parent?",
"image_name": "COCO_val2014_000000502410.jpg"
},
{
"question_id": 309302000,
"question": "How many horses?",
"image_name": "COCO_val2014_000000309302.jpg"
},
{
"question_id": 449945000,
"question": "How many sinks are there?",
"image_name": "COCO_val2014_000000449945.jpg"
},
{
"question_id": 151441000,
"question": "What sport are the children involved in?",
"image_name": "COCO_val2014_000000151441.jpg"
},
{
"question_id": 204329000,
"question": "Why is the surfboard there?",
"image_name": "COCO_val2014_000000204329.jpg"
},
{
"question_id": 220871000,
"question": "What color is the man's beard?",
"image_name": "COCO_val2014_000000220871.jpg"
},
{
"question_id": 203965000,
"question": "What is the man doing?",
"image_name": "COCO_val2014_000000203965.jpg"
},
{
"question_id": 274612000,
"question": "Are these umbrellas or parasols?",
"image_name": "COCO_val2014_000000274612.jpg"
},
{
"question_id": 214255000,
"question": "Where is this?",
"image_name": "COCO_val2014_000000214255.jpg"
},
{
"question_id": 331352000,
"question": "Where is the sink?",
"image_name": "COCO_val2014_000000331352.jpg"
},
{
"question_id": 257887000,
"question": "Is it evening?",
"image_name": "COCO_val2014_000000257887.jpg"
},
{
"question_id": 182895000,
"question": "See any children?",
"image_name": "COCO_val2014_000000182895.jpg"
},
{
"question_id": 7899000,
"question": "What color is the boy's pants?",
"image_name": "COCO_val2014_000000007899.jpg"
},
{
"question_id": 509824000,
"question": "How many books are on the table in front of the couch?",
"image_name": "COCO_val2014_000000509824.jpg"
},
{
"question_id": 184402000,
"question": "What color is the skateboard wheel?",
"image_name": "COCO_val2014_000000184402.jpg"
},
{
"question_id": 238528000,
"question": "What are the girls eating?",
"image_name": "COCO_val2014_000000238528.jpg"
},
{
"question_id": 530941000,
"question": "Are the animals all the same color?",
"image_name": "COCO_val2014_000000530941.jpg"
},
{
"question_id": 147629000,
"question": "What color is the animal?",
"image_name": "COCO_val2014_000000147629.jpg"
},
{
"question_id": 306313000,
"question": "What color are the cabinets?",
"image_name": "COCO_val2014_000000306313.jpg"
},
{
"question_id": 566498000,
"question": "What team is playing?",
"image_name": "COCO_val2014_000000566498.jpg"
},
{
"question_id": 449433000,
"question": "Do you see a Coca-Cola bottle?",
"image_name": "COCO_val2014_000000449433.jpg"
},
{
"question_id": 126064000,
"question": "How is the surfer attached to the board?",
"image_name": "COCO_val2014_000000126064.jpg"
},
{
"question_id": 12741000,
"question": "Is the boy asleep?",
"image_name": "COCO_val2014_000000012741.jpg"
},
{
"question_id": 493563000,
"question": "What is the woman doing?",
"image_name": "COCO_val2014_000000493563.jpg"
},
{
"question_id": 433971000,
"question": "Where was this photo taken?",
"image_name": "COCO_val2014_000000433971.jpg"
},
{
"question_id": 105601000,
"question": "Are these appliances new?",
"image_name": "COCO_val2014_000000105601.jpg"
},
{
"question_id": 155125000,
"question": "Is this person male or female?",
"image_name": "COCO_val2014_000000155125.jpg"
},
{
"question_id": 55528000,
"question": "What is he showing the camera person?",
"image_name": "COCO_val2014_000000055528.jpg"
},
{
"question_id": 355228000,
"question": "What type of animal is this?",
"image_name": "COCO_val2014_000000355228.jpg"
},
{
"question_id": 38323000,
"question": "Which edible best suits a celebration of the day the snakes were removed from Ireland?",
"image_name": "COCO_val2014_000000038323.jpg"
},
{
"question_id": 450599000,
"question": "What type of footwear is the man wearing?",
"image_name": "COCO_val2014_000000450599.jpg"
},
{
"question_id": 179187000,
"question": "Which direction is the arrow pointing?",
"image_name": "COCO_val2014_000000179187.jpg"
},
{
"question_id": 208169000,
"question": "How many bikes are there?",
"image_name": "COCO_val2014_000000208169.jpg"
},
{
"question_id": 384416000,
"question": "What is he eating?",
"image_name": "COCO_val2014_000000384416.jpg"
},
{
"question_id": 540556000,
"question": "What is the person doing?",
"image_name": "COCO_val2014_000000540556.jpg"
},
{
"question_id": 555705000,
"question": "How many cats are here?",
"image_name": "COCO_val2014_000000555705.jpg"
},
{
"question_id": 241638000,
"question": "Is the skier slanted to the left or right?",
"image_name": "COCO_val2014_000000241638.jpg"
},
{
"question_id": 223122000,
"question": "Is there toilet paper?",
"image_name": "COCO_val2014_000000223122.jpg"
},
{
"question_id": 375409000,
"question": "How many colors is the train?",
"image_name": "COCO_val2014_000000375409.jpg"
},
{
"question_id": 22929000,
"question": "What is the child sitting with?",
"image_name": "COCO_val2014_000000022929.jpg"
},
{
"question_id": 136780000,
"question": "Is there a sink in this bathroom?",
"image_name": "COCO_val2014_000000136780.jpg"
},
{
"question_id": 46185000,
"question": "What color is the zebra?",
"image_name": "COCO_val2014_000000046185.jpg"
},
{
"question_id": 429717000,
"question": "Is the lamp on or off?",
"image_name": "COCO_val2014_000000429717.jpg"
},
{
"question_id": 415647000,
"question": "What room are they in?",
"image_name": "COCO_val2014_000000415647.jpg"
},
{
"question_id": 283131000,
"question": "What is in the sink?",
"image_name": "COCO_val2014_000000283131.jpg"
},
{
"question_id": 193112000,
"question": "What is the boy doing?",
"image_name": "COCO_val2014_000000193112.jpg"
},
{
"question_id": 360409000,
"question": "Is her hair wet?",
"image_name": "COCO_val2014_000000360409.jpg"
},
{
"question_id": 75187000,
"question": "Is the woman happy?",
"image_name": "COCO_val2014_000000075187.jpg"
},
{
"question_id": 107306000,
"question": "What is the total number the first two boat add up to?",
"image_name": "COCO_val2014_000000107306.jpg"
},
{
"question_id": 526392000,
"question": "Is this light green?",
"image_name": "COCO_val2014_000000526392.jpg"
},
{
"question_id": 230795000,
"question": "What color is the sign?",
"image_name": "COCO_val2014_000000230795.jpg"
},
{
"question_id": 96488000,
"question": "Is this a sunny day?",
"image_name": "COCO_val2014_000000096488.jpg"
},
{
"question_id": 486770000,
"question": "Is everyone holding a plate?",
"image_name": "COCO_val2014_000000486770.jpg"
},
{
"question_id": 221605000,
"question": "Where is the laptop sitting?",
"image_name": "COCO_val2014_000000221605.jpg"
},
{
"question_id": 336182000,
"question": "Can she tell time?",
"image_name": "COCO_val2014_000000336182.jpg"
},
{
"question_id": 518586000,
"question": "What shows that train is moving?",
"image_name": "COCO_val2014_000000518586.jpg"
},
{
"question_id": 36051000,
"question": "How fast was the ball coming to her?",
"image_name": "COCO_val2014_000000036051.jpg"
},
{
"question_id": 256769000,
"question": "What color are the chairs?",
"image_name": "COCO_val2014_000000256769.jpg"
},
{
"question_id": 526762000,
"question": "What color are the trees?",
"image_name": "COCO_val2014_000000526762.jpg"
},
{
"question_id": 533508000,
"question": "What time is it?",
"image_name": "COCO_val2014_000000533508.jpg"
},
{
"question_id": 444100000,
"question": "What time is it?",
"image_name": "COCO_val2014_000000444100.jpg"
},
{
"question_id": 181058000,
"question": "How many sheep are there?",
"image_name": "COCO_val2014_000000181058.jpg"
},
{
"question_id": 186624000,
"question": "What color is the woman's hat?",
"image_name": "COCO_val2014_000000186624.jpg"
},
{
"question_id": 525119000,
"question": "What type of food is on the plate?",
"image_name": "COCO_val2014_000000525119.jpg"
},
{
"question_id": 149329000,
"question": "Is it night time?",
"image_name": "COCO_val2014_000000149329.jpg"
},
{
"question_id": 315195000,
"question": "What word is on the orange cone?",
"image_name": "COCO_val2014_000000315195.jpg"
},
{
"question_id": 125936000,
"question": "How many drinks are in the cooler?",
"image_name": "COCO_val2014_000000125936.jpg"
},
{
"question_id": 533074000,
"question": "Is this a men's room or a ladies' room?",
"image_name": "COCO_val2014_000000533074.jpg"
},
{
"question_id": 379086000,
"question": "Is the sun about to rise?",
"image_name": "COCO_val2014_000000379086.jpg"
},
{
"question_id": 340573000,
"question": "What is the date listed on the computer?",
"image_name": "COCO_val2014_000000340573.jpg"
},
{
"question_id": 520503000,
"question": "Are there any street lights?",
"image_name": "COCO_val2014_000000520503.jpg"
},
{
"question_id": 102235000,
"question": "What event has taken place?",
"image_name": "COCO_val2014_000000102235.jpg"
},
{
"question_id": 507739000,
"question": "What has long legs?",
"image_name": "COCO_val2014_000000507739.jpg"
},
{
"question_id": 178753000,
"question": "Is the woman old?",
"image_name": "COCO_val2014_000000178753.jpg"
},
{
"question_id": 560323000,
"question": "Which arm has a wristband?",
"image_name": "COCO_val2014_000000560323.jpg"
},
{
"question_id": 543577000,
"question": "What kind of facility is this?",
"image_name": "COCO_val2014_000000543577.jpg"
},
{
"question_id": 228350000,
"question": "What kind of establishment are these people sitting at?",
"image_name": "COCO_val2014_000000228350.jpg"
},
{
"question_id": 506736000,
"question": "What is the yellow food?",
"image_name": "COCO_val2014_000000506736.jpg"
},
{
"question_id": 324492000,
"question": "What zone is this?",
"image_name": "COCO_val2014_000000324492.jpg"
},
{
"question_id": 436164000,
"question": "How many men are riding behind the horse?",
"image_name": "COCO_val2014_000000436164.jpg"
},
{
"question_id": 386718000,
"question": "Is that a real cow?",
"image_name": "COCO_val2014_000000386718.jpg"
},
{
"question_id": 229286000,
"question": "What is this girl probably celebrating?",
"image_name": "COCO_val2014_000000229286.jpg"
},
{
"question_id": 345869000,
"question": "What time does the clock say it is?",
"image_name": "COCO_val2014_000000345869.jpg"
},
{
"question_id": 62423000,
"question": "What color is the wall?",
"image_name": "COCO_val2014_000000062423.jpg"
},
{
"question_id": 92355000,
"question": "Is the stove hot?",
"image_name": "COCO_val2014_000000092355.jpg"
},
{
"question_id": 405534000,
"question": "Are the boys taking tennis lessons?",
"image_name": "COCO_val2014_000000405534.jpg"
},
{
"question_id": 209028000,
"question": "What kind of dog is riding the skateboard?",
"image_name": "COCO_val2014_000000209028.jpg"
},
{
"question_id": 436348000,
"question": "Is the person in the blue shirt male?",
"image_name": "COCO_val2014_000000436348.jpg"
},
{
"question_id": 483275000,
"question": "What is turned upwards?",
"image_name": "COCO_val2014_000000483275.jpg"
},
{
"question_id": 212453000,
"question": "Is someone an avid fan?",
"image_name": "COCO_val2014_000000212453.jpg"
},
{
"question_id": 568004000,
"question": "Is there a hanging lamp in the image?",
"image_name": "COCO_val2014_000000568004.jpg"
},
{
"question_id": 462629000,
"question": "Are these appliances new?",
"image_name": "COCO_val2014_000000462629.jpg"
},
{
"question_id": 143215000,
"question": "Is the frisbee moving?",
"image_name": "COCO_val2014_000000143215.jpg"
},
{
"question_id": 99567000,
"question": "What country is this in?",
"image_name": "COCO_val2014_000000099567.jpg"
},
{
"question_id": 514173000,
"question": "Does the man like horses?",
"image_name": "COCO_val2014_000000514173.jpg"
},
{
"question_id": 555622000,
"question": "What type of trees are in the background?",
"image_name": "COCO_val2014_000000555622.jpg"
},
{
"question_id": 192594000,
"question": "Was the photo taken at night?",
"image_name": "COCO_val2014_000000192594.jpg"
},
{
"question_id": 434192000,
"question": "Where is this?",
"image_name": "COCO_val2014_000000434192.jpg"
},
{
"question_id": 85316000,
"question": "Was this picture taken in a city?",
"image_name": "COCO_val2014_000000085316.jpg"
},
{
"question_id": 449976000,
"question": "Who left the bottle there?",
"image_name": "COCO_val2014_000000449976.jpg"
},
{
"question_id": 250917000,
"question": "Is this person posing for the camera?",
"image_name": "COCO_val2014_000000250917.jpg"
},
{
"question_id": 116881000,
"question": "Are there red roses?",
"image_name": "COCO_val2014_000000116881.jpg"
},
{
"question_id": 131920000,
"question": "Is the anything in the blender?",
"image_name": "COCO_val2014_000000131920.jpg"
},
{
"question_id": 523953000,
"question": "Is the boy wearing a blue shirt?",
"image_name": "COCO_val2014_000000523953.jpg"
},
{
"question_id": 315899000,
"question": "What does the man have in his hand?",
"image_name": "COCO_val2014_000000315899.jpg"
},
{
"question_id": 160276000,
"question": "What is the street name?",
"image_name": "COCO_val2014_000000160276.jpg"
},
{
"question_id": 386968000,
"question": "Is the dog safe in the basket?",
"image_name": "COCO_val2014_000000386968.jpg"
},
{
"question_id": 357957000,
"question": "What type of drapes are across the window?",
"image_name": "COCO_val2014_000000357957.jpg"
},
{
"question_id": 47807000,
"question": "Where has the banana been placed?",
"image_name": "COCO_val2014_000000047807.jpg"
},
{
"question_id": 444343000,
"question": "Where is the huge teddy bear?",
"image_name": "COCO_val2014_000000444343.jpg"
},
{
"question_id": 285683000,
"question": "Is there a clock at the top of the tower?",
"image_name": "COCO_val2014_000000285683.jpg"
},
{
"question_id": 337818000,
"question": "What is the girl holding?",
"image_name": "COCO_val2014_000000337818.jpg"
},
{
"question_id": 516224000,
"question": "Are there people waiting for a train?",
"image_name": "COCO_val2014_000000516224.jpg"
},
{
"question_id": 418959000,
"question": "Was this photo taken at the beach?",
"image_name": "COCO_val2014_000000418959.jpg"
},
{
"question_id": 453159000,
"question": "Is this in a restroom?",
"image_name": "COCO_val2014_000000453159.jpg"
},
{
"question_id": 561465000,
"question": "How many plates are there?",
"image_name": "COCO_val2014_000000561465.jpg"
},
{
"question_id": 321497000,
"question": "What kind of sport is this?",
"image_name": "COCO_val2014_000000321497.jpg"
},
{
"question_id": 285352000,
"question": "Is this bathroom in the US?",
"image_name": "COCO_val2014_000000285352.jpg"
},
{
"question_id": 136595000,
"question": "What color is the bridge?",
"image_name": "COCO_val2014_000000136595.jpg"
},
{
"question_id": 69914000,
"question": "What color is the stool seat?",
"image_name": "COCO_val2014_000000069914.jpg"
},
{
"question_id": 85292000,
"question": "How many sets of tracks are there?",
"image_name": "COCO_val2014_000000085292.jpg"
},
{
"question_id": 253341000,
"question": "Did the man sitting down just toss the disk?",
"image_name": "COCO_val2014_000000253341.jpg"
},
{
"question_id": 256980000,
"question": "What color is the man's necktie?",
"image_name": "COCO_val2014_000000256980.jpg"
},
{
"question_id": 107140000,
"question": "Is this a healthy meal?",
"image_name": "COCO_val2014_000000107140.jpg"
},
{
"question_id": 365095000,
"question": "Can you catch the ball?",
"image_name": "COCO_val2014_000000365095.jpg"
},
{
"question_id": 177714000,
"question": "Is there broccoli in this image?",
"image_name": "COCO_val2014_000000177714.jpg"
},
{
"question_id": 254828000,
"question": "What is the fruit?",
"image_name": "COCO_val2014_000000254828.jpg"
},
{
"question_id": 566771000,
"question": "Is he wearing patriotic colors?",
"image_name": "COCO_val2014_000000566771.jpg"
},
{
"question_id": 56541000,
"question": "Why is the cat wearing such a silly hat?",
"image_name": "COCO_val2014_000000056541.jpg"
},
{
"question_id": 268350000,
"question": "What material is the couch?",
"image_name": "COCO_val2014_000000268350.jpg"
},
{
"question_id": 429063000,
"question": "Is it a cold day?",
"image_name": "COCO_val2014_000000429063.jpg"
},
{
"question_id": 483476000,
"question": "How many remotes are visible?",
"image_name": "COCO_val2014_000000483476.jpg"
},
{
"question_id": 29308000,
"question": "Why are the lights on?",
"image_name": "COCO_val2014_000000029308.jpg"
},
{
"question_id": 140921000,
"question": "Are there palm trees on the board?",
"image_name": "COCO_val2014_000000140921.jpg"
},
{
"question_id": 308715000,
"question": "What devices are on the table?",
"image_name": "COCO_val2014_000000308715.jpg"
},
{
"question_id": 38701000,
"question": "What food is shown?",
"image_name": "COCO_val2014_000000038701.jpg"
},
{
"question_id": 476767000,
"question": "What material is the couch made from?",
"image_name": "COCO_val2014_000000476767.jpg"
},
{
"question_id": 49445000,
"question": "What is red thing in the corner?",
"image_name": "COCO_val2014_000000049445.jpg"
},
{
"question_id": 498453000,
"question": "Is the surfer balanced?",
"image_name": "COCO_val2014_000000498453.jpg"
},
{
"question_id": 208380000,
"question": "Are the walls white?",
"image_name": "COCO_val2014_000000208380.jpg"
},
{
"question_id": 492677000,
"question": "Is this man dressed formally?",
"image_name": "COCO_val2014_000000492677.jpg"
},
{
"question_id": 443218000,
"question": "What is in front of the baby?",
"image_name": "COCO_val2014_000000443218.jpg"
},
{
"question_id": 318238000,
"question": "What are the dogs laying on?",
"image_name": "COCO_val2014_000000318238.jpg"
},
{
"question_id": 113058000,
"question": "Is the couch pink?",
"image_name": "COCO_val2014_000000113058.jpg"
},
{
"question_id": 87052000,
"question": "How many boxes of cereal are on the machine?",
"image_name": "COCO_val2014_000000087052.jpg"
},
{
"question_id": 197616000,
"question": "What image is on the mouse pad?",
"image_name": "COCO_val2014_000000197616.jpg"
},
{
"question_id": 450396000,
"question": "How many teeth can be seen?",
"image_name": "COCO_val2014_000000450396.jpg"
},
{
"question_id": 435707000,
"question": "What brand is that computer?",
"image_name": "COCO_val2014_000000435707.jpg"
},
{
"question_id": 215644000,
"question": "Are there any paper towels?",
"image_name": "COCO_val2014_000000215644.jpg"
},
{
"question_id": 203138000,
"question": "Where is the kid?",
"image_name": "COCO_val2014_000000203138.jpg"
},
{
"question_id": 100001000,
"question": "Where was this picture taken?",
"image_name": "COCO_val2014_000000100001.jpg"
},
{
"question_id": 416405000,
"question": "Is there snow inside the hydrant?",
"image_name": "COCO_val2014_000000416405.jpg"
},
{
"question_id": 161807000,
"question": "What kind of fruit is on top of the plate?",
"image_name": "COCO_val2014_000000161807.jpg"
},
{
"question_id": 119232000,
"question": "How many airplanes are in the picture?",
"image_name": "COCO_val2014_000000119232.jpg"
},
{
"question_id": 181278000,
"question": "Is this game over?",
"image_name": "COCO_val2014_000000181278.jpg"
},
{
"question_id": 341676000,
"question": "What is in the plastic container?",
"image_name": "COCO_val2014_000000341676.jpg"
},
{
"question_id": 408863000,
"question": "Is the train in America?",
"image_name": "COCO_val2014_000000408863.jpg"
},
{
"question_id": 203110000,
"question": "What color is the bus?",
"image_name": "COCO_val2014_000000203110.jpg"
},
{
"question_id": 513778000,
"question": "Are they in a zoo?",
"image_name": "COCO_val2014_000000513778.jpg"
},
{
"question_id": 7519000,
"question": "What color is the apron?",
"image_name": "COCO_val2014_000000007519.jpg"
},
{
"question_id": 302155000,
"question": "Are there people here?",
"image_name": "COCO_val2014_000000302155.jpg"
},
{
"question_id": 555686000,
"question": "What is the person's gender?",
"image_name": "COCO_val2014_000000555686.jpg"
},
{
"question_id": 35677000,
"question": "What color is the frosting on the cake?",
"image_name": "COCO_val2014_000000035677.jpg"
},
{
"question_id": 337354000,
"question": "Do they have pets?",
"image_name": "COCO_val2014_000000337354.jpg"
},
{
"question_id": 368049000,
"question": "Has he fallen and can he get up?",
"image_name": "COCO_val2014_000000368049.jpg"
},
{
"question_id": 240340000,
"question": "What color is the motorcycle the man is sitting on?",
"image_name": "COCO_val2014_000000240340.jpg"
},
{
"question_id": 579471000,
"question": "Is this bus handicap accessible?",
"image_name": "COCO_val2014_000000579471.jpg"