-
Notifications
You must be signed in to change notification settings - Fork 31
/
example_input_larger.json
11007 lines (11007 loc) · 420 KB
/
example_input_larger.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
[
{
"test": "black and white dog sitting on top of a wall",
"image_id": 400,
"refs": [
"a dog sitting on the inside of a white boat",
"a dog sits on a boat floating in water",
"dog forlornly looking out the back of a twin-hulled boat",
"the dog is riding on the boat in the water",
"a white boat is out on the water"
]
},
{
"test": "man wearing a suit and tie holding a cell phone",
"image_id": 1146,
"refs": [
"a young man wearing black attire and a flowered tie is standing and smiling",
"a man with glasses and his eyes closed dressed in a black shirt and a necktie",
"a man in a green tie with his eyes closed",
"smiling man wearing black shirt and pale green tie",
"a person that is dressed up very nicely"
]
},
{
"test": "man riding a wave in the water holding a surfboard in the ocean",
"image_id": 1369,
"refs": [
"a man in a wetsuit with a surfboard standing on a beach",
"this is an image of a man with a surfboard looking at the ocean",
"rear view of surfboard holding man standing on beach",
"a person with a surfboard stands at the water",
"a man is holding a surfboard and staring out into the ocean"
]
},
{
"test": "close up of a teddy bear sitting on a table",
"image_id": 2240,
"refs": [
"a pile of teddy bears and dolls in a toy box",
"three teddy bears and a doll like next to each other in a box",
"a group of stuffed toys are placed together",
"teddy bears and dolls laying down on a bench",
"a group of cute stuffed animals in a bed"
]
},
{
"test": "group of zebras standing next to each other in a field",
"image_id": 2684,
"refs": [
"a lot of zebras standing in the sand on a hot summer day",
"group of zebras standing on a dirt field together",
"a pack of zebras standing around a dry pasture",
"a herd of zebra in a grassy are with bushes in the background",
"a herd of zebras grazing on the savannah"
]
},
{
"test": "clock tower with a clock on top of a building",
"image_id": 3084,
"refs": [
"a blue clock face with gold numbers set in a brick building",
"a large clock at the top of a brick building of which the clock hands indicate twelve thirty",
"a brick building has a clock on the top of it",
"a clock on the front of a brick building",
"a clock is sitting atop a church tower"
]
},
{
"test": "baseball player swinging a bat at a ball during a game",
"image_id": 5064,
"refs": [
"a baseball player swinging a bat during a game",
"a batter swinging his bat during a baseball game",
"a man swinging a baseball bat at a ball",
"a kid plays baseball as people watch",
"the men are playing a game of baseball"
]
},
{
"test": "close up of donuts that are sitting on a table",
"image_id": 5754,
"refs": [
"a box of donuts of different colors and varieties",
"a close up of a box of doughnuts",
"a box is full of a variety of different donuts",
"a box containing ten different kids of doughnuts",
"a box filled with lots of different flavored donuts"
]
},
{
"test": "group of people sitting at a table with food in front of a kitchen",
"image_id": 5802,
"refs": [
"two men wearing aprons working in a commercial-style kitchen",
"chefs preparing food in a professional metallic style kitchen",
"two people standing around in a large kitchen",
"a commercial kitchen with two men working to prepare several plates",
"two men in white shirts in a large steel kitchen"
]
},
{
"test": "group of giraffes standing next to each other",
"image_id": 6005,
"refs": [
"a couple of giraffes that are walking around",
"a herd of giraffe standing on top of a dirt field",
"several smaller giraffes that are in an enclosure",
"the giraffes are walking in different directions outside",
"a giraffe standing next to three baby giraffes in a zoo exhibit"
]
},
{
"test": "bathroom with a toilet and sink",
"image_id": 6818,
"refs": [
"a couple of buckets in a white room",
"a bathroom with no toilets and a red and green bucket",
"a shower room with two buckets tolet paper holder and soap",
"a standing toilet in a bathroom next to a window",
"this picture looks like a janitors closet with buckets on the floor"
]
},
{
"test": "train is parked in front of a train station",
"image_id": 7211,
"refs": [
"a train car with blue graffiti on the side of it",
"an image of a train with graffiti on the side",
"old weathered red train boxcar with blue spray painted graffiti",
"a red train car that has graffiti on it",
"a train has been decorated with colorful elaborate art work"
]
},
{
"test": "man wearing a suit and tie holding a cell phone",
"image_id": 7682,
"refs": [
"a man in a tie and a fake moustache",
"a woman with glasses in a shirt and tie",
"the woman is wearing glasses and a fake moustache",
"an individual wearing a comical mustache with a serious facial expression",
"a man in blue shirt and tie wearing a fake mustache"
]
},
{
"test": "close up of a laptop computer sitting on a table",
"image_id": 8418,
"refs": [
"a table topped with personal care items and tooth paste",
"a toothbrush cleaning utensil floss mouth rinse and toothpaste",
"toothpaste toothbrush mouth rinse tongue cleaner and other mouth cleaning things are kept",
"a toothbrush toothpaste and mouth rinse and floss",
"various items that include mouthwash toothpaste and a toothbrush"
]
},
{
"test": "bird sitting on top of a branch of water",
"image_id": 8665,
"refs": [
"one bird that looks like two different ones",
"a bird with red and grey feathers on a table",
"the colorful bird is standing on the table outside",
"a gray and red bird sitting on top of a table",
"a woodpecker that is sitting on top of a table"
]
},
{
"test": "large plane flying through the sky",
"image_id": 9426,
"refs": [
"a small plane flying through a cloudy blue sky",
"red and white small plane on partially cloudy day",
"a red and white biplane in a blue cloudy sky",
"a plane that is flying in the air",
"a small lightweight airplane flying through the sky"
]
},
{
"test": "man riding skis down a snow covered slope",
"image_id": 10142,
"refs": [
"a man on skis posing for a photo",
"a man that is on ski 's standing in the snow",
"the cross country skier stops to wait for his friends",
"a man smiles as he turns to look behind him while skiing",
"a man in his ski gear is out in the snow posing"
]
},
{
"test": "group of baseball players are standing in a baseball game",
"image_id": 10442,
"refs": [
"there are many baseball players greeting each other on the field",
"baseball players high-fiving each other on a baseball field",
"baseball players are celebrating with each other after a win",
"a number of baseball players on a field with each other",
"a group of men on a baseball field giving each other high fives"
]
},
{
"test": "black and white cat sitting on top of a table",
"image_id": 10694,
"refs": [
"a cat stares from behind a large tv",
"a cat with glowing eyes sits on top of a tv",
"a black cat peeps up behind an old television set",
"a cat behind a tv near doors",
"a cat sitting on top of a tv in front of a closet"
]
},
{
"test": "young boy holding a cell phone",
"image_id": 10766,
"refs": [
"a little girl holding onto a teddy bear tight",
"a little asian girl holding a stuffed rabbit close to her face",
"the little girl is hugging her toy happily",
"a little girl that is holding a teddy bear",
"a little girl hugging her teddy bear"
]
},
{
"test": "little girl sitting on top of a teddy bear",
"image_id": 12448,
"refs": [
"a baby is laying down with a teddy bear",
"a baby laying in a crib with a stuffed teddy bear",
"a baby wearing gloves lying next to a teddy bear",
"a baby stares to the left while taking a picture with a teddy bear lays beside it",
"a baby lies on blue and green bedding next to a teddy bear"
]
},
{
"test": "man flying a kite in front of a field",
"image_id": 12543,
"refs": [
"children in a green field flying a kite",
"two kids are flying a kite in a field",
"boy flies a kite with family in the park",
"a couple of people flying a colorful kite over a lush green field",
"a child flies a kite with another child onlooking"
]
},
{
"test": "woman that is sitting on top of a plate on a table",
"image_id": 13383,
"refs": [
"cats lie on a desk next to a keyboard",
"two cats laying next to a cup of coffee",
"black and white cats lying on desk with keyboard",
"two cats sleeping on a table by a coffee cup",
"a cat on a desk laying next to a keyboard"
]
},
{
"test": "giraffe standing next to a park bench in front of a lush green field",
"image_id": 14869,
"refs": [
"a park bench siting next to a tree next to a park",
"green park bench in front of a tree on a sunny day",
"a lone public bench under a tree surrounded by other trees and grass",
"a green slated park bench under a tree",
"a green painted bench sitting underneath a tree"
]
},
{
"test": "cat laying on a bed next to each other",
"image_id": 14941,
"refs": [
"a baby girl sitting in a chair holding a white teddy bear",
"a small child is holding a stuffed bear",
"a little girl is sitting in a red and white striped chair playing with a teddy bear",
"a little girl sits on a striped chair holding a white teddy bear",
"a small girl sitting on a chair holding a white bear"
]
},
{
"test": "group of elephants walking down a dirt road",
"image_id": 14990,
"refs": [
"a man leading two elephants down a road",
"a man leads two elephants down a trail",
"two elephants are walking together behind the man",
"a guy is walking in between two elephants",
"two elephants following an individual on a dirt path"
]
},
{
"test": "couple of zebras are standing in the water",
"image_id": 15085,
"refs": [
"a giraffe drinking water from a river on a beach",
"a lone giraffe that is getting a drink of water from a small pond",
"a giraffe awkwardly sips water from a puddle in the dirt road",
"giraffe is eating or drinking something off of the ground",
"a giraffe leaning down and bending its knees to drink from a puddle"
]
},
{
"test": "close up of a bird perched on top of a tree",
"image_id": 15113,
"refs": [
"a bird that is on a tree limb",
"a bird with blue feathers in a tree at the zoo",
"a bird in a tree in a cage",
"beautiful unusual bird inside of a bird santuary",
"a white headed bird perched in a tree in an enclosure"
]
},
{
"test": "herd of elephants walking through the water",
"image_id": 15690,
"refs": [
"a couple of elephants standing next to each other",
"two elephants with tusks wade in the shallow water",
"a couple of large elephants in the water",
"two elephants that are walking in some water",
"two elephants drink water out of a body of water"
]
},
{
"test": "group of motorcycles parked in front of a parking lot",
"image_id": 15827,
"refs": [
"two rows of various makes of parked motorcycles",
"a bunch of motorcycles are parked tightly together",
"rows and columns of motorcycles in middle of street",
"a bunch of motorcycles that are grouped together",
"motorcycles are lined up outside along the street"
]
},
{
"test": "man riding a horse drawn carriage in front of a street",
"image_id": 16228,
"refs": [
"there is a white horse pulling a trolley behind it",
"a horse pulling a wagon with a conductor down the road",
"a large white horse pulling a trolley car down the street",
"a trolley that is being pulled by a white horse",
"a horse pulling a trolley carriage with a man on it"
]
},
{
"test": "man flying a kite in the air",
"image_id": 16356,
"refs": [
"two kids standing outside flying a kite during the day",
"two young boys standing in grassy field watching kites in sky",
"an older kid helping a younger one fly a kite",
"a pair of boys flying a kite in an open field",
"a man standing next to a little boy flying a kite"
]
},
{
"test": "man standing on top of a skateboard",
"image_id": 16497,
"refs": [
"a man posing for a picture while holding a skateboard",
"a young man holding a skateboard in front of a skateboard ramp",
"a person holding a skate board at a skate park",
"a man holding a skateboard at a skateboard park",
"a teenager standing on a ramp while holding a skateboard"
]
},
{
"test": "group of people riding skis down the side of a snow covered slope",
"image_id": 16574,
"refs": [
"several people dressed as knights on horses in a courtyard",
"the performers at medieval times are dressed as knights in different colors",
"a group of knights are gathered around to perform",
"a large crowd of observers watching a group of knights",
"a group of people in costumes and most on horses carrying flags"
]
},
{
"test": "group of zebras standing next to each other in a grassy field",
"image_id": 16716,
"refs": [
"a herd of zebra standing next to each other in a field",
"a group of zebras standing on dry land",
"three zebras walking in a grassy plains area",
"there 3 zebras standing together in the wild",
"three zebras are standing together in a grassy area"
]
},
{
"test": "group of a bus that is driving down a street with a traffic light",
"image_id": 17627,
"refs": [
"several cars are parked in front of a building",
"a green car has parked on the curb in a parking lot",
"small parking lot of cars in front of a stone building",
"cars are parked on the the street in front of the building",
"cars are parked on the street near an old building"
]
},
{
"test": "black and white cat sitting on top of a beach",
"image_id": 17707,
"refs": [
"a bed covered in a ten sitting on a beach",
"at the beach resort there is a privacy bed for rental",
"a bed under a white canopy on a sandy beach",
"a bed with a canopy on a beach",
"a cabana covered bed on a sandy beach"
]
},
{
"test": "man sitting on a park bench in the water",
"image_id": 17756,
"refs": [
"a swan is floating down the river by the boat",
"a boat with flags and tents is docked next to a grassy bank",
"a boat that is decorated with flags on the water",
"a parked boat with some items inside of it",
"a large red boat sitting next to a lush green shore"
]
},
{
"test": "man standing next to a building",
"image_id": 18149,
"refs": [
"a dog in a cage looking out of the cage",
"a dog sitting looking through a grate out a window",
"a dog standing behind a fenced off window",
"a dog that is looking out a window with bars",
"a black and brown dog sitting in a window sill"
]
},
{
"test": "close up of a pizza sitting on top of a plate",
"image_id": 19358,
"refs": [
"two blue bowls of food next to a bottle of cinnamon and sugar",
"this is an image of cereal and milk",
"a desert of bananas and cinnamon in two blue bowls",
"a blue bowl holding mashed bananas and oatmeal with a bottle of sugar and cinnamon sitting beside it",
"a bowl of oatmeal is ready to eat with some cinnamon and sugar"
]
},
{
"test": "woman swinging a tennis ball on a tennis court holding a tennis racket on a tennis court",
"image_id": 20965,
"refs": [
"a tennis player attempting to reach a tennis ball",
"a man is trying to catch the tennis ball",
"a man shows his great form while returning the ball",
"a tennis player is about to hit a tennis ball",
"man attempting to return a volley during a tennis game"
]
},
{
"test": "man sitting on top of a bed",
"image_id": 23899,
"refs": [
"three young men playing wii on a projection television",
"three men laughing at some pictures from a projector",
"a group of gentleman playing video games in a dimly lit room",
"some people chilling on the couch playing with a nintendo wii",
"a group of men playing a game with remote controllers"
]
},
{
"test": "pizza sitting on top of a plate",
"image_id": 24223,
"refs": [
"a large pepperoni and mushroom pizza being cut",
"a person is slicing an oven bake pizza",
"a close up of a person slicing pizza",
"a person cutting a pizza on a stove",
"a person reaching for a pizza on a pan with various toppings"
]
},
{
"test": "boat that is sitting on top of a city street",
"image_id": 24430,
"refs": [
"a boat sitting on someone 's lawn near an abandoned brick house",
"a small boat in the front yard of a house",
"a canoe on some grass near a building",
"a boat resting in the grass outside a home",
"there is a boat on the grass in front of the yard"
]
},
{
"test": "plate that is sitting on a table",
"image_id": 25202,
"refs": [
"a plate has oranges and a chocolate donut",
"a plate of orange slices and meat with three forks on it",
"a food entree is served on a plate",
"a plate with a chocolate and a sliced orange",
"a chocolate donut on a plate with orange wedges on the side"
]
},
{
"test": "black and white cat sitting on top of a tv",
"image_id": 25560,
"refs": [
"an orange and white cat standing in front of a flat screen tv",
"a cat climbing on top of a shelf with a tv",
"a cat is standing on top of a shelf and staring down",
"a cat standing in front of a tv on a tv stand",
"a cat perches on top of an entertainment center in front of a tv"
]
},
{
"test": "couple of a bench in front of a street sign",
"image_id": 26767,
"refs": [
"a street sign showing they are making improvements",
"sign explaining street and landscape improvements on a tree-lined street",
"a street sign above sidewalk with trees and cones around",
"a sign is indicating there is landscaping going on here",
"blue and white street sign next to an open park"
]
},
{
"test": "close up of a cat laying on top of a table",
"image_id": 26942,
"refs": [
"a gray tiger cat sitting at a wooden table on a chair",
"a grey cat sitting in chair next to a table",
"a cat sitting in a chair pulled up to a table",
"a cat sitting in a chair at a table with a book on it",
"a cat sitting in a chair by a table"
]
},
{
"test": "man flying a kite in the sky",
"image_id": 27235,
"refs": [
"a brown teddy bear is sitting on a green bed",
"a large plush bear sits in the corner of a bedroom",
"a stuffed teddy bear sitting on a green bed",
"a teddy bear on a bed in the corner of a bedroom",
"a teddy bear sits on the bed in a colorful children 's room"
]
},
{
"test": "close up of a plate of food on a table",
"image_id": 27353,
"refs": [
"closeup of a white plate with a maggot in a piece of broccoli",
"a couple of pieces of broccoli with a caterpillar emerging from it",
"a white plate topped with a piece of broccoli and a bug laying in sauce",
"a piece of broccoli with a fork and twig",
"a piece of broccoli with a plate and a large worm"
]
},
{
"test": "large clock tower in front of a building",
"image_id": 28377,
"refs": [
"a street with various buildings on each side and a clock tower",
"a narrow lane has buildings on either side and one of the buildings is yellow and another is yellow and white",
"there is a church at the end of the street",
"an alley way of a church and buildings with balconies",
"a city street surrounded by tall colorful buildings"
]
},
{
"test": "street sign sitting on top of a pole in front of a building",
"image_id": 28655,
"refs": [
"a clock that is on top of a pole",
"a clock sitting in the middle of a sidewalk near a street",
"a large clock on a post on the sidewalk",
"the clock is at the center of the old town square was erected by the local bank",
"a clock stands on the corner of a quiet street"
]
},
{
"test": "giraffe standing on top of a lush green field",
"image_id": 28758,
"refs": [
"a giraffe and a zebra are in a grassy field",
"a giraffe and zebra in field next to a fence and building",
"a giraffe and a zebra are in their pen at the zoo",
"giraffe walking near zebra lying in grass in enclosure",
"a giraffe and a zebra are on a grassy field"
]
},
{
"test": "red fire hydrant sitting on top of a motorcycle",
"image_id": 29913,
"refs": [
"a bicycle is lying on the sidewalk beside a fire hydrant",
"two eyes painted on a fire hydrant make it look more festive",
"a fire hydrant with a pair of eye stickers making a face on it",
"the fire hydrant on the side of the road has eyes painted on it",
"a fire hydrant in which someone put two eyes on it"
]
},
{
"test": "large black and white photo of people sitting on top of a boat",
"image_id": 30255,
"refs": [
"a boat traveling on water under a large bridge",
"a black and white photo of a ship going under a bus",
"a black and white photo of people on a boat going under a structure",
"a filled ferry boat passing underneath an overpass",
"a group of people in a boat in the water"
]
},
{
"test": "black and white dog is standing in front of an elephant",
"image_id": 31255,
"refs": [
"three horses are standing outside in the show",
"three horses in the snow and some trees",
"three horses are standing outside in the winter staring from different angles",
"three horses in a snowy field with trees in the background",
"three horses with white markings on their faces standing in snow"
]
},
{
"test": "boat that is on a body of boats in the water",
"image_id": 31747,
"refs": [
"there is one tug boat in the water by the docks",
"a boat docked with some large equipment in the background",
"a boat sitting next to a dock and a building",
"a boat floating along a shore line with lots of cranes",
"a tug boat floats beside the dock while cranes reach skyward in the background"
]
},
{
"test": "black and white fire hydrant sitting on top of a wooden bench",
"image_id": 32907,
"refs": [
"a toilet on the ground outdoors in front of a house",
"a toilet sitting in the middle of the road beside a home",
"a toilet on the pavement in front of a house the tank lid lying discarded",
"an old looking toilet sitting out on the side walk",
"a toilet sitting in front of someones house"
]
},
{
"test": "man in the water holding a kite on the beach",
"image_id": 32965,
"refs": [
"a woman staniding on the shore holding two umbrellas",
"an asian woman in front of a body of water with two umbrellas",
"a woman is holding two umbrellas with a boat in the water behind her",
"a lady is holding two umbrellas on a gloomy day",
"a woman holds a blue and a pink umbrella on a foggy day at the beach"
]
},
{
"test": "black and white cat sitting on top of a wooden table",
"image_id": 32992,
"refs": [
"a picture of a wooden container with crosses on it",
"a close up of wood decorated with crosses",
"close up of a wooden base with crosses designed on the neck",
"a close up shut off some sort of religious object",
"a shiny wooden object is decorated with crosses"
]
},
{
"test": "young boy holding a banana",
"image_id": 34180,
"refs": [
"a person wearing a banana headdress and necklace",
"a lady dressed in a blue and purple outfit wearing a hat made of fruit",
"a person wearing a hat made out of yellow bananas",
"person with bananas on head and banana necklace",
"a woman wears a hat that is made of bananas"
]
},
{
"test": "man riding a skateboard on top of a skate board",
"image_id": 35197,
"refs": [
"a person on a skateboard rides down a ramp",
"black and white photograph of person on a skateboard",
"person riding on edge of skateboard about to do a trick",
"a man is standing on a skateboard at a skate park",
"a black and white photograph of a person wearing dc shoes on a skateboard in the sun"
]
},
{
"test": "baby elephant standing in front of a tree",
"image_id": 35474,
"refs": [
"an elephant raises its trunk to grab some twigs",
"an elephant grabbing a branch with his trunk",
"an elephant with an open mouth lifts his trunk",
"an elephant using trunk to eat leaves on a tree",
"an elephant rubbing up against a tree and pulling on branches"
]
},
{
"test": "group of people standing on a beach",
"image_id": 37038,
"refs": [
"a man on water skis prepares to jump the pole",
"a man is participating in a water sport",
"a man prepares to go surfing in the water",
"a surfer riding small waves in the ocean",
"a man water skiing at in the water at the beach"
]
},
{
"test": "group of cows are standing in a grassy field",
"image_id": 37675,
"refs": [
"horses graze in front of a large building amid snow",
"several horses eating grass around melting a snow spot",
"some horses eating grass by a big house",
"horses grazing in a field by a large home",
"a couple of horses grazing in front of an estate"
]
},
{
"test": "black and white photo of a living room",
"image_id": 37777,
"refs": [
"the dining table near the kitchen has a bowl of fruit on it",
"a small kitchen has various appliances and a table",
"the kitchen is clean and ready for us to see",
"a kitchen and dining area decorated in white",
"a kitchen that has a bowl of fruit on the table"
]
},
{
"test": "black and white cat sitting on top of a tree",
"image_id": 37907,
"refs": [
"a cat on top of different kinds of electronics",
"a white and brown cat sits on electronics near a television set",
"a cat sitting on a stack of electronics next to a television",
"cat sitting on stereo equipment next to monitor",
"a cat sitting on top of some electronics next to a television"
]
},
{
"test": "group of people sitting on a city street",
"image_id": 38029,
"refs": [
"a float in a parade on a sunny day",
"a large fire hydrant on a truck",
"truck towing wheeled hydrant in a parade",
"a parade has a float with a fire hydrant on it",
"the jazz band is taking part in a parade"
]
},
{
"test": "laptop computer sitting on top of a desk next to a computer monitor",
"image_id": 38034,
"refs": [
"an office with a computer printer scanner and many other technologies",
"the desk holds a computer mouse and some other office supplies",
"a desk with a computer scanner and a printer",
"a computer desk with a printer and someone hard at work",
"a desk with a keyboard a monitor and a mouse"
]
},
{
"test": "pizza that is sitting on top of a plate",
"image_id": 39540,
"refs": [
"a full veggie pizza near a couple of plate of fries are all ready to be eaten",
"a pizza with multiple toppings including an egg",
"closeup of a white plate holding a pizza next to plate of fries",
"a pizza sitting on top of a pan covered in cheese and vegetables",
"a pizza pie with vegetables of some sort on it"
]
},
{
"test": "woman holding a stuffed teddy bear sitting on a table",
"image_id": 39743,
"refs": [
"two children who are sitting next to each other naked",
"a pair of twins sitting in the bathroom one is holding a brush",
"a couple of small children sitting next to a whit sink in a bathroom",
"two toddlers each sitting on their own little potties",
"a couple of very small cute kids in the rest room"
]
},
{
"test": "man flying a kite in the sky",
"image_id": 39760,
"refs": [
"a person para-sailing in the water with mountains in the background",
"a man is parasailing in the water on a sunny day",
"a person riding a board on the ocean while holding onto a kite",
"someone is windsurfing in the ocean with a large sail",
"a person parasailing in the water in front of some mountains"
]
},
{
"test": "living room with a chair in the living room",
"image_id": 39956,
"refs": [
"a messy room with door and bed and chair",
"a bedroom in an old house that is being renovated",
"view of a very messy bedroom with boxes and bags covering the floor",
"a messy bed room a bed a chair and boxes",
"a messy bedroom has one red brick wall"
]
},
{
"test": "group of giraffes standing next to each other in a grassy field",
"image_id": 40102,
"refs": [
"two giraffe standing next to each other on a grassy field",
"two giraffes stroll past each other near a bush",
"two giraffes standing near trees in a grassy area",
"two giraffes rub their necks together as they stand by the trees in the sunlight",
"two giraffes crossing paths on a green and grassy field"
]
},
{
"test": "close up of a plate of food on a white plate",
"image_id": 40881,
"refs": [
"a bowl of chicken and vegetables is shown",
"a bowl of soup with vegetables and other foods",
"a bowl of soup with onions broccoli and chicken",
"a bowl containing soup made up of broccoli red onions cauliflower and scallions",
"a bowl is filled with meat and different types of vegetables"
]
},
{
"test": "black and white cat sitting on top of a laptop",
"image_id": 41369,
"refs": [
"a person riding down a sidewalk on a skateboard",
"a person riding on a skateboard on a brick sidewalk",
"person on skateboard on sidewalk passing newspaper boxes",
"a person skateboarding on the side of the road",
"a young person is skateboarding on a side of the street"
]
},
{
"test": "man sitting on top of a computer desk",
"image_id": 41550,
"refs": [
"a room with large curved desk with lots of chairs",
"a view of an empty conference room with laptops",
"a table that has a bunch of chairs around it",
"a very big room with long counters filled with laptops",
"a room with a projector and a lot of chairs"
]
},
{
"test": "man riding a snowboard down the side of a snow covered slope",
"image_id": 41687,
"refs": [
"a skier and a snowboarder in front of a large house",
"a person skiing and a person snowboarding on slope",
"a person on skis a d one one a snowboard facing the opposite way",
"a man and a woman on skis in the snow",
"two skiers are on their skis on the snow"
]
},
{
"test": "zebra standing on top of a lush green field",
"image_id": 41888,
"refs": [
"three birds walking around a dry grass field",
"there are 3 female peacocks together walking around",
"three strange looking birds walking on the grass",
"three birds huddled together in a open field",
"three wild turkeys on top of the dried pasture"
]
},
{
"test": "red and white photo of a boat that is parked in front of a building",
"image_id": 41945,
"refs": [
"a small boat in a body of water near building",
"a weathered ship parked beside a building on the water",
"an old fishing boat in the waterways of a city",
"a large red boat is in water near buildings",
"a big boats sits on some water"
]
},
{
"test": "giraffe standing in front of a building",
"image_id": 42069,
"refs": [
"a person wrestles with an inside-out umbrella on a roof",
"a man sitting on top of a roof with an umbrella",
"an umbrella is put on the roof of a house",
"a person sitting on the roof of their house holding onto an umbrella",
"a man sits on a roof above his deck adjusting an umbrella"
]
},
{
"test": "group of people standing in front of a building",
"image_id": 43635,
"refs": [
"a bunch of people sit in an open court yard",
"a small group of people standing around a ball patio",
"a group of people walking around a parking lot",
"a group of people in front of a white building",
"many people on a courtyard under a clock"
]
},
{
"test": "group of kids playing a game of soccer on a lush green field",
"image_id": 45864,
"refs": [
"2 teams of young kids playing soccer against each other",
"there are many young children playing a soccer game together",
"many soccer players are competing for control of the ball",
"a group of kids playing soccer on a field",
"some children are playing soccer on a grassy field"
]
},
{
"test": "young boy sitting on a bench in front of a fire hydrant",
"image_id": 46743,
"refs": [
"a woman sitting next to a parking meter",
"a person siting on the ground and decorating a parking meter",
"a woman is sitting on the curb with a decorated parking meter",
"a lady sitting on a sidewalk by a parking meter",
"a woman sits in front of a parking meter"
]
},
{
"test": "group of people playing a game of frisbee in a field",
"image_id": 46859,
"refs": [
"a baseball player taking a swing at a ball",
"a young ball player takes a swing while the umpire looks on",
"a baseball game the batter has just swung on a pitch",
"a batter at home plate who has just finished swinging at the ball",
"a batter has just swung the bat in a baseball game"
]
},
{
"test": "baseball player is holding a bat in a baseball game",
"image_id": 48636,
"refs": [
"a baseball player is swinging a bat at a ball",
"this is a baseball player mid-swing about to hit the ball",
"the boy hits the baseball with a bat",
"a baseball player reaching out the bat to hit a ball",
"a batter is swinging for the baseball at a game"
]
},
{
"test": "group of people standing in the air on the beach flying a kite in the ocean",
"image_id": 49559,
"refs": [
"a person with a flying kite on a beach",
"a beach area with people flying a kite next to tree",
"people flying a kite on the beach with choppy waters",
"the shoreline of a sandy beach with a colorful kite flying above it",
"colorful kite being flown over the ocean as people are on the beach"
]
},
{
"test": "yellow and white train is parked in front of a lush green grass covered field",
"image_id": 49633,
"refs": [
"a white bird sitting on a grassy hill",
"a large bird sitting on top of a green hedge",
"a white bird on a grass hill with park behind it",
"the bird stands on a hill near a large park",
"an angry bird is standing in front of the camera"
]
},
{
"test": "double decker bus driving down a parking lot",
"image_id": 50125,
"refs": [
"a silver and red bus in parking lot next to cars",
"a silver bus that is parked in a lot",
"an older picture of a bus and other vehicles in a parking lot",
"an old bus parks in a parking lot with other cars and bus",
"an older silver metro bus in a parking lot"
]
},
{
"test": "bathroom with a sink and a mirror",
"image_id": 51191,
"refs": [
"the view of a large bathroom with a walk in closet",
"a bathroom with a walk-in closet and a jacuzzi tub",
"a white and beige tiled bathroom and adjoining walk-in closet",
"white tiled bathroom with a vanity tub and white flowers",
"long shot of a bathroom includes closet and tub"
]
},
{
"test": "parking meter sitting on top of a beach",
"image_id": 52644,
"refs": [
"parking meters are lined up on an empty lot",
"parking meters in an empty parking lot surrounded by sand",
"a close up of a parking meter in an empty parking lot",
"parking meters sitting on yellow posts by the ocean",
"rows of black parking meters on street next to sand"