forked from AILab-CVC/SEED
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresults.json
20002 lines (20002 loc) · 457 KB
/
results.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
[
{
"image_id": 0,
"caption": "Man riding motorcycle on dirt road with mountain in background."
},
{
"image_id": 7,
"caption": "A little girl is drinking a white cocktail with a straw."
},
{
"image_id": 14,
"caption": "Red train on tracks."
},
{
"image_id": 18,
"caption": "Dirty dishes in a sink."
},
{
"image_id": 23,
"caption": "A wooden table with a variety of wooden utensils."
},
{
"image_id": 24,
"caption": "Dining table with wooden utensils and a bookshelf in the background."
},
{
"image_id": 39,
"caption": "Bathroom."
},
{
"image_id": 45,
"caption": "A clean and well-maintained bathroom."
},
{
"image_id": 46,
"caption": "Caption: Cyclists riding down a city street."
},
{
"image_id": 64,
"caption": "White bathroom with a white sink, toilet, and mirror."
},
{
"image_id": 75,
"caption": "Bathroom shelf with toiletries and towels."
},
{
"image_id": 84,
"caption": "Man wearing a black shirt with a floral tie."
},
{
"image_id": 110,
"caption": "A man on a motorcycle."
},
{
"image_id": 115,
"caption": "A row of parked motorcycles lined up on a street."
},
{
"image_id": 122,
"caption": "Living room with white walls, a wooden cabinet, a TV, a chair, and a window with curtains."
},
{
"image_id": 126,
"caption": "The image is titled \"Bananas and Oranges in a Kitchen\"."
},
{
"image_id": 128,
"caption": "Bananas for sale in a wooden crate."
},
{
"image_id": 136,
"caption": "A man on a motorcycle."
},
{
"image_id": 145,
"caption": "Airport worker carrying luggage on the conveyor belt."
},
{
"image_id": 148,
"caption": "Airplanes and terminal building."
},
{
"image_id": 155,
"caption": "Plane on the grass."
},
{
"image_id": 163,
"caption": "A man is riding a motorcycle."
},
{
"image_id": 170,
"caption": "Old man sitting on a bench with a white dog."
},
{
"image_id": 177,
"caption": "A traffic light with red, yellow, and green lights hanging in the sky."
},
{
"image_id": 188,
"caption": "A table with a yellow flower in a vase, surrounded by wooden chairs and a bench."
},
{
"image_id": 205,
"caption": "Caption: A group of people standing together, with a little girl holding a blue balloon."
},
{
"image_id": 208,
"caption": "Sheep grazing in a snowy field."
},
{
"image_id": 213,
"caption": "Birds flying over the water."
},
{
"image_id": 215,
"caption": "The canoe is sitting on the shore of a lake."
},
{
"image_id": 219,
"caption": "A giraffe and zebra standing in a field, surrounded by tall grass and trees."
},
{
"image_id": 220,
"caption": "A red fire hydrant with a yellow light."
},
{
"image_id": 228,
"caption": "A black bird eating an orange in a flower pot."
},
{
"image_id": 245,
"caption": "The caption is not provided."
},
{
"image_id": 266,
"caption": "Two ducks swimming in a body of water."
},
{
"image_id": 270,
"caption": "A street sign hanging from a pole with a street light."
},
{
"image_id": 271,
"caption": "Sheep in a grassy field with a stone wall."
},
{
"image_id": 285,
"caption": "A woman with a white mask and red hair is standing next to a man in a red and black outfit."
},
{
"image_id": 295,
"caption": "A large brick house with a sign on it."
},
{
"image_id": 326,
"caption": "A cow standing in the middle of a wet street."
},
{
"image_id": 328,
"caption": "Black cow standing in the dirt."
},
{
"image_id": 336,
"caption": "The cat is holding a banana in its mouth."
},
{
"image_id": 339,
"caption": "A cat is sitting in a chair."
},
{
"image_id": 342,
"caption": "White cow in green field."
},
{
"image_id": 353,
"caption": "The black and white cow is standing in the field."
},
{
"image_id": 389,
"caption": "A woman with white hair and blue eyes, wearing a black top and a white collar."
},
{
"image_id": 410,
"caption": "Elephants in a zoo enclosure."
},
{
"image_id": 418,
"caption": "Elephant standing in a zoo enclosure, surrounded by trees and rocks."
},
{
"image_id": 420,
"caption": "2."
},
{
"image_id": 424,
"caption": "Boats docked in a harbor."
},
{
"image_id": 425,
"caption": "Elephants walking through the savannah."
},
{
"image_id": 434,
"caption": "A woman and a girl hugging each other."
},
{
"image_id": 448,
"caption": "A young lady with a hat and a smile."
},
{
"image_id": 450,
"caption": "A woman with tattoos and a black top, sitting on a suitcase."
},
{
"image_id": 461,
"caption": "The boy is sitting on a black suitcase."
},
{
"image_id": 468,
"caption": "A brown dog laying in the sand."
},
{
"image_id": 469,
"caption": "Two children walking with umbrellas."
},
{
"image_id": 473,
"caption": "A black dog standing on a wooden floor, with a plate of broccoli and a pink bowl nearby."
},
{
"image_id": 492,
"caption": "Beach scene with a man walking on the sand."
},
{
"image_id": 501,
"caption": "A man with a backpack standing near a river."
},
{
"image_id": 502,
"caption": "Zebra in a field of green grass."
},
{
"image_id": 506,
"caption": "Zebra standing in snow with head down and ears back."
},
{
"image_id": 517,
"caption": "Zebras grazing on a grassy field."
},
{
"image_id": 519,
"caption": "Zebras fighting over a carcass in a field."
},
{
"image_id": 524,
"caption": "Brown, White, and Black Horses."
},
{
"image_id": 541,
"caption": "Woman standing next to a horse in a field."
},
{
"image_id": 554,
"caption": "Horseback rider in a blue jacket riding a brown horse."
},
{
"image_id": 558,
"caption": "A man in a black suit riding a white horse on a sandy beach."
},
{
"image_id": 565,
"caption": "A table with a banana, orange, and a cup of juice."
},
{
"image_id": 568,
"caption": "Baseball players playing baseball in a field."
},
{
"image_id": 586,
"caption": "A woman wearing a banana hat and holding a yellow balloon."
},
{
"image_id": 587,
"caption": "Man wearing a banana head and holding a banana."
},
{
"image_id": 592,
"caption": "A man wearing a baseball uniform and cap, throwing a ball."
},
{
"image_id": 593,
"caption": "Freshly cooked quesadillas with vegetables and cheese."
},
{
"image_id": 601,
"caption": "Child skiing with an adult on a snowy slope."
},
{
"image_id": 607,
"caption": "A group of kids in red shirts, one with a plate of cotton candy and the other with a bag of ice cream."
},
{
"image_id": 633,
"caption": "A woman in a pink shirt and white pants is holding a shopping bag and riding a skateboard."
},
{
"image_id": 635,
"caption": "Boy skateboarding in a skate park."
},
{
"image_id": 641,
"caption": "A boy with black hair and a blue shirt is skateboarding on a street."
},
{
"image_id": 666,
"caption": "Two men are skiing in the snow."
},
{
"image_id": 682,
"caption": "A girl with short hair and glasses is smiling while eating a meal."
},
{
"image_id": 686,
"caption": "A man wearing a blue jacket, black pants, and a black beanie."
},
{
"image_id": 692,
"caption": "Doughnuts and pastries displayed in a glass case."
},
{
"image_id": 694,
"caption": "Boy eating a sandwich on a bench."
},
{
"image_id": 697,
"caption": "A display of various pastries and treats in a glass case."
},
{
"image_id": 702,
"caption": "A sandwich with lettuce, tomato, and chicken on a white plate with a fork and knife."
},
{
"image_id": 705,
"caption": "Caption: \"A tasty meal for a flight.\"."
},
{
"image_id": 706,
"caption": "The donuts are displayed in a case with a white and black sign."
},
{
"image_id": 708,
"caption": "Man with a green and white basketball uniform, holding a basketball."
},
{
"image_id": 724,
"caption": "Woman holding a surfboard in a black wetsuit."
},
{
"image_id": 725,
"caption": "Man running on a field."
},
{
"image_id": 727,
"caption": "A man surfing on a wave in the ocean."
},
{
"image_id": 732,
"caption": "Soccer game in progress."
},
{
"image_id": 747,
"caption": "Woman holding a pizza box."
},
{
"image_id": 748,
"caption": "The baby is eating a piece of cake."
},
{
"image_id": 752,
"caption": "A group of young boys and a man in a black shirt are standing together, learning about soccer."
},
{
"image_id": 764,
"caption": "A man sitting at a table, looking at a cake on a plate."
},
{
"image_id": 766,
"caption": "The boy is sleeping in a bed with a white and blue blanket."
},
{
"image_id": 771,
"caption": "A happy couple getting married."
},
{
"image_id": 777,
"caption": "Pizza with tomatoes, olives, and cheese."
},
{
"image_id": 782,
"caption": "Tennis rackets and a tennis ball on a table."
},
{
"image_id": 783,
"caption": "A young girl enjoying a slice of pizza."
},
{
"image_id": 786,
"caption": "A smiling woman in a yellow shirt holding a tennis racket."
},
{
"image_id": 790,
"caption": "Pizza with green and white toppings on a wooden cutting board."
},
{
"image_id": 806,
"caption": "A brown couch with a floral print cover, a yellow pillow, and a remote control on the armrest."
},
{
"image_id": 812,
"caption": "A woman with braces smiles while holding a toothbrush with a red mouth guard."
},
{
"image_id": 823,
"caption": "Living room with a wooden floor, a wooden table, and a bookshelf filled with books."
},
{
"image_id": 835,
"caption": "Caption: Man sitting at desk using computer."
},
{
"image_id": 843,
"caption": "A man running on the beach."
},
{
"image_id": 851,
"caption": "A blue kite with a black tail is flying in the sky."
},
{
"image_id": 854,
"caption": "A man and a little girl enjoying a swing."
},
{
"image_id": 862,
"caption": "A beautiful day at the beach with a colorful kite flying in the sky."
},
{
"image_id": 868,
"caption": "The clock is on a pole."
},
{
"image_id": 877,
"caption": "Baseball player in action, swinging bat at ball."
},
{
"image_id": 878,
"caption": "A young baseball player wearing a helmet, shirt, and pants."
},
{
"image_id": 879,
"caption": "Boy holding a baseball bat, wearing a red shirt and blue jeans."
},
{
"image_id": 886,
"caption": "A young boy in a baseball uniform, holding a bat."
},
{
"image_id": 890,
"caption": "Batter at home plate, umpire behind catcher, and fans in the stands."
},
{
"image_id": 892,
"caption": "Man playing baseball in a field."
},
{
"image_id": 899,
"caption": "The pizza is cooking on the stove."
},
{
"image_id": 902,
"caption": "A boy is playing tennis on a court with green grass and a fence."
},
{
"image_id": 919,
"caption": "A man playing tennis on a green court."
},
{
"image_id": 934,
"caption": "The man is sitting on the ground."
},
{
"image_id": 947,
"caption": "Two vases with red designs on a white cloth."
},
{
"image_id": 955,
"caption": "Man in brown coat holding a cell phone."
},
{
"image_id": 981,
"caption": "A crowd of people gathered in a square, enjoying the sunny day and various food and drinks."
},
{
"image_id": 984,
"caption": "A cat sitting on a woman's lap."
},
{
"image_id": 985,
"caption": "A large brick building with a clock tower and a flag flying on top."
},
{
"image_id": 991,
"caption": "The bears are wearing clothes and have various accessories like a tie, a watch, and a bow."
},
{
"image_id": 995,
"caption": "A beautiful yellow building with a white clock tower."
},
{
"image_id": 1001,
"caption": "Caption: A bouquet of flowers in a vase."
},
{
"image_id": 1002,
"caption": "3."
},
{
"image_id": 1007,
"caption": "Man holding giant pair of scissors."
},
{
"image_id": 1010,
"caption": "Caption: A colorful array of craft supplies on a table."
},
{
"image_id": 1019,
"caption": "Group of people posing for a picture in a restaurant."
},
{
"image_id": 1021,
"caption": "A group of people gathered in a backyard, enjoying a meal together."
},
{
"image_id": 1022,
"caption": "Group of people gathered at a wine tasting event."
},
{
"image_id": 1023,
"caption": "A man holding a glass of wine."
},
{
"image_id": 1034,
"caption": "Man walking with luggage."
},
{
"image_id": 1040,
"caption": "Vegetables on a table."
},
{
"image_id": 1042,
"caption": "Woman standing in a kitchen with a dog."
},
{
"image_id": 1048,
"caption": "A woman in a kitchen."
},
{
"image_id": 1049,
"caption": "A man sitting on a stool in a kitchen."
},
{
"image_id": 1051,
"caption": "A man with glasses and a hat, standing next to a dog in a kitchen."
},
{
"image_id": 1054,
"caption": "A kitchen counter with various pots and pans."
},
{
"image_id": 1059,
"caption": "A man and a woman are skateboarding together."
},
{
"image_id": 1073,
"caption": "A man is riding a bicycle near a wall."
},
{
"image_id": 1075,
"caption": "Bathroom."
},
{
"image_id": 1081,
"caption": "A clean and well-maintained bathroom with a white sink, toilet, and cabinet."
},
{
"image_id": 1095,
"caption": "The bathroom has a shower, a toilet, and a sink."
},
{
"image_id": 1131,
"caption": "Two people riding a motorcycle on a bridge."
},
{
"image_id": 1132,
"caption": "Caption: \"Toilet with Parts\"."
},
{
"image_id": 1146,
"caption": "The people are standing in front of the building."
},
{
"image_id": 1155,
"caption": "A couple of motorcyclists riding down the road."
},
{
"image_id": 1163,
"caption": "Several people gathered near a row of parked planes."
},
{
"image_id": 1164,
"caption": "The red and white plane is flying in the sky with smoke trailing behind it."
},
{
"image_id": 1168,
"caption": "A large white and blue airplane in the sky."
},
{
"image_id": 1178,
"caption": "White and red plane flying in the sky."
},
{
"image_id": 1188,
"caption": "Single-engine plane in the sky."
},
{
"image_id": 1193,
"caption": "Sheep on a beach."
},
{
"image_id": 1198,
"caption": "A tall giraffe standing in a field of dry grass and rocks."
},
{
"image_id": 1203,
"caption": "A giraffe standing in a field, with its head turned towards the camera."
},
{
"image_id": 1205,
"caption": "Sunset over city skyline."
},
{
"image_id": 1233,
"caption": "Nighttime street with cars, traffic lights, and a sidewalk."
},
{
"image_id": 1243,
"caption": "Two giraffes walking in a field."
},
{
"image_id": 1245,
"caption": "A giraffe is eating from a feeder."
},
{
"image_id": 1246,
"caption": "A giraffe standing in the grass near a dirt road."
},
{
"image_id": 1264,
"caption": "Park Bench and Yellow Fire Hydrant."
},
{
"image_id": 1270,
"caption": "A flock of sheep grazing in a green field."
},
{
"image_id": 1271,
"caption": "A man sitting on a bench by the water."
},
{
"image_id": 1274,
"caption": "Giraffe standing in a zoo pen."
},
{
"image_id": 1282,
"caption": "Two ducks in a pond."
},
{
"image_id": 1289,
"caption": "Three giraffes standing in front of a fence."
},
{
"image_id": 1296,
"caption": "Giraffe standing in a zoo enclosure."
},
{
"image_id": 1300,
"caption": "A red and white street sign with black lettering."
},
{
"image_id": 1302,
"caption": "A giraffe is standing in a grassy field, eating leaves from a tree."
},
{
"image_id": 1304,
"caption": "Two giraffes standing in an enclosure with rocks and grass."
},
{
"image_id": 1329,
"caption": "A flock of sheep in a field with a fence and some trees in the background."
},
{
"image_id": 1331,
"caption": "A group of sheep in a field with green grass and a wooden fence."
},
{
"image_id": 1336,
"caption": "Sheep grazing in a foggy field."
},
{
"image_id": 1339,
"caption": "Delivery truck carrying bovine livestock."
},
{
"image_id": 1352,
"caption": "Car driving on a road near a train track."
},
{
"image_id": 1356,
"caption": "A red train engine with a black roof, white windows, and red numbers on the side."
},
{
"image_id": 1361,
"caption": "Snowy road with a stop sign covered in snow."
},
{
"image_id": 1363,
"caption": "A red train on the tracks."
},
{
"image_id": 1365,
"caption": "3."
},
{
"image_id": 1383,
"caption": "A cat standing on top of a stack of suitcases."
},
{
"image_id": 1400,
"caption": "Cat looking out the window."
},
{
"image_id": 1405,
"caption": "A large truck with a Christmas theme is driving down the street."
},
{
"image_id": 1415,
"caption": "A group of friends gathered together in a room."
},
{
"image_id": 1421,
"caption": "A brown and white dog wearing a red, white, and blue tie."
},
{
"image_id": 1423,
"caption": "The boat is resting on the sandy beach."
},
{
"image_id": 1431,
"caption": "Boats are parked on the sandy beach."
},
{
"image_id": 1451,
"caption": "A man and woman in formal attire."
},
{
"image_id": 1454,
"caption": "Three women crossing the street with umbrellas in the rain."
},
{
"image_id": 1462,
"caption": "A cat sitting in a sink."
},
{
"image_id": 1468,
"caption": "Cat sitting in a bathtub."
},
{
"image_id": 1469,
"caption": "Man sitting on a couch using a laptop."
},
{
"image_id": 1491,
"caption": "Elephant in a zoo."
},
{
"image_id": 1496,
"caption": "A brown dog playing with a frisbee on a rocky beach."
},
{
"image_id": 1497,
"caption": "Dog and cat playing in the snow."
},
{
"image_id": 1507,
"caption": "Caption: LeFt Bag."
},
{
"image_id": 1520,
"caption": "Darth Vader."
},
{
"image_id": 1523,
"caption": "Dog carrying a red frisbee."
},
{
"image_id": 1537,
"caption": "Zebras and birds gather around a watering hole in a field."
},
{
"image_id": 1541,
"caption": "Girl with red frisbee and sunglasses."
},
{
"image_id": 1543,
"caption": "Group of zebras and gazelles gathered around a watering hole."
},
{
"image_id": 1551,
"caption": "A herd of zebras in a field."
},
{
"image_id": 1558,
"caption": "Zebra with black and white stripes standing in a field."
},
{
"image_id": 1573,
"caption": "A brown horse walking through a forest."
},
{
"image_id": 1577,
"caption": "Statue of a man on horseback."
},
{
"image_id": 1598,
"caption": "Banana slices on a waffle."
},
{
"image_id": 1601,
"caption": "A man is riding a water ski while being pulled by a boat."
},
{
"image_id": 1603,
"caption": "A woman skiing down a snowy mountain."
},
{
"image_id": 1607,
"caption": "A large pile of oranges with some overripe and some not, all of them orange in color."
},
{
"image_id": 1611,
"caption": "The oranges are arranged in a blue bowl on a blue cloth."
},
{
"image_id": 1619,
"caption": "A person skiing on a snowy trail with trees in the background."
},
{
"image_id": 1632,
"caption": "A man sliding into home plate while another man tries to tag him out."
},
{
"image_id": 1658,
"caption": "Two men skiing on a snowy slope."
},
{
"image_id": 1668,
"caption": "Three friends, one with a skateboard, are skating down the street."
},
{
"image_id": 1673,
"caption": "Woman cross country skiing in snowy landscape."
},
{
"image_id": 1686,
"caption": "Woman skiing down a snowy hill."
},
{
"image_id": 1700,
"caption": "A group of children riding bikes together."
},
{
"image_id": 1711,
"caption": "A beautifully presented dessert tray with a variety of delicious treats."
},
{
"image_id": 1724,
"caption": "Dining table with food and utensils."
},
{
"image_id": 1726,
"caption": "Group of skiers waiting for their turn."
},
{
"image_id": 1727,
"caption": "A man enjoying a hot dog on a bun."
},
{
"image_id": 1733,
"caption": "A boy is performing a skateboard trick on a ramp."
},
{
"image_id": 1748,
"caption": "A heart-shaped doughnut with a red and white glaze, served on a white paper napkin."
},
{
"image_id": 1753,
"caption": "A knife is being used to cut a piece of meat."
},
{
"image_id": 1766,
"caption": "The image is unsuitable for a caption."
},
{
"image_id": 1768,
"caption": "White chocolate cake with chocolate icing and white icing on top."
},
{
"image_id": 1769,
"caption": "A man sleeping in a bed with his two cats."
},
{
"image_id": 1770,
"caption": "A bedroom with a bed, nightstand, and various pictures on the wall."
},
{
"image_id": 1771,
"caption": "A birthday cake with a lit candle and a smiling woman."
},
{
"image_id": 1779,
"caption": "A woman in a kitchen, holding a white and blue cake."
},
{
"image_id": 1783,
"caption": "Two women are smiling and holding a cake with a picture of a man on it."
},
{
"image_id": 1784,
"caption": "A smiling woman with a big smile on her face."
},
{
"image_id": 1790,
"caption": "Man surfing on a white surfboard."
},
{
"image_id": 1806,
"caption": "Beach scene with surfers and their boards."
},
{
"image_id": 1809,
"caption": "The pizza is a delicious meal with a variety of toppings."
},
{
"image_id": 1828,
"caption": "A man wearing a black shirt and a white hat, holding a tennis racket, is walking on a tennis court."
},
{
"image_id": 1829,
"caption": "A delicious pizza on a plate with a glass of wine and a silver fork."
},
{
"image_id": 1835,
"caption": "A slice of pizza with toppings."
},
{
"image_id": 1844,
"caption": "Pizza party with a group of people eating pizza and drinking beer."
},
{
"image_id": 1853,
"caption": "Rafael Nadal."
},
{
"image_id": 1863,
"caption": "The living room with a black cat on the couch, a wooden coffee table, and a potted plant."
},
{
"image_id": 1869,
"caption": "A man and a woman playing a video game together."
},
{
"image_id": 1872,
"caption": "A little girl playing a video game."
},
{
"image_id": 1883,
"caption": "A clean and organized workspace with a laptop, monitor, and keyboard."
},
{
"image_id": 1891,
"caption": "A cozy living room with a brown couch, wooden coffee table, and striped rug."