File size: 118,083 Bytes
19b6fad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{"image_name": "000000289960.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000289960.jpg", "category": "tennis ball", "question": "Can the tennis ball be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000291664.jpg", "category": "base", "question": "Can the base be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000291664.jpg", "category": "drain basket", "question": "Can the drain basket be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000292415.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000292415.jpg", "category": "dirt", "question": "Can the dirt be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000299609.jpg", "category": "horse", "question": "Can the horse be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000299609.jpg", "category": "arched window", "question": "Can the arched window be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000301981.jpg", "category": "light", "question": "Can the light be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000301981.jpg", "category": "headboard", "question": "Can the headboard be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000301981.jpg", "category": "grass", "question": "Can the grass be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000301981.jpg", "category": "tennis net", "question": "Can the tennis net be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000302882.jpg", "category": "window", "question": "Can the window be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000302882.jpg", "category": "stone groove", "question": "Can the stone groove be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000311928.jpg", "category": "baseball bat", "question": "Can the baseball bat be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000311928.jpg", "category": "soap box", "question": "Can the soap box be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000312720.jpg", "category": "ski", "question": "Can the ski be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000312720.jpg", "category": "stove", "question": "Can the stove be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000314541.jpg", "category": "bench", "question": "Can the bench be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000314541.jpg", "category": "tower", "question": "Can the tower be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000322968.jpg", "category": "clock", "question": "Can the clock be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000322968.jpg", "category": "carriage", "question": "Can the carriage be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000322968.jpg", "category": "flag", "question": "Can the flag be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000322968.jpg", "category": "luggage", "question": "Can the luggage be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000323202.jpg", "category": "book", "question": "Can the book be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000323202.jpg", "category": "tray", "question": "Can the tray be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000323202.jpg", "category": "toilet paper", "question": "Can the toilet paper be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000323202.jpg", "category": "tower", "question": "Can the tower be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000323202.jpg", "category": "toilet plunger", "question": "Can the toilet plunger be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000323202.jpg", "category": "power line", "question": "Can the power line be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000323895.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000323895.jpg", "category": "scissors", "question": "Can the scissors be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000323895.jpg", "category": "tennis racket", "question": "Can the tennis racket be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000323895.jpg", "category": "plane", "question": "Can the plane be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000327592.jpg", "category": "cake", "question": "Can the cake be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000327592.jpg", "category": "door frame", "question": "Can the door frame be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000327592.jpg", "category": "tray", "question": "Can the tray be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000327592.jpg", "category": "egg", "question": "Can the egg be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000327605.jpg", "category": "ski pole", "question": "Can the ski pole be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000327605.jpg", "category": "gravel", "question": "Can the gravel be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000334417.jpg", "category": "tie", "question": "Can the tie be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000334417.jpg", "category": "leg", "question": "Can the leg be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000336265.jpg", "category": "boy", "question": "Can the boy be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000336265.jpg", "category": "roadblock", "question": "Can the roadblock be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000357238.jpg", "category": "kite", "question": "Can the kite be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000357238.jpg", "category": "handbag", "question": "Can the handbag be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000357742.jpg", "category": "backpack", "question": "Can the backpack be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000357742.jpg", "category": "tap", "question": "Can the tap be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000357742.jpg", "category": "skier", "question": "Can the skier be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000357742.jpg", "category": "watch", "question": "Can the watch be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000357742.jpg", "category": "ski pole", "question": "Can the ski pole be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000357742.jpg", "category": "tennis court", "question": "Can the tennis court be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000213171.jpg", "category": "baseball glove", "question": "Can the baseball glove be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000213171.jpg", "category": "painting", "question": "Can the painting be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000216516.jpg", "category": "ski pole", "question": "Can the ski pole be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000216516.jpg", "category": "trunk", "question": "Can the trunk be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000216516.jpg", "category": "skis", "question": "Can the skis be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000216516.jpg", "category": "urinal", "question": "Can the urinal be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000219578.jpg", "category": "cat", "question": "Can the cat be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000219578.jpg", "category": "table", "question": "Can the table be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000221291.jpg", "category": "kite", "question": "Can the kite be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000221291.jpg", "category": "bed lamp", "question": "Can the bed lamp be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000223188.jpg", "category": "watch", "question": "Can the watch be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000223188.jpg", "category": "metal plate", "question": "Can the metal plate be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000231339.jpg", "category": "coca cola", "question": "Can the coca cola be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000231339.jpg", "category": "teddy bear", "question": "Can the teddy bear be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000231339.jpg", "category": "Nestea", "question": "Can the Nestea be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000231339.jpg", "category": "fallen leaves", "question": "Can the fallen leaves be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000231339.jpg", "category": "jar", "question": "Can the jar be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000231339.jpg", "category": "meat", "question": "Can the meat be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000231339.jpg", "category": "yogurt", "question": "Can the yogurt be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000231339.jpg", "category": "snow", "question": "Can the snow be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000231339.jpg", "category": "carton", "question": "Can the carton be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000231339.jpg", "category": "grate", "question": "Can the grate be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000237071.jpg", "category": "tennis racket", "question": "Can the tennis racket be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000237071.jpg", "category": "desk", "question": "Can the desk be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000238039.jpg", "category": "rope", "question": "Can the rope be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000238039.jpg", "category": "paper holder", "question": "Can the paper holder be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000244099.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000244099.jpg", "category": "toilet paper", "question": "Can the toilet paper be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000252507.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000252507.jpg", "category": "pig", "question": "Can the pig be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000252507.jpg", "category": "ski", "question": "Can the ski be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000252507.jpg", "category": "clock", "question": "Can the clock be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000261161.jpg", "category": "curb", "question": "Can the curb be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000261161.jpg", "category": "cat", "question": "Can the cat be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000262487.jpg", "category": "baseball bat", "question": "Can the baseball bat be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000262487.jpg", "category": "coca cola", "question": "Can the coca cola be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000262487.jpg", "category": "referee", "question": "Can the referee be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000262487.jpg", "category": "faucet switch", "question": "Can the faucet switch be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000262487.jpg", "category": "baseball player", "question": "Can the baseball player be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000262487.jpg", "category": "sunshade", "question": "Can the sunshade be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000262487.jpg", "category": "catcher", "question": "Can the catcher be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000262487.jpg", "category": "soap", "question": "Can the soap be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000262587.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000262587.jpg", "category": "sign", "question": "Can the sign be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000262587.jpg", "category": "surfboard", "question": "Can the surfboard be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000262587.jpg", "category": "wardrobe", "question": "Can the wardrobe be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000263068.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000263068.jpg", "category": "teapot", "question": "Can the teapot be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000264441.jpg", "category": "paper", "question": "Can the paper be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000264441.jpg", "category": "street", "question": "Can the street be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000264441.jpg", "category": "bag", "question": "Can the bag be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000264441.jpg", "category": "dustbin", "question": "Can the dustbin be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000270677.jpg", "category": "skateboard", "question": "Can the skateboard be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000270677.jpg", "category": "bicycle", "question": "Can the bicycle be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000280779.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000280779.jpg", "category": "frame", "question": "Can the frame be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000280779.jpg", "category": "skis", "question": "Can the skis be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000280779.jpg", "category": "court", "question": "Can the court be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000280779.jpg", "category": "ski pole", "question": "Can the ski pole be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000280779.jpg", "category": "sailboat", "question": "Can the sailboat be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000364102.jpg", "category": "woman", "question": "Can the woman be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000364102.jpg", "category": "awl", "question": "Can the awl be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000367228.jpg", "category": "kite", "question": "Can the kite be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000367228.jpg", "category": "paper cut", "question": "Can the paper cut be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000368212.jpg", "category": "toothbrush", "question": "Can the toothbrush be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000368212.jpg", "category": "sausage", "question": "Can the sausage be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000372307.jpg", "category": "horse", "question": "Can the horse be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000372307.jpg", "category": "charger", "question": "Can the charger be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000375015.jpg", "category": "tree truck", "question": "Can the tree truck be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000375015.jpg", "category": "railing", "question": "Can the railing be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000376442.jpg", "category": "countertop", "question": "Can the countertop be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000376442.jpg", "category": "diving goggles", "question": "Can the diving goggles be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000376442.jpg", "category": "shower head", "question": "Can the shower head be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000376442.jpg", "category": "statue", "question": "Can the statue be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000376442.jpg", "category": "drain", "question": "Can the floor drain be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000376442.jpg", "category": "cushion", "question": "Can the cushion be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000378244.jpg", "category": "ski", "question": "Can the ski be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000378244.jpg", "category": "floor", "question": "Can the floor be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000378244.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000378244.jpg", "category": "frisbee", "question": "Can the frisbee be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000380711.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000380711.jpg", "category": "shell", "question": "Can the shell be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000380711.jpg", "category": "diving goggles", "question": "Can the diving goggles be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000380711.jpg", "category": "trunk", "question": "Can the trunk be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000383838.jpg", "category": "remote", "question": "Can the remote be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000383838.jpg", "category": "bull", "question": "Can the bull be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000384136.jpg", "category": "hair drier", "question": "Can the hair drier be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000384136.jpg", "category": "platform", "question": "Can the platform be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000385205.jpg", "category": "toy", "question": "Can the toy be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000385205.jpg", "category": "clock", "question": "Can the clock be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000388215.jpg", "category": "tennis racket", "question": "Can the tennis racket be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000388215.jpg", "category": "sheet", "question": "Can the sheet be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000388215.jpg", "category": "banner", "question": "Can the banner be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000388215.jpg", "category": "ladder", "question": "Can the ladder be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000388215.jpg", "category": "sign", "question": "Can the sign be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000388215.jpg", "category": "sailboat", "question": "Can the sailboat be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000391375.jpg", "category": "bench", "question": "Can the bench be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000391375.jpg", "category": "lamp", "question": "Can the lamp be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000391648.jpg", "category": "clock", "question": "Can the clock be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000391648.jpg", "category": "boy", "question": "Can the boy be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000391648.jpg", "category": "flag", "question": "Can the flag be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000391648.jpg", "category": "tarp", "question": "Can the tarp be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000395575.jpg", "category": "statue", "question": "Can the statue be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000395575.jpg", "category": "wall", "question": "Can the wall be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000397327.jpg", "category": "toilet plunger", "question": "Can the toilet plunger be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000397327.jpg", "category": "remote", "question": "Can the remote be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000397327.jpg", "category": "toilet paper", "question": "Can the toilet paper be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000397327.jpg", "category": "doorframe", "question": "Can the doorframe be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000399462.jpg", "category": "kite", "question": "Can the kite be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000399462.jpg", "category": "dustbin", "question": "Can the dustbin be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000402118.jpg", "category": "snowboard", "question": "Can the snowboard be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000402118.jpg", "category": "bicycle", "question": "Can the bicycle be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000403565.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000403565.jpg", "category": "coffee", "question": "Can the coffee be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000404249.jpg", "category": "skateboard", "question": "Can the skateboard be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000404249.jpg", "category": "notebook", "question": "Can the notebook be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000404249.jpg", "category": "monitor", "question": "Can the monitor be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000404249.jpg", "category": "tube", "question": "Can the tube be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000404249.jpg", "category": "pole", "question": "Can the pole be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000404249.jpg", "category": "curtain", "question": "Can the curtain be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000404249.jpg", "category": "street lamp", "question": "Can the street lamp be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000404249.jpg", "category": "toilet", "question": "Can the toilet be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000407646.jpg", "category": "tennis racket", "question": "Can the tennis racket be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000407646.jpg", "category": "carriage", "question": "Can the carriage be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000413552.jpg", "category": "wooden floor", "question": "Can the wooden floor be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000413552.jpg", "category": "banister", "question": "Can the banister be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000414676.jpg", "category": "clock", "question": "Can the clock be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000414676.jpg", "category": "sandy beach.", "question": "Can the sandy beach. be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000416837.jpg", "category": "cow", "question": "Can the cow be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000416837.jpg", "category": "charger", "question": "Can the charger be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000420281.jpg", "category": "woman", "question": "Can the woman be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000420281.jpg", "category": "electronic equipment", "question": "Can the electronic equipment be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000423104.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000423104.jpg", "category": "skier", "question": "Can the skier be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000427649.jpg", "category": "boat", "question": "Can the boat be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000427649.jpg", "category": "carton", "question": "Can the carton be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000431140.jpg", "category": "toilet paper", "question": "Can the toilet paper be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000431140.jpg", "category": "skylight", "question": "Can the skylight be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000433192.jpg", "category": "book", "question": "Can the book be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000433192.jpg", "category": "clock", "question": "Can the clock be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000435299.jpg", "category": "pillow", "question": "Can the pillow be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000435299.jpg", "category": "onion", "question": "Can the onion be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000437205.jpg", "category": "paper", "question": "Can the paper be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000437205.jpg", "category": "scaffolding", "question": "Can the scaffolding be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000443844.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000443844.jpg", "category": "toilet", "question": "Can the toilet be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000443844.jpg", "category": "bench", "question": "Can the bench be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000443844.jpg", "category": "ski", "question": "Can the base be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000443844.jpg", "category": "skateboard", "question": "Can the skateboard be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000443844.jpg", "category": "basin", "question": "Can the basin be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000443844.jpg", "category": "door", "question": "Can the door be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000443844.jpg", "category": "pencil", "question": "Can the pencil be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000443844.jpg", "category": "ashcan", "question": "Can the ashcan be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000443844.jpg", "category": "van", "question": "Can the van be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000443844.jpg", "category": "cart", "question": "Can the cart be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000443844.jpg", "category": "train track", "question": "Can the train track be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000450559.jpg", "category": "skateboard", "question": "Can the skateboard be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000450559.jpg", "category": "charging area", "question": "Can the charging area be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000450559.jpg", "category": "sky", "question": "Can the sky be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000450559.jpg", "category": "television", "question": "Can the television be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000451084.jpg", "category": "skateboard", "question": "Can the skateboard be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000451084.jpg", "category": "tennis racket", "question": "Can the tennis racket be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000454404.jpg", "category": "curtain", "question": "Can the curtain be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000454404.jpg", "category": "leaf", "question": "Can the leaf be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000454978.jpg", "category": "sign", "question": "Can the sign be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000454978.jpg", "category": "plastic bag", "question": "Can the plastic bag be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000455981.jpg", "category": "toilet paper", "question": "Can the toilet paper be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000455981.jpg", "category": "mattressn", "question": "Can the mattressn be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000459887.jpg", "category": "table", "question": "Can the table be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000459887.jpg", "category": "cabinet", "question": "Can the cabinet be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000464251.jpg", "category": "bird", "question": "Can the bird be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000464251.jpg", "category": "awl", "question": "Can the awl be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000464824.jpg", "category": "pillar", "question": "Can the pillar be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000464824.jpg", "category": "bridge", "question": "Can the bridge be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000466602.jpg", "category": "ski", "question": "Can the ski be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000466602.jpg", "category": "barn", "question": "Can the barn be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000466602.jpg", "category": "ski pole", "question": "Can the ski pole be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000466602.jpg", "category": "handrail", "question": "Can the handrail be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000468245.jpg", "category": "wooden bed", "question": "Can the wooden bed be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000468245.jpg", "category": "laptop", "question": "Can the laptop be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000468245.jpg", "category": "lamp", "question": "Can the lamp be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000468245.jpg", "category": "charger", "question": "Can the charger be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000468245.jpg", "category": "fan", "question": "Can the fan be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000468245.jpg", "category": "tennis ball", "question": "Can the tennis ball be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000472298.jpg", "category": "woman", "question": "Can the woman be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000472298.jpg", "category": "compartment", "question": "Can the compartment be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000472298.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000472298.jpg", "category": "potted plant", "question": "Can the potted plant be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000473118.jpg", "category": "bicycle", "question": "Can the bicycle be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000473118.jpg", "category": "photo frame", "question": "Can the photo frame be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000473118.jpg", "category": "skateboard", "question": "Can the skateboard be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000473118.jpg", "category": "sun", "question": "Can the sun be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000474095.jpg", "category": "toilet paper", "question": "Can the toilet paper be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000474095.jpg", "category": "cup holder", "question": "Can the cup holder be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000477441.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000477441.jpg", "category": "clock", "question": "Can the clock be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000477441.jpg", "category": "aisle", "question": "Can the aisle be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000477441.jpg", "category": "book", "question": "Can the book be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000485895.jpg", "category": "giraffe", "question": "Can the giraffe be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000485895.jpg", "category": "paper cut", "question": "Can the paper cut be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000488270.jpg", "category": "airplane", "question": "Can the airplane be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000488270.jpg", "category": "van", "question": "Can the van be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000490515.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000490515.jpg", "category": "rack", "question": "Can the rack be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000490515.jpg", "category": "backpack", "question": "Can the backpack be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000490515.jpg", "category": "frame", "question": "Can the frame be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000493334.jpg", "category": "phone", "question": "Can the phone be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000493334.jpg", "category": "window-blind", "question": "Can the window-blind be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000500423.jpg", "category": "shadow", "question": "Can the shadow be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000500423.jpg", "category": "racket", "question": "Can the racket be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000500423.jpg", "category": "sign", "question": "Can the sign be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000500423.jpg", "category": "hot dog", "question": "Can the hot dog be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000513688.jpg", "category": "mouse", "question": "Can the mouse be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000513688.jpg", "category": "track", "question": "Can the track be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000513688.jpg", "category": "telephone", "question": "Can the telephone be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000513688.jpg", "category": "sun", "question": "Can the sun be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000516318.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000516318.jpg", "category": "loudspeaker box", "question": "Can the loudspeaker box be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000517523.jpg", "category": "control tower", "question": "Can the control tower be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000517523.jpg", "category": "ski", "question": "Can the ski be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000519522.jpg", "category": "clock", "question": "Can the clock be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000519522.jpg", "category": "platform", "question": "Can the platform be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000523194.jpg", "category": "sign", "question": "Can the sign be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000523194.jpg", "category": "buildingt", "question": "Can the buildingt be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000523194.jpg", "category": "fire hydrant", "question": "Can the fire hydrant be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000523194.jpg", "category": "wall tile", "question": "Can the wall tile be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000530466.jpg", "category": "tv", "question": "Can the tv be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000530466.jpg", "category": "catcher", "question": "Can the catcher be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000530820.jpg", "category": "tennis racket", "question": "Can the tennis racket be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000530820.jpg", "category": "hot dog", "question": "Can the hot dog be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000530820.jpg", "category": "field", "question": "Can the field be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000530820.jpg", "category": "steel pole", "question": "Can the steel pole be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000540280.jpg", "category": "document", "question": "Can the document be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000540280.jpg", "category": "carriage", "question": "Can the carriage be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000540280.jpg", "category": "holer", "question": "Can the holer be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000540280.jpg", "category": "bottle", "question": "Can the bottle be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000544519.jpg", "category": "toothbrush", "question": "Can the toothbrush be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000544519.jpg", "category": "frame", "question": "Can the frame be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000545958.jpg", "category": "poster", "question": "Can the poster be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000545958.jpg", "category": "sandwich", "question": "Can the sandwich be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000545958.jpg", "category": "metal plate", "question": "Can the metal plate be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000545958.jpg", "category": "baseball bat", "question": "Can the baseball bat be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000554595.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000554595.jpg", "category": "printer", "question": "Can the printer be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000554595.jpg", "category": "surfboard", "question": "Can the surfboard be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000554595.jpg", "category": "stove", "question": "Can the stove be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000556158.jpg", "category": "ski", "question": "Can the ski be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000556158.jpg", "category": "clock tower", "question": "Can the clock tower be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000556158.jpg", "category": "ski poles", "question": "Can the ski poles be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000556158.jpg", "category": "river", "question": "Can the river be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000557916.jpg", "category": "vase", "question": "Can the vase be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000557916.jpg", "category": "power line", "question": "Can the power line be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000557916.jpg", "category": "teddy bear", "question": "Can the teddy bear be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000557916.jpg", "category": "toilet", "question": "Can the toilet be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000562843.jpg", "category": "scissors", "question": "Can the scissors be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000562843.jpg", "category": "barn", "question": "Can the barn be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000563349.jpg", "category": "snowboard", "question": "Can the snowboard be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000563349.jpg", "category": "guitar", "question": "Can the guitar be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000563349.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000563349.jpg", "category": "rail", "question": "Can the rail be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000563349.jpg", "category": "rope", "question": "Can the rope be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000563349.jpg", "category": "bracket", "question": "Can the bracket be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000565877.jpg", "category": "book", "question": "Can the book be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000565877.jpg", "category": "photo frame", "question": "Can the photo frame be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000565877.jpg", "category": "watch", "question": "Can the watch be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000565877.jpg", "category": "lamp", "question": "Can the lamp be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000569972.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000569972.jpg", "category": "bath mat", "question": "Can the bath mat be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000569972.jpg", "category": "sail", "question": "Can the sail be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000569972.jpg", "category": "girl", "question": "Can the girl be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000578967.jpg", "category": "platform", "question": "Can the platform be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000578967.jpg", "category": "motorcycle", "question": "Can the motorcycle be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000579635.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000579635.jpg", "category": "ski", "question": "Can the ski be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000148739.jpg", "category": "woman", "question": "Can the woman be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000148739.jpg", "category": "pig", "question": "Can the pig be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000151657.jpg", "category": "tie", "question": "Can the tie be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000151657.jpg", "category": "racket", "question": "Can the racket be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000151657.jpg", "category": "rug", "question": "Can the rug be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000151657.jpg", "category": "device", "question": "Can the device be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000152686.jpg", "category": "tennis racket", "question": "Can the tennis racket be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000152686.jpg", "category": "window frame", "question": "Can the window frame be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000153797.jpg", "category": "baseball glove", "question": "Can the baseball glove be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000153797.jpg", "category": "trash bin", "question": "Can the trash bin be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000153797.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000153797.jpg", "category": "meat", "question": "Can the meat be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000154425.jpg", "category": "kite", "question": "Can the kite be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000154425.jpg", "category": "field", "question": "Can the field be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000158227.jpg", "category": "baseball bat", "question": "Can the baseball bat be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000158227.jpg", "category": "life buoy", "question": "Can the life buoy be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000163562.jpg", "category": "frisbee", "question": "Can the frisbee be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000163562.jpg", "category": "strap", "question": "Can the strap be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000163682.jpg", "category": "document", "question": "Can the document be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000163682.jpg", "category": "clock", "question": "Can the clock be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000164637.jpg", "category": "towel", "question": "Can the towel be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000164637.jpg", "category": "leaf", "question": "Can the leaf be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000166642.jpg", "category": "tree trunk", "question": "Can the tree trunk be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000166642.jpg", "category": "marker", "question": "Can the marker be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000170474.jpg", "category": "tennis racket", "question": "Can the tennis racket be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000170474.jpg", "category": "tree truck", "question": "Can the tree truck be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000170474.jpg", "category": "chair", "question": "Can the chair be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000170474.jpg", "category": "basket", "question": "Can the basket be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000171788.jpg", "category": "tennis racket", "question": "Can the tennis racket be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000171788.jpg", "category": "telephone", "question": "Can the telephone be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000172649.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000172649.jpg", "category": "buildingt", "question": "Can the buildingt be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000173383.jpg", "category": "flower", "question": "Can the flower be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000173383.jpg", "category": "pylon", "question": "Can the pylon be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000179653.jpg", "category": "clock", "question": "Can the clock be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000179653.jpg", "category": "towel holder", "question": "Can the towel holder be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000179653.jpg", "category": "sign", "question": "Can the sign be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000179653.jpg", "category": "reed", "question": "Can the reed be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000181303.jpg", "category": "sky", "question": "Can the sky be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000181303.jpg", "category": "window blind", "question": "Can the window blind be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000183675.jpg", "category": "sign", "question": "Can the sign be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000183675.jpg", "category": "sea", "question": "Can the sea be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000184978.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000184978.jpg", "category": "chicken nugget", "question": "Can the chicken nugget be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000184978.jpg", "category": "sky", "question": "Can the sky be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000184978.jpg", "category": "roll", "question": "Can the roll be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000185950.jpg", "category": "skateboard", "question": "Can the skateboard be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000185950.jpg", "category": "guitar", "question": "Can the guitar be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000185950.jpg", "category": "handrail", "question": "Can the handrail be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000185950.jpg", "category": "table top", "question": "Can the table top be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000186042.jpg", "category": "skis", "question": "Can the skis be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000186042.jpg", "category": "house", "question": "Can the house be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000186042.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000186042.jpg", "category": "wooden door", "question": "Can the wooden door be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000186042.jpg", "category": "ski pole", "question": "Can the ski pole be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000186042.jpg", "category": "life buoy", "question": "Can the life buoy be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000187362.jpg", "category": "surfboard", "question": "Can the surfboard be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000187362.jpg", "category": "ball", "question": "Can the ball be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000192047.jpg", "category": "light", "question": "Can the light be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000192047.jpg", "category": "device", "question": "Can the device be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000192607.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000192607.jpg", "category": "river", "question": "Can the river be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000193674.jpg", "category": "woman", "question": "Can the woman be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000193674.jpg", "category": "bowl", "question": "Can the bowl be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000196185.jpg", "category": "airplane", "question": "Can the airplane be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000196185.jpg", "category": "notebook", "question": "Can the notebook be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000196185.jpg", "category": "light", "question": "Can the light be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000196185.jpg", "category": "ornament", "question": "Can the ornament be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000199310.jpg", "category": "tennis racket", "question": "Can the tennis racket be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000199310.jpg", "category": "drain", "question": "Can the floor drain be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000199310.jpg", "category": "flower", "question": "Can the flower be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000199310.jpg", "category": "hook", "question": "Can the hook be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000209753.jpg", "category": "painting", "question": "Can the painting be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000209753.jpg", "category": "napkin", "question": "Can the napkin be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000076417.jpg", "category": "dog", "question": "Can the dog be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000076417.jpg", "category": "tennis court", "question": "Can the tennis court be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000076417.jpg", "category": "traffic light", "question": "Can the traffic light be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000076417.jpg", "category": "boy", "question": "Can the boy be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000076417.jpg", "category": "sign", "question": "Can the sign be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000076417.jpg", "category": "meat", "question": "Can the meat be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000080274.jpg", "category": "fence", "question": "Can the fence be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000080274.jpg", "category": "arched window", "question": "Can the arched window be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000081061.jpg", "category": "curb", "question": "Can the curb be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000081061.jpg", "category": "boy", "question": "Can the boy be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000082807.jpg", "category": "cake", "question": "Can the cake be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000082807.jpg", "category": "carton", "question": "Can the carton be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000087875.jpg", "category": "sky", "question": "Can the sky be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000087875.jpg", "category": "plane", "question": "Can the plane be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000088265.jpg", "category": "horse", "question": "Can the horse be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000088265.jpg", "category": "toy", "question": "Can the toy be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000088485.jpg", "category": "frisbee", "question": "Can the frisbee be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000088485.jpg", "category": "ski poles", "question": "Can the ski poles be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000093261.jpg", "category": "sandals", "question": "Can the sandals be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000093261.jpg", "category": "parking lot", "question": "Can the parking lot be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000096825.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000096825.jpg", "category": "shelf", "question": "Can the shelf be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000096825.jpg", "category": "ski pole", "question": "Can the ski pole be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000096825.jpg", "category": "sunshade", "question": "Can the sunshade be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000096825.jpg", "category": "grass", "question": "Can the grass be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000096825.jpg", "category": "parking meter", "question": "Can the parking meter be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000099428.jpg", "category": "pencil", "question": "Can the pencil be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000099428.jpg", "category": "pavement", "question": "Can the pavement be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000105014.jpg", "category": "wrapping paper", "question": "Can the wrapping paper be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000105014.jpg", "category": "potted plant", "question": "Can the potted plant be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000106563.jpg", "category": "light", "question": "Can the light be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000106563.jpg", "category": "ground", "question": "Can the ground be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000108495.jpg", "category": "skateboard", "question": "Can the skateboard be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000108495.jpg", "category": "wifi box", "question": "Can the wifi box be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000109992.jpg", "category": "snowboard", "question": "Can the snowboard be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000109992.jpg", "category": "painting", "question": "Can the painting be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000110784.jpg", "category": "bus", "question": "Can the bus be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000110784.jpg", "category": "hook", "question": "Can the hook be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000112110.jpg", "category": "suitcase", "question": "Can the suitcase be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000112110.jpg", "category": "flower", "question": "Can the flower be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000115118.jpg", "category": "steel pole", "question": "Can the steel pole be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000115118.jpg", "category": "airplane", "question": "Can the airplane be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000116825.jpg", "category": "knife", "question": "Can the knife be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000116825.jpg", "category": "clock", "question": "Can the clock be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000118921.jpg", "category": "woman", "question": "Can the woman be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000118921.jpg", "category": "toilet plunger", "question": "Can the toilet plunger be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000118921.jpg", "category": "ski poles", "question": "Can the ski poles be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000118921.jpg", "category": "pavement", "question": "Can the pavement be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000121591.jpg", "category": "tree", "question": "Can the tree be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000121591.jpg", "category": "fire extinguisher", "question": "Can the fire extinguisher be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000125257.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000125257.jpg", "category": "sink", "question": "Can the sink be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000125257.jpg", "category": "tree", "question": "Can the tree be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000125257.jpg", "category": "water pipe", "question": "Can the water pipe be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000125472.jpg", "category": "skateboard", "question": "Can the skateboard be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000125472.jpg", "category": "potted plant", "question": "Can the potted plant be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000125472.jpg", "category": "fence", "question": "Can the fence be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000125472.jpg", "category": "land", "question": "Can the land be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000128112.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000128112.jpg", "category": "control tower", "question": "Can the control tower be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000128112.jpg", "category": "grass", "question": "Can the grass be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000128112.jpg", "category": "toilet paper", "question": "Can the toilet paper be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000128112.jpg", "category": "moutain", "question": "Can the moutain be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000128112.jpg", "category": "loudspeaker box", "question": "Can the loudspeaker box be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000130586.jpg", "category": "spool", "question": "Can the spool be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000130586.jpg", "category": "book", "question": "Can the book be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000131131.jpg", "category": "paper", "question": "Can the paper be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000131131.jpg", "category": "roof", "question": "Can the roof be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000133343.jpg", "category": "tie", "question": "Can the tie be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000133343.jpg", "category": "dish", "question": "Can the dish be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000138819.jpg", "category": "toilet paper", "question": "Can the toilet paper be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000138819.jpg", "category": "mirror", "question": "Can the mirror be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000138819.jpg", "category": "holder", "question": "Can the holder be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000138819.jpg", "category": "dog", "question": "Can the dog be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000140270.jpg", "category": "woman", "question": "Can the woman be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000140270.jpg", "category": "roadway", "question": "Can the roadway be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000140420.jpg", "category": "water", "question": "Can the water be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000140420.jpg", "category": "egg", "question": "Can the egg be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000001490.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000001490.jpg", "category": "house", "question": "Can the house be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000002532.jpg", "category": "ski", "question": "Can the ski be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000002532.jpg", "category": "bar", "question": "Can the bar be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000004495.jpg", "category": "painting", "question": "Can the painting be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000004495.jpg", "category": "ornament", "question": "Can the ornament be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000010995.jpg", "category": "lamp", "question": "Can the lamp be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000010995.jpg", "category": "menu", "question": "Can the menu be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000013774.jpg", "category": "frisbee", "question": "Can the frisbee be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000013774.jpg", "category": "computer", "question": "Can the computer be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000014007.jpg", "category": "cat", "question": "Can the cat be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000014007.jpg", "category": "parking lot", "question": "Can the parking lot be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000015597.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000015597.jpg", "category": "fence", "question": "Can the fence be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000015597.jpg", "category": "bicycle", "question": "Can the bicycle be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000015597.jpg", "category": "grass", "question": "Can the grass be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000017905.jpg", "category": "fire hydrant", "question": "Can the fire hydrant be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000017905.jpg", "category": "train", "question": "Can the train be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000017905.jpg", "category": "sign", "question": "Can the sign be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000017905.jpg", "category": "dish", "question": "Can the dish be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000020107.jpg", "category": "flower", "question": "Can the flower be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000020107.jpg", "category": "cat", "question": "Can the cat be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000022192.jpg", "category": "pillow", "question": "Can the pillow be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000022192.jpg", "category": "path", "question": "Can the path be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000027186.jpg", "category": "remote", "question": "Can the remote be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000027186.jpg", "category": "drawer", "question": "Can the drawer be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000028285.jpg", "category": "clock", "question": "Can the clock be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000028285.jpg", "category": "petal", "question": "Can the petal be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000030504.jpg", "category": "backpack", "question": "Can the backpack be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000030504.jpg", "category": "window-blind", "question": "Can the window-blind be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000030504.jpg", "category": "skis", "question": "Can the skis be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000030504.jpg", "category": "curb", "question": "Can the curb be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000030504.jpg", "category": "ski poles", "question": "Can the ski poles be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000030504.jpg", "category": "device", "question": "Can the device be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000031217.jpg", "category": "boy", "question": "Can the boy be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000031217.jpg", "category": "sand", "question": "Can the sand be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000031217.jpg", "category": "tennis racket", "question": "Can the tennis racket be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000031217.jpg", "category": "carpet", "question": "Can the carpet be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000032570.jpg", "category": "surfboard", "question": "Can the surfboard be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000032570.jpg", "category": "speaker", "question": "Can the speaker be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000033005.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000033005.jpg", "category": "halter", "question": "Can the halter be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000033005.jpg", "category": "tennis racket", "question": "Can the tennis racket be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000033005.jpg", "category": "carriage", "question": "Can the carriage be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000034205.jpg", "category": "meat", "question": "Can the meat be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000034205.jpg", "category": "sky", "question": "Can the sky be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000034205.jpg", "category": "table", "question": "Can the table be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000034205.jpg", "category": "bar", "question": "Can the bar be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000037670.jpg", "category": "hand", "question": "Can the hand be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000037670.jpg", "category": "parking meter", "question": "Can the parking meter be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000037670.jpg", "category": "bracket", "question": "Can the bracket be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000037670.jpg", "category": "bird", "question": "Can the bird be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000040036.jpg", "category": "woman", "question": "Can the woman be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000040036.jpg", "category": "plane", "question": "Can the plane be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000040036.jpg", "category": "potted plant", "question": "Can the potted plant be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000040036.jpg", "category": "tub", "question": "Can the tub be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000042102.jpg", "category": "tie", "question": "Can the tie be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000042102.jpg", "category": "cabinet", "question": "Can the cabinet be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000042563.jpg", "category": "train", "question": "Can the train be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000042563.jpg", "category": "tree trunk", "question": "Can the tree trunk be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000045070.jpg", "category": "horse", "question": "Can the horse be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000045070.jpg", "category": "phone", "question": "Can the phone be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000047121.jpg", "category": "bottle", "question": "Can the bottle be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000047121.jpg", "category": "pen", "question": "Can the pen be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000048564.jpg", "category": "cell phone", "question": "Can the cell phone be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000048564.jpg", "category": "dog mattress", "question": "Can the dog mattress be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000050326.jpg", "category": "kite", "question": "Can the kite be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000050326.jpg", "category": "toilet plunger", "question": "Can the toilet plunger be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000051314.jpg", "category": "surfboard", "question": "Can the surfboard be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000051314.jpg", "category": "bus", "question": "Can the bus be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000055950.jpg", "category": "tennis racket", "question": "Can the tennis racket be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000055950.jpg", "category": "passageway", "question": "Can the passageway be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000060835.jpg", "category": "pine cone", "question": "Can the pine cone be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000060835.jpg", "category": "bird", "question": "Can the bird be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000061747.jpg", "category": "ski pole", "question": "Can the ski pole be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000061747.jpg", "category": "track", "question": "Can the track be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000063154.jpg", "category": "man", "question": "Can the man be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000063154.jpg", "category": "roadway", "question": "Can the roadway be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000065485.jpg", "category": "dog", "question": "Can the dog be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000065485.jpg", "category": "bar", "question": "Can the bar be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000068286.jpg", "category": "phone", "question": "Can the phone be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000068286.jpg", "category": "street lamp", "question": "Can the street lamp be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000068286.jpg", "category": "lamp", "question": "Can the lamp be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000068286.jpg", "category": "ceiling", "question": "Can the ceiling be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "B"}
{"image_name": "000000068286.jpg", "category": "frame", "question": "Can the frame be seen in this image?\nA. Yes.\nB. No.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}
{"image_name": "000000068286.jpg", "category": "clock", "question": "Can the clock be seen in this image?\nA. No.\nB. Yes.\nAnswer with the option's letter from the given choices directly.", "answer": "A"}