array commited on
Commit
2650831
·
verified ·
1 Parent(s): 02cbf5e

Add files using upload-large-folder tool

Browse files
README.md ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - image-classification
5
+ - image-to-text
6
+ - zero-shot-image-classification
7
+ language:
8
+ - en
9
+ pretty_name: COLA
10
+ size_categories:
11
+ - 10K<n<100K
12
+ tags:
13
+ - compositionality
14
+ - vision-language
15
+ - visual-genome
16
+ - clevr
17
+ - paco
18
+ configs:
19
+ - config_name: multiobjects
20
+ data_files:
21
+ - split: val
22
+ path: data/multiobjects.parquet
23
+ - config_name: singleobjects_gqa
24
+ data_files:
25
+ - split: val
26
+ path: data/singleobjects_gqa.parquet
27
+ - config_name: singleobjects_clevr
28
+ data_files:
29
+ - split: val
30
+ path: data/singleobjects_clevr.parquet
31
+ - config_name: singleobjects_paco
32
+ data_files:
33
+ - split: val
34
+ path: data/singleobjects_paco.parquet
35
+ ---
36
+
37
+ # COLA: Compose Objects Localized with Attributes
38
+
39
+ Self-contained Hugging Face port of the **COLA** benchmark from the paper
40
+ ["How to adapt vision-language models to Compose Objects Localized with Attributes?"](https://arxiv.org/abs/2305.03689).
41
+
42
+ - 📄 Paper: https://arxiv.org/abs/2305.03689
43
+ - 🌐 Project page: https://cs-people.bu.edu/array/research/cola/
44
+ - 💻 Original code & data: https://github.com/ArijitRay1993/COLA
45
+
46
+ This repository bundles the benchmark annotations as Parquet files and the referenced
47
+ images as regular files under `images/`, so the dataset is fully self-contained.
48
+
49
+ ## Dataset Structure
50
+
51
+ ```
52
+ .
53
+ ├── data/
54
+ │ ├── multiobjects.parquet
55
+ │ ├── singleobjects_gqa.parquet
56
+ │ ├── singleobjects_clevr.parquet
57
+ │ ├── singleobjects_paco.parquet
58
+ │ ├── singleobjects_gqa_labels.json
59
+ │ ├── singleobjects_clevr_labels.json
60
+ │ └── singleobjects_paco_labels.json
61
+ └── images/
62
+ ├── vg/<vg_id>.jpg # Visual Genome images (multiobjects + GQA)
63
+ ├── clevr/valA/*.png # CLEVR-CoGenT valA
64
+ ├── clevr/valB/*.png # CLEVR-CoGenT valB
65
+ ├── coco/val2017/*.jpg # COCO val2017 (PACO)
66
+ └── coco/train2017/*.jpg # COCO train2017 (PACO)
67
+ ```
68
+
69
+ Image paths stored in parquet are **relative to the repository root**, e.g.
70
+ `images/vg/2390970.jpg`. Load them by joining with the local clone / snapshot path.
71
+
72
+ ## Configs / Splits
73
+
74
+ ### `multiobjects` (210 pairs)
75
+
76
+ A hard image–caption matching task. Each row contains two images and two captions
77
+ whose objects/attributes are swapped: caption 1 applies to image 1 (not image 2) and
78
+ vice versa.
79
+
80
+ | Field | Type | Description |
81
+ |------------|--------|-----------------------------------|
82
+ | `image1` | string | Relative path to image 1 |
83
+ | `caption1` | string | Caption describing image 1 |
84
+ | `image2` | string | Relative path to image 2 |
85
+ | `caption2` | string | Caption describing image 2 |
86
+
87
+ ### `singleobjects_gqa` (2,589 rows), `singleobjects_clevr` (30,000 rows), `singleobjects_paco` (7,921 rows)
88
+
89
+ Multi-label classification across fixed vocabularies of multi-attribute object
90
+ classes (320 for GQA, 96 for CLEVR, 400 for PACO). The label lists live at
91
+ `data/singleobjects_<subset>_labels.json`.
92
+
93
+ | Field | Type | Description |
94
+ |----------------------|-----------------|---------------------------------------------------------------|
95
+ | `image` | string | Relative path to the image |
96
+ | `objects_attributes` | string (JSON) | Objects + attributes annotation (GQA and CLEVR only) |
97
+ | `label` | list\[int] | Binary indicator per class (length matches labels vocabulary) |
98
+ | `hard_list` | list\[int] | Indicator of whether each class is "hard" for this image |
99
+
100
+ For a given class, the paper's MAP metric is computed on images where `hard_list == 1`
101
+ for that class. See `scripts/eval.py` in the [original repo](https://github.com/ArijitRay1993/COLA)
102
+ for the exact metric.
103
+
104
+ ## Loading
105
+
106
+ ```python
107
+ from datasets import load_dataset
108
+
109
+ mo = load_dataset("array/cola", "multiobjects", split="val")
110
+ gqa = load_dataset("array/cola", "singleobjects_gqa", split="val")
111
+ clv = load_dataset("array/cola", "singleobjects_clevr", split="val")
112
+ paco = load_dataset("array/cola", "singleobjects_paco", split="val")
113
+ ```
114
+
115
+ To open an image, resolve it against the local snapshot root:
116
+
117
+ ```python
118
+ from huggingface_hub import snapshot_download
119
+ from PIL import Image
120
+ import os
121
+
122
+ root = snapshot_download("array/cola", repo_type="dataset")
123
+ ex = mo[0]
124
+ img1 = Image.open(os.path.join(root, ex["image1"]))
125
+ img2 = Image.open(os.path.join(root, ex["image2"]))
126
+ ```
127
+
128
+ Or, if you've cloned the repo with `git lfs`, just open paths directly:
129
+
130
+ ```python
131
+ Image.open(f"{REPO_DIR}/{ex['image1']}")
132
+ ```
133
+
134
+ ## Licensing / Source notes
135
+
136
+ - Visual Genome, CLEVR-CoGenT, and COCO images are redistributed here under their
137
+ respective original licenses. Please refer to the upstream datasets:
138
+ - [Visual Genome](https://visualgenome.org/) (CC BY 4.0)
139
+ - [CLEVR-CoGenT](https://cs.stanford.edu/people/jcjohns/clevr/) (CC BY 4.0)
140
+ - [COCO 2017](https://cocodataset.org/) (CC BY 4.0 for annotations; Flickr terms for images)
141
+ - The COLA annotations (parquet files and label lists) are released under the MIT
142
+ license, matching the [original COLA repo](https://github.com/ArijitRay1993/COLA).
143
+
144
+ ## Citation
145
+
146
+ ```bibtex
147
+ @article{ray2023cola,
148
+ title = {COLA: How to adapt vision-language models to Compose Objects Localized with Attributes?},
149
+ author = {Ray, Arijit and Radenovic, Filip and Dubey, Abhimanyu and Plummer, Bryan A. and Krishna, Ranjay and Saenko, Kate},
150
+ journal = {arXiv preprint arXiv:2305.03689},
151
+ year = {2023}
152
+ }
153
+ ```
data/multiobjects.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7aee8eca00b816314df0ceedb1e0ff61d446b77540e58df429b879abad414a8
3
+ size 12588
data/singleobjects_clevr.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db5c9651715d3f10fe8db04456fbe45ad39486d4b4be3b46d01363e761688ed1
3
+ size 2091168
data/singleobjects_clevr_labels.json ADDED
@@ -0,0 +1,770 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ [
3
+ [
4
+ "small",
5
+ "yellow",
6
+ "rubber"
7
+ ],
8
+ "cylinder"
9
+ ],
10
+ [
11
+ [
12
+ "small",
13
+ "purple",
14
+ "rubber"
15
+ ],
16
+ "sphere"
17
+ ],
18
+ [
19
+ [
20
+ "large",
21
+ "yellow",
22
+ "rubber"
23
+ ],
24
+ "cylinder"
25
+ ],
26
+ [
27
+ [
28
+ "large",
29
+ "green",
30
+ "rubber"
31
+ ],
32
+ "cube"
33
+ ],
34
+ [
35
+ [
36
+ "small",
37
+ "yellow",
38
+ "metal"
39
+ ],
40
+ "cylinder"
41
+ ],
42
+ [
43
+ [
44
+ "large",
45
+ "green",
46
+ "rubber"
47
+ ],
48
+ "cylinder"
49
+ ],
50
+ [
51
+ [
52
+ "small",
53
+ "red",
54
+ "rubber"
55
+ ],
56
+ "cylinder"
57
+ ],
58
+ [
59
+ [
60
+ "small",
61
+ "purple",
62
+ "metal"
63
+ ],
64
+ "cube"
65
+ ],
66
+ [
67
+ [
68
+ "small",
69
+ "red",
70
+ "metal"
71
+ ],
72
+ "cylinder"
73
+ ],
74
+ [
75
+ [
76
+ "large",
77
+ "yellow",
78
+ "rubber"
79
+ ],
80
+ "cube"
81
+ ],
82
+ [
83
+ [
84
+ "large",
85
+ "purple",
86
+ "metal"
87
+ ],
88
+ "cube"
89
+ ],
90
+ [
91
+ [
92
+ "large",
93
+ "red",
94
+ "rubber"
95
+ ],
96
+ "cube"
97
+ ],
98
+ [
99
+ [
100
+ "small",
101
+ "purple",
102
+ "metal"
103
+ ],
104
+ "cylinder"
105
+ ],
106
+ [
107
+ [
108
+ "large",
109
+ "red",
110
+ "metal"
111
+ ],
112
+ "cube"
113
+ ],
114
+ [
115
+ [
116
+ "large",
117
+ "green",
118
+ "metal"
119
+ ],
120
+ "cube"
121
+ ],
122
+ [
123
+ [
124
+ "large",
125
+ "cyan",
126
+ "rubber"
127
+ ],
128
+ "cube"
129
+ ],
130
+ [
131
+ [
132
+ "small",
133
+ "green",
134
+ "metal"
135
+ ],
136
+ "cylinder"
137
+ ],
138
+ [
139
+ [
140
+ "large",
141
+ "green",
142
+ "rubber"
143
+ ],
144
+ "sphere"
145
+ ],
146
+ [
147
+ [
148
+ "small",
149
+ "brown",
150
+ "metal"
151
+ ],
152
+ "sphere"
153
+ ],
154
+ [
155
+ [
156
+ "small",
157
+ "green",
158
+ "rubber"
159
+ ],
160
+ "cube"
161
+ ],
162
+ [
163
+ [
164
+ "small",
165
+ "brown",
166
+ "metal"
167
+ ],
168
+ "cylinder"
169
+ ],
170
+ [
171
+ [
172
+ "small",
173
+ "green",
174
+ "metal"
175
+ ],
176
+ "sphere"
177
+ ],
178
+ [
179
+ [
180
+ "large",
181
+ "purple",
182
+ "rubber"
183
+ ],
184
+ "sphere"
185
+ ],
186
+ [
187
+ [
188
+ "small",
189
+ "cyan",
190
+ "rubber"
191
+ ],
192
+ "cube"
193
+ ],
194
+ [
195
+ [
196
+ "small",
197
+ "cyan",
198
+ "metal"
199
+ ],
200
+ "cube"
201
+ ],
202
+ [
203
+ [
204
+ "large",
205
+ "gray",
206
+ "metal"
207
+ ],
208
+ "sphere"
209
+ ],
210
+ [
211
+ [
212
+ "large",
213
+ "blue",
214
+ "rubber"
215
+ ],
216
+ "sphere"
217
+ ],
218
+ [
219
+ [
220
+ "large",
221
+ "blue",
222
+ "rubber"
223
+ ],
224
+ "cylinder"
225
+ ],
226
+ [
227
+ [
228
+ "large",
229
+ "gray",
230
+ "rubber"
231
+ ],
232
+ "sphere"
233
+ ],
234
+ [
235
+ [
236
+ "small",
237
+ "brown",
238
+ "rubber"
239
+ ],
240
+ "cube"
241
+ ],
242
+ [
243
+ [
244
+ "large",
245
+ "cyan",
246
+ "metal"
247
+ ],
248
+ "cube"
249
+ ],
250
+ [
251
+ [
252
+ "large",
253
+ "gray",
254
+ "rubber"
255
+ ],
256
+ "cylinder"
257
+ ],
258
+ [
259
+ [
260
+ "small",
261
+ "red",
262
+ "rubber"
263
+ ],
264
+ "sphere"
265
+ ],
266
+ [
267
+ [
268
+ "small",
269
+ "red",
270
+ "metal"
271
+ ],
272
+ "sphere"
273
+ ],
274
+ [
275
+ [
276
+ "large",
277
+ "purple",
278
+ "metal"
279
+ ],
280
+ "cylinder"
281
+ ],
282
+ [
283
+ [
284
+ "large",
285
+ "red",
286
+ "rubber"
287
+ ],
288
+ "cylinder"
289
+ ],
290
+ [
291
+ [
292
+ "small",
293
+ "blue",
294
+ "rubber"
295
+ ],
296
+ "sphere"
297
+ ],
298
+ [
299
+ [
300
+ "large",
301
+ "red",
302
+ "metal"
303
+ ],
304
+ "cylinder"
305
+ ],
306
+ [
307
+ [
308
+ "large",
309
+ "green",
310
+ "metal"
311
+ ],
312
+ "cylinder"
313
+ ],
314
+ [
315
+ [
316
+ "large",
317
+ "cyan",
318
+ "rubber"
319
+ ],
320
+ "cylinder"
321
+ ],
322
+ [
323
+ [
324
+ "small",
325
+ "blue",
326
+ "metal"
327
+ ],
328
+ "sphere"
329
+ ],
330
+ [
331
+ [
332
+ "large",
333
+ "yellow",
334
+ "metal"
335
+ ],
336
+ "sphere"
337
+ ],
338
+ [
339
+ [
340
+ "large",
341
+ "cyan",
342
+ "metal"
343
+ ],
344
+ "cylinder"
345
+ ],
346
+ [
347
+ [
348
+ "small",
349
+ "purple",
350
+ "rubber"
351
+ ],
352
+ "cube"
353
+ ],
354
+ [
355
+ [
356
+ "small",
357
+ "purple",
358
+ "metal"
359
+ ],
360
+ "sphere"
361
+ ],
362
+ [
363
+ [
364
+ "small",
365
+ "purple",
366
+ "rubber"
367
+ ],
368
+ "cylinder"
369
+ ],
370
+ [
371
+ [
372
+ "small",
373
+ "green",
374
+ "rubber"
375
+ ],
376
+ "cylinder"
377
+ ],
378
+ [
379
+ [
380
+ "small",
381
+ "gray",
382
+ "rubber"
383
+ ],
384
+ "sphere"
385
+ ],
386
+ [
387
+ [
388
+ "large",
389
+ "gray",
390
+ "metal"
391
+ ],
392
+ "cylinder"
393
+ ],
394
+ [
395
+ [
396
+ "small",
397
+ "brown",
398
+ "rubber"
399
+ ],
400
+ "sphere"
401
+ ],
402
+ [
403
+ [
404
+ "small",
405
+ "cyan",
406
+ "rubber"
407
+ ],
408
+ "cylinder"
409
+ ],
410
+ [
411
+ [
412
+ "small",
413
+ "cyan",
414
+ "metal"
415
+ ],
416
+ "cylinder"
417
+ ],
418
+ [
419
+ [
420
+ "small",
421
+ "brown",
422
+ "rubber"
423
+ ],
424
+ "cylinder"
425
+ ],
426
+ [
427
+ [
428
+ "large",
429
+ "gray",
430
+ "metal"
431
+ ],
432
+ "cube"
433
+ ],
434
+ [
435
+ [
436
+ "large",
437
+ "gray",
438
+ "rubber"
439
+ ],
440
+ "cube"
441
+ ],
442
+ [
443
+ [
444
+ "large",
445
+ "purple",
446
+ "rubber"
447
+ ],
448
+ "cube"
449
+ ],
450
+ [
451
+ [
452
+ "large",
453
+ "brown",
454
+ "rubber"
455
+ ],
456
+ "sphere"
457
+ ],
458
+ [
459
+ [
460
+ "large",
461
+ "brown",
462
+ "metal"
463
+ ],
464
+ "sphere"
465
+ ],
466
+ [
467
+ [
468
+ "large",
469
+ "brown",
470
+ "rubber"
471
+ ],
472
+ "cylinder"
473
+ ],
474
+ [
475
+ [
476
+ "large",
477
+ "brown",
478
+ "metal"
479
+ ],
480
+ "cylinder"
481
+ ],
482
+ [
483
+ [
484
+ "large",
485
+ "yellow",
486
+ "metal"
487
+ ],
488
+ "cylinder"
489
+ ],
490
+ [
491
+ [
492
+ "large",
493
+ "purple",
494
+ "metal"
495
+ ],
496
+ "sphere"
497
+ ],
498
+ [
499
+ [
500
+ "large",
501
+ "red",
502
+ "rubber"
503
+ ],
504
+ "sphere"
505
+ ],
506
+ [
507
+ [
508
+ "small",
509
+ "blue",
510
+ "rubber"
511
+ ],
512
+ "cylinder"
513
+ ],
514
+ [
515
+ [
516
+ "large",
517
+ "brown",
518
+ "rubber"
519
+ ],
520
+ "cube"
521
+ ],
522
+ [
523
+ [
524
+ "large",
525
+ "red",
526
+ "metal"
527
+ ],
528
+ "sphere"
529
+ ],
530
+ [
531
+ [
532
+ "large",
533
+ "cyan",
534
+ "rubber"
535
+ ],
536
+ "sphere"
537
+ ],
538
+ [
539
+ [
540
+ "small",
541
+ "blue",
542
+ "metal"
543
+ ],
544
+ "cylinder"
545
+ ],
546
+ [
547
+ [
548
+ "large",
549
+ "brown",
550
+ "metal"
551
+ ],
552
+ "cube"
553
+ ],
554
+ [
555
+ [
556
+ "large",
557
+ "yellow",
558
+ "metal"
559
+ ],
560
+ "cube"
561
+ ],
562
+ [
563
+ [
564
+ "large",
565
+ "cyan",
566
+ "metal"
567
+ ],
568
+ "sphere"
569
+ ],
570
+ [
571
+ [
572
+ "small",
573
+ "red",
574
+ "rubber"
575
+ ],
576
+ "cube"
577
+ ],
578
+ [
579
+ [
580
+ "large",
581
+ "green",
582
+ "metal"
583
+ ],
584
+ "sphere"
585
+ ],
586
+ [
587
+ [
588
+ "small",
589
+ "blue",
590
+ "rubber"
591
+ ],
592
+ "cube"
593
+ ],
594
+ [
595
+ [
596
+ "small",
597
+ "yellow",
598
+ "rubber"
599
+ ],
600
+ "sphere"
601
+ ],
602
+ [
603
+ [
604
+ "small",
605
+ "red",
606
+ "metal"
607
+ ],
608
+ "cube"
609
+ ],
610
+ [
611
+ [
612
+ "small",
613
+ "blue",
614
+ "metal"
615
+ ],
616
+ "cube"
617
+ ],
618
+ [
619
+ [
620
+ "small",
621
+ "green",
622
+ "rubber"
623
+ ],
624
+ "sphere"
625
+ ],
626
+ [
627
+ [
628
+ "small",
629
+ "yellow",
630
+ "metal"
631
+ ],
632
+ "sphere"
633
+ ],
634
+ [
635
+ [
636
+ "small",
637
+ "gray",
638
+ "metal"
639
+ ],
640
+ "sphere"
641
+ ],
642
+ [
643
+ [
644
+ "small",
645
+ "yellow",
646
+ "rubber"
647
+ ],
648
+ "cube"
649
+ ],
650
+ [
651
+ [
652
+ "small",
653
+ "gray",
654
+ "rubber"
655
+ ],
656
+ "cylinder"
657
+ ],
658
+ [
659
+ [
660
+ "small",
661
+ "yellow",
662
+ "metal"
663
+ ],
664
+ "cube"
665
+ ],
666
+ [
667
+ [
668
+ "small",
669
+ "gray",
670
+ "metal"
671
+ ],
672
+ "cylinder"
673
+ ],
674
+ [
675
+ [
676
+ "small",
677
+ "green",
678
+ "metal"
679
+ ],
680
+ "cube"
681
+ ],
682
+ [
683
+ [
684
+ "small",
685
+ "cyan",
686
+ "rubber"
687
+ ],
688
+ "sphere"
689
+ ],
690
+ [
691
+ [
692
+ "small",
693
+ "cyan",
694
+ "metal"
695
+ ],
696
+ "sphere"
697
+ ],
698
+ [
699
+ [
700
+ "large",
701
+ "blue",
702
+ "rubber"
703
+ ],
704
+ "cube"
705
+ ],
706
+ [
707
+ [
708
+ "small",
709
+ "gray",
710
+ "rubber"
711
+ ],
712
+ "cube"
713
+ ],
714
+ [
715
+ [
716
+ "small",
717
+ "gray",
718
+ "metal"
719
+ ],
720
+ "cube"
721
+ ],
722
+ [
723
+ [
724
+ "large",
725
+ "blue",
726
+ "metal"
727
+ ],
728
+ "sphere"
729
+ ],
730
+ [
731
+ [
732
+ "large",
733
+ "purple",
734
+ "rubber"
735
+ ],
736
+ "cylinder"
737
+ ],
738
+ [
739
+ [
740
+ "large",
741
+ "blue",
742
+ "metal"
743
+ ],
744
+ "cylinder"
745
+ ],
746
+ [
747
+ [
748
+ "small",
749
+ "brown",
750
+ "metal"
751
+ ],
752
+ "cube"
753
+ ],
754
+ [
755
+ [
756
+ "large",
757
+ "blue",
758
+ "metal"
759
+ ],
760
+ "cube"
761
+ ],
762
+ [
763
+ [
764
+ "large",
765
+ "yellow",
766
+ "rubber"
767
+ ],
768
+ "sphere"
769
+ ]
770
+ ]
data/singleobjects_gqa.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66f58a82e769359e0fe4c22f1070cfc227496959331fbfe8d94772871ab9968c
3
+ size 83794
data/singleobjects_gqa_labels.json ADDED
@@ -0,0 +1,2257 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ [
3
+ [
4
+ "green",
5
+ "large"
6
+ ],
7
+ "leaves"
8
+ ],
9
+ [
10
+ [
11
+ "green",
12
+ "small"
13
+ ],
14
+ "bushes"
15
+ ],
16
+ [
17
+ [
18
+ "bright",
19
+ "green"
20
+ ],
21
+ "grass"
22
+ ],
23
+ [
24
+ [
25
+ "green",
26
+ "small"
27
+ ],
28
+ "leaf"
29
+ ],
30
+ [
31
+ [
32
+ "light",
33
+ "metal"
34
+ ],
35
+ "pole"
36
+ ],
37
+ [
38
+ [
39
+ "green",
40
+ "large"
41
+ ],
42
+ "bush"
43
+ ],
44
+ [
45
+ [
46
+ "round",
47
+ "white"
48
+ ],
49
+ "sign"
50
+ ],
51
+ [
52
+ [
53
+ "black",
54
+ "short"
55
+ ],
56
+ "hair"
57
+ ],
58
+ [
59
+ [
60
+ "checkered",
61
+ "white"
62
+ ],
63
+ "shoe"
64
+ ],
65
+ [
66
+ [
67
+ "brown",
68
+ "grazing"
69
+ ],
70
+ "cow"
71
+ ],
72
+ [
73
+ [
74
+ "metal",
75
+ "yellow"
76
+ ],
77
+ "car"
78
+ ],
79
+ [
80
+ [
81
+ "brown",
82
+ "wood"
83
+ ],
84
+ "post"
85
+ ],
86
+ [
87
+ [
88
+ "happy",
89
+ "smiling"
90
+ ],
91
+ "mouth"
92
+ ],
93
+ [
94
+ [
95
+ "brown",
96
+ "walking"
97
+ ],
98
+ "giraffe"
99
+ ],
100
+ [
101
+ [
102
+ "green",
103
+ "leafy"
104
+ ],
105
+ "tree"
106
+ ],
107
+ [
108
+ [
109
+ "concrete",
110
+ "gray"
111
+ ],
112
+ "wall"
113
+ ],
114
+ [
115
+ [
116
+ "black",
117
+ "metal"
118
+ ],
119
+ "gate"
120
+ ],
121
+ [
122
+ [
123
+ "clear",
124
+ "white"
125
+ ],
126
+ "sky"
127
+ ],
128
+ [
129
+ [
130
+ "brown",
131
+ "large"
132
+ ],
133
+ "cookies"
134
+ ],
135
+ [
136
+ [
137
+ "green",
138
+ "long"
139
+ ],
140
+ "grass"
141
+ ],
142
+ [
143
+ [
144
+ "small",
145
+ "wood"
146
+ ],
147
+ "table"
148
+ ],
149
+ [
150
+ [
151
+ "tiled",
152
+ "white"
153
+ ],
154
+ "wall"
155
+ ],
156
+ [
157
+ [
158
+ "plastic",
159
+ "white"
160
+ ],
161
+ "fork"
162
+ ],
163
+ [
164
+ [
165
+ "blooming",
166
+ "yellow"
167
+ ],
168
+ "flower"
169
+ ],
170
+ [
171
+ [
172
+ "green",
173
+ "tall"
174
+ ],
175
+ "tree"
176
+ ],
177
+ [
178
+ [
179
+ "tall",
180
+ "white"
181
+ ],
182
+ "building"
183
+ ],
184
+ [
185
+ [
186
+ "hardwood",
187
+ "wood"
188
+ ],
189
+ "floor"
190
+ ],
191
+ [
192
+ [
193
+ "open",
194
+ "white"
195
+ ],
196
+ "door"
197
+ ],
198
+ [
199
+ [
200
+ "brown",
201
+ "cardboard"
202
+ ],
203
+ "box"
204
+ ],
205
+ [
206
+ [
207
+ "blond",
208
+ "long"
209
+ ],
210
+ "hair"
211
+ ],
212
+ [
213
+ [
214
+ "porcelain",
215
+ "white"
216
+ ],
217
+ "sink"
218
+ ],
219
+ [
220
+ [
221
+ "tennis",
222
+ "white"
223
+ ],
224
+ "shoe"
225
+ ],
226
+ [
227
+ [
228
+ "small",
229
+ "white"
230
+ ],
231
+ "bowl"
232
+ ],
233
+ [
234
+ [
235
+ "clear",
236
+ "plastic"
237
+ ],
238
+ "bottle"
239
+ ],
240
+ [
241
+ [
242
+ "clear",
243
+ "glass"
244
+ ],
245
+ "window"
246
+ ],
247
+ [
248
+ [
249
+ "happy",
250
+ "smiling"
251
+ ],
252
+ "girl"
253
+ ],
254
+ [
255
+ [
256
+ "happy",
257
+ "smiling"
258
+ ],
259
+ "boy"
260
+ ],
261
+ [
262
+ [
263
+ "playing",
264
+ "standing"
265
+ ],
266
+ "man"
267
+ ],
268
+ [
269
+ [
270
+ "round",
271
+ "wood"
272
+ ],
273
+ "table"
274
+ ],
275
+ [
276
+ [
277
+ "green",
278
+ "lush"
279
+ ],
280
+ "grass"
281
+ ],
282
+ [
283
+ [
284
+ "green",
285
+ "leafy"
286
+ ],
287
+ "trees"
288
+ ],
289
+ [
290
+ [
291
+ "flying",
292
+ "white"
293
+ ],
294
+ "airplane"
295
+ ],
296
+ [
297
+ [
298
+ "brown",
299
+ "long"
300
+ ],
301
+ "hair"
302
+ ],
303
+ [
304
+ [
305
+ "orange",
306
+ "round"
307
+ ],
308
+ "orange"
309
+ ],
310
+ [
311
+ [
312
+ "blue",
313
+ "parked"
314
+ ],
315
+ "car"
316
+ ],
317
+ [
318
+ [
319
+ "black",
320
+ "large"
321
+ ],
322
+ "umbrella"
323
+ ],
324
+ [
325
+ [
326
+ "baseball",
327
+ "blue"
328
+ ],
329
+ "cap"
330
+ ],
331
+ [
332
+ [
333
+ "happy",
334
+ "smiling"
335
+ ],
336
+ "man"
337
+ ],
338
+ [
339
+ [
340
+ "brown",
341
+ "wood"
342
+ ],
343
+ "pole"
344
+ ],
345
+ [
346
+ [
347
+ "green",
348
+ "large"
349
+ ],
350
+ "leaf"
351
+ ],
352
+ [
353
+ [
354
+ "brown",
355
+ "wood"
356
+ ],
357
+ "bed"
358
+ ],
359
+ [
360
+ [
361
+ "brown",
362
+ "wood"
363
+ ],
364
+ "bench"
365
+ ],
366
+ [
367
+ [
368
+ "long sleeved",
369
+ "white"
370
+ ],
371
+ "shirt"
372
+ ],
373
+ [
374
+ [
375
+ "brown",
376
+ "dry"
377
+ ],
378
+ "grass"
379
+ ],
380
+ [
381
+ [
382
+ "parked",
383
+ "white"
384
+ ],
385
+ "car"
386
+ ],
387
+ [
388
+ [
389
+ "dark",
390
+ "long"
391
+ ],
392
+ "hair"
393
+ ],
394
+ [
395
+ [
396
+ "clean",
397
+ "white"
398
+ ],
399
+ "toilet"
400
+ ],
401
+ [
402
+ [
403
+ "brown",
404
+ "tall"
405
+ ],
406
+ "grass"
407
+ ],
408
+ [
409
+ [
410
+ "blue",
411
+ "long sleeved"
412
+ ],
413
+ "shirt"
414
+ ],
415
+ [
416
+ [
417
+ "brown",
418
+ "wood"
419
+ ],
420
+ "chair"
421
+ ],
422
+ [
423
+ [
424
+ "clear",
425
+ "white"
426
+ ],
427
+ "umbrella"
428
+ ],
429
+ [
430
+ [
431
+ "red",
432
+ "small"
433
+ ],
434
+ "flower"
435
+ ],
436
+ [
437
+ [
438
+ "blue",
439
+ "painted"
440
+ ],
441
+ "wall"
442
+ ],
443
+ [
444
+ [
445
+ "gray",
446
+ "overcast"
447
+ ],
448
+ "sky"
449
+ ],
450
+ [
451
+ [
452
+ "brown",
453
+ "wood"
454
+ ],
455
+ "door"
456
+ ],
457
+ [
458
+ [
459
+ "orange",
460
+ "soft"
461
+ ],
462
+ "fur"
463
+ ],
464
+ [
465
+ [
466
+ "large",
467
+ "tan"
468
+ ],
469
+ "rock"
470
+ ],
471
+ [
472
+ [
473
+ "rectangular",
474
+ "white"
475
+ ],
476
+ "sign"
477
+ ],
478
+ [
479
+ [
480
+ "small",
481
+ "white"
482
+ ],
483
+ "boat"
484
+ ],
485
+ [
486
+ [
487
+ "porcelain",
488
+ "white"
489
+ ],
490
+ "toilet"
491
+ ],
492
+ [
493
+ [
494
+ "folded",
495
+ "white"
496
+ ],
497
+ "towel"
498
+ ],
499
+ [
500
+ [
501
+ "black",
502
+ "leather"
503
+ ],
504
+ "belt"
505
+ ],
506
+ [
507
+ [
508
+ "large",
509
+ "white"
510
+ ],
511
+ "airplane"
512
+ ],
513
+ [
514
+ [
515
+ "small",
516
+ "white"
517
+ ],
518
+ "sign"
519
+ ],
520
+ [
521
+ [
522
+ "black",
523
+ "sliced"
524
+ ],
525
+ "olive"
526
+ ],
527
+ [
528
+ [
529
+ "white",
530
+ "wood"
531
+ ],
532
+ "cabinet"
533
+ ],
534
+ [
535
+ [
536
+ "black",
537
+ "long"
538
+ ],
539
+ "hair"
540
+ ],
541
+ [
542
+ [
543
+ "long",
544
+ "transparent"
545
+ ],
546
+ "window"
547
+ ],
548
+ [
549
+ [
550
+ "flying",
551
+ "white"
552
+ ],
553
+ "bird"
554
+ ],
555
+ [
556
+ [
557
+ "cooked",
558
+ "green"
559
+ ],
560
+ "broccoli"
561
+ ],
562
+ [
563
+ [
564
+ "green",
565
+ "small"
566
+ ],
567
+ "tree"
568
+ ],
569
+ [
570
+ [
571
+ "large",
572
+ "tall"
573
+ ],
574
+ "building"
575
+ ],
576
+ [
577
+ [
578
+ "dark",
579
+ "wood"
580
+ ],
581
+ "cabinet"
582
+ ],
583
+ [
584
+ [
585
+ "black",
586
+ "open"
587
+ ],
588
+ "laptop"
589
+ ],
590
+ [
591
+ [
592
+ "puffy",
593
+ "white"
594
+ ],
595
+ "clouds"
596
+ ],
597
+ [
598
+ [
599
+ "blue",
600
+ "hazy"
601
+ ],
602
+ "sky"
603
+ ],
604
+ [
605
+ [
606
+ "flying",
607
+ "large"
608
+ ],
609
+ "airplane"
610
+ ],
611
+ [
612
+ [
613
+ "plastic",
614
+ "white"
615
+ ],
616
+ "bucket"
617
+ ],
618
+ [
619
+ [
620
+ "playing",
621
+ "swinging"
622
+ ],
623
+ "man"
624
+ ],
625
+ [
626
+ [
627
+ "clean",
628
+ "clear"
629
+ ],
630
+ "glass"
631
+ ],
632
+ [
633
+ [
634
+ "blue",
635
+ "calm"
636
+ ],
637
+ "water"
638
+ ],
639
+ [
640
+ [
641
+ "blue",
642
+ "bright",
643
+ "cloudy"
644
+ ],
645
+ "sky"
646
+ ],
647
+ [
648
+ [
649
+ "open",
650
+ "white"
651
+ ],
652
+ "umbrella"
653
+ ],
654
+ [
655
+ [
656
+ "running",
657
+ "white"
658
+ ],
659
+ "horse"
660
+ ],
661
+ [
662
+ [
663
+ "brown",
664
+ "wood"
665
+ ],
666
+ "cabinet"
667
+ ],
668
+ [
669
+ [
670
+ "round",
671
+ "white"
672
+ ],
673
+ "table"
674
+ ],
675
+ [
676
+ [
677
+ "small",
678
+ "white"
679
+ ],
680
+ "flowers"
681
+ ],
682
+ [
683
+ [
684
+ "gray",
685
+ "long"
686
+ ],
687
+ "pole"
688
+ ],
689
+ [
690
+ [
691
+ "plastic",
692
+ "white"
693
+ ],
694
+ "chair"
695
+ ],
696
+ [
697
+ [
698
+ "green",
699
+ "small"
700
+ ],
701
+ "banana"
702
+ ],
703
+ [
704
+ [
705
+ "blue",
706
+ "clear",
707
+ "cloudless"
708
+ ],
709
+ "sky"
710
+ ],
711
+ [
712
+ [
713
+ "black",
714
+ "large"
715
+ ],
716
+ "numbers"
717
+ ],
718
+ [
719
+ [
720
+ "brick",
721
+ "brown"
722
+ ],
723
+ "building"
724
+ ],
725
+ [
726
+ [
727
+ "black",
728
+ "inflated",
729
+ "round"
730
+ ],
731
+ "tire"
732
+ ],
733
+ [
734
+ [
735
+ "black",
736
+ "curly"
737
+ ],
738
+ "hair"
739
+ ],
740
+ [
741
+ [
742
+ "blue",
743
+ "long"
744
+ ],
745
+ "train"
746
+ ],
747
+ [
748
+ [
749
+ "gray",
750
+ "paved"
751
+ ],
752
+ "street"
753
+ ],
754
+ [
755
+ [
756
+ "black",
757
+ "iron"
758
+ ],
759
+ "fence"
760
+ ],
761
+ [
762
+ [
763
+ "metal",
764
+ "tall"
765
+ ],
766
+ "pole"
767
+ ],
768
+ [
769
+ [
770
+ "black",
771
+ "metal"
772
+ ],
773
+ "wire"
774
+ ],
775
+ [
776
+ [
777
+ "black",
778
+ "parked"
779
+ ],
780
+ "car"
781
+ ],
782
+ [
783
+ [
784
+ "tennis",
785
+ "white"
786
+ ],
787
+ "shoes"
788
+ ],
789
+ [
790
+ [
791
+ "blue",
792
+ "denim"
793
+ ],
794
+ "jeans"
795
+ ],
796
+ [
797
+ [
798
+ "large",
799
+ "white"
800
+ ],
801
+ "letter"
802
+ ],
803
+ [
804
+ [
805
+ "bare",
806
+ "brown"
807
+ ],
808
+ "trees"
809
+ ],
810
+ [
811
+ [
812
+ "blue",
813
+ "round"
814
+ ],
815
+ "sign"
816
+ ],
817
+ [
818
+ [
819
+ "black",
820
+ "long sleeved"
821
+ ],
822
+ "shirt"
823
+ ],
824
+ [
825
+ [
826
+ "pink",
827
+ "striped"
828
+ ],
829
+ "shirt"
830
+ ],
831
+ [
832
+ [
833
+ "painted",
834
+ "white"
835
+ ],
836
+ "wall"
837
+ ],
838
+ [
839
+ [
840
+ "brick",
841
+ "brown"
842
+ ],
843
+ "wall"
844
+ ],
845
+ [
846
+ [
847
+ "black",
848
+ "leather"
849
+ ],
850
+ "jacket"
851
+ ],
852
+ [
853
+ [
854
+ "open",
855
+ "white"
856
+ ],
857
+ "window"
858
+ ],
859
+ [
860
+ [
861
+ "gray",
862
+ "short"
863
+ ],
864
+ "hair"
865
+ ],
866
+ [
867
+ [
868
+ "baseball",
869
+ "black"
870
+ ],
871
+ "glove"
872
+ ],
873
+ [
874
+ [
875
+ "large",
876
+ "puffy"
877
+ ],
878
+ "cloud"
879
+ ],
880
+ [
881
+ [
882
+ "brown",
883
+ "hardwood",
884
+ "wood"
885
+ ],
886
+ "floor"
887
+ ],
888
+ [
889
+ [
890
+ "large",
891
+ "white"
892
+ ],
893
+ "bus"
894
+ ],
895
+ [
896
+ [
897
+ "small",
898
+ "yellow"
899
+ ],
900
+ "flower"
901
+ ],
902
+ [
903
+ [
904
+ "green",
905
+ "tall"
906
+ ],
907
+ "grass"
908
+ ],
909
+ [
910
+ [
911
+ "gray",
912
+ "wood"
913
+ ],
914
+ "fence"
915
+ ],
916
+ [
917
+ [
918
+ "chain-link",
919
+ "gray"
920
+ ],
921
+ "fence"
922
+ ],
923
+ [
924
+ [
925
+ "baseball",
926
+ "red"
927
+ ],
928
+ "cap"
929
+ ],
930
+ [
931
+ [
932
+ "black",
933
+ "metal"
934
+ ],
935
+ "pole"
936
+ ],
937
+ [
938
+ [
939
+ "green",
940
+ "large"
941
+ ],
942
+ "tree"
943
+ ],
944
+ [
945
+ [
946
+ "blue",
947
+ "sunny"
948
+ ],
949
+ "sky"
950
+ ],
951
+ [
952
+ [
953
+ "blue",
954
+ "overcast"
955
+ ],
956
+ "sky"
957
+ ],
958
+ [
959
+ [
960
+ "thin",
961
+ "tiny",
962
+ "unripe"
963
+ ],
964
+ "banana"
965
+ ],
966
+ [
967
+ [
968
+ "blue",
969
+ "clear",
970
+ "cloudy"
971
+ ],
972
+ "sky"
973
+ ],
974
+ [
975
+ [
976
+ "metal",
977
+ "wood"
978
+ ],
979
+ "bench"
980
+ ],
981
+ [
982
+ [
983
+ "little",
984
+ "young"
985
+ ],
986
+ "girl"
987
+ ],
988
+ [
989
+ [
990
+ "brown",
991
+ "wood"
992
+ ],
993
+ "table"
994
+ ],
995
+ [
996
+ [
997
+ "black",
998
+ "metal"
999
+ ],
1000
+ "chair"
1001
+ ],
1002
+ [
1003
+ [
1004
+ "green",
1005
+ "lush"
1006
+ ],
1007
+ "tree"
1008
+ ],
1009
+ [
1010
+ [
1011
+ "green",
1012
+ "tall"
1013
+ ],
1014
+ "trees"
1015
+ ],
1016
+ [
1017
+ [
1018
+ "green",
1019
+ "short"
1020
+ ],
1021
+ "banana"
1022
+ ],
1023
+ [
1024
+ [
1025
+ "little",
1026
+ "yellow"
1027
+ ],
1028
+ "flower"
1029
+ ],
1030
+ [
1031
+ [
1032
+ "brown",
1033
+ "small",
1034
+ "wood"
1035
+ ],
1036
+ "table"
1037
+ ],
1038
+ [
1039
+ [
1040
+ "fluffy",
1041
+ "white"
1042
+ ],
1043
+ "clouds"
1044
+ ],
1045
+ [
1046
+ [
1047
+ "black",
1048
+ "metal"
1049
+ ],
1050
+ "fence"
1051
+ ],
1052
+ [
1053
+ [
1054
+ "brown",
1055
+ "running"
1056
+ ],
1057
+ "horse"
1058
+ ],
1059
+ [
1060
+ [
1061
+ "gray",
1062
+ "large"
1063
+ ],
1064
+ "rock"
1065
+ ],
1066
+ [
1067
+ [
1068
+ "pink",
1069
+ "pretty"
1070
+ ],
1071
+ "flower"
1072
+ ],
1073
+ [
1074
+ [
1075
+ "happy",
1076
+ "smiling"
1077
+ ],
1078
+ "woman"
1079
+ ],
1080
+ [
1081
+ [
1082
+ "blue",
1083
+ "light"
1084
+ ],
1085
+ "sky"
1086
+ ],
1087
+ [
1088
+ [
1089
+ "green",
1090
+ "thick"
1091
+ ],
1092
+ "brush"
1093
+ ],
1094
+ [
1095
+ [
1096
+ "tall",
1097
+ "white"
1098
+ ],
1099
+ "pole"
1100
+ ],
1101
+ [
1102
+ [
1103
+ "black",
1104
+ "long"
1105
+ ],
1106
+ "coat"
1107
+ ],
1108
+ [
1109
+ [
1110
+ "large",
1111
+ "white"
1112
+ ],
1113
+ "clock"
1114
+ ],
1115
+ [
1116
+ [
1117
+ "brick",
1118
+ "white"
1119
+ ],
1120
+ "wall"
1121
+ ],
1122
+ [
1123
+ [
1124
+ "striped",
1125
+ "white"
1126
+ ],
1127
+ "shirt"
1128
+ ],
1129
+ [
1130
+ [
1131
+ "large",
1132
+ "white"
1133
+ ],
1134
+ "building"
1135
+ ],
1136
+ [
1137
+ [
1138
+ "metal",
1139
+ "white"
1140
+ ],
1141
+ "post"
1142
+ ],
1143
+ [
1144
+ [
1145
+ "blue",
1146
+ "open"
1147
+ ],
1148
+ "umbrella"
1149
+ ],
1150
+ [
1151
+ [
1152
+ "flying",
1153
+ "white"
1154
+ ],
1155
+ "frisbee"
1156
+ ],
1157
+ [
1158
+ [
1159
+ "black",
1160
+ "parked"
1161
+ ],
1162
+ "motorcycle"
1163
+ ],
1164
+ [
1165
+ [
1166
+ "chain-link",
1167
+ "metal"
1168
+ ],
1169
+ "fence"
1170
+ ],
1171
+ [
1172
+ [
1173
+ "green",
1174
+ "snowy"
1175
+ ],
1176
+ "tree"
1177
+ ],
1178
+ [
1179
+ [
1180
+ "brown",
1181
+ "tall"
1182
+ ],
1183
+ "giraffe"
1184
+ ],
1185
+ [
1186
+ [
1187
+ "small",
1188
+ "white"
1189
+ ],
1190
+ "airplane"
1191
+ ],
1192
+ [
1193
+ [
1194
+ "green",
1195
+ "large",
1196
+ "tall"
1197
+ ],
1198
+ "tree"
1199
+ ],
1200
+ [
1201
+ [
1202
+ "brick",
1203
+ "large"
1204
+ ],
1205
+ "building"
1206
+ ],
1207
+ [
1208
+ [
1209
+ "gray",
1210
+ "large"
1211
+ ],
1212
+ "rocks"
1213
+ ],
1214
+ [
1215
+ [
1216
+ "chain-link",
1217
+ "tall"
1218
+ ],
1219
+ "fence"
1220
+ ],
1221
+ [
1222
+ [
1223
+ "standing",
1224
+ "walking"
1225
+ ],
1226
+ "man"
1227
+ ],
1228
+ [
1229
+ [
1230
+ "green",
1231
+ "metal"
1232
+ ],
1233
+ "fence"
1234
+ ],
1235
+ [
1236
+ [
1237
+ "colorful",
1238
+ "rainbow colored"
1239
+ ],
1240
+ "kite"
1241
+ ],
1242
+ [
1243
+ [
1244
+ "light",
1245
+ "silver"
1246
+ ],
1247
+ "ornament"
1248
+ ],
1249
+ [
1250
+ [
1251
+ "cloudy",
1252
+ "dark"
1253
+ ],
1254
+ "sky"
1255
+ ],
1256
+ [
1257
+ [
1258
+ "bright",
1259
+ "purple"
1260
+ ],
1261
+ "flower"
1262
+ ],
1263
+ [
1264
+ [
1265
+ "open",
1266
+ "wood"
1267
+ ],
1268
+ "door"
1269
+ ],
1270
+ [
1271
+ [
1272
+ "brick",
1273
+ "red"
1274
+ ],
1275
+ "wall"
1276
+ ],
1277
+ [
1278
+ [
1279
+ "brown",
1280
+ "short"
1281
+ ],
1282
+ "grass"
1283
+ ],
1284
+ [
1285
+ [
1286
+ "brick",
1287
+ "large",
1288
+ "red"
1289
+ ],
1290
+ "building"
1291
+ ],
1292
+ [
1293
+ [
1294
+ "large",
1295
+ "white"
1296
+ ],
1297
+ "boat"
1298
+ ],
1299
+ [
1300
+ [
1301
+ "colorful",
1302
+ "pink"
1303
+ ],
1304
+ "flower"
1305
+ ],
1306
+ [
1307
+ [
1308
+ "paper",
1309
+ "scattered"
1310
+ ],
1311
+ "cup"
1312
+ ],
1313
+ [
1314
+ [
1315
+ "gray",
1316
+ "tall"
1317
+ ],
1318
+ "pole"
1319
+ ],
1320
+ [
1321
+ [
1322
+ "double decker",
1323
+ "red"
1324
+ ],
1325
+ "bus"
1326
+ ],
1327
+ [
1328
+ [
1329
+ "happy",
1330
+ "sitting",
1331
+ "smiling"
1332
+ ],
1333
+ "woman"
1334
+ ],
1335
+ [
1336
+ [
1337
+ "metal",
1338
+ "silver"
1339
+ ],
1340
+ "faucet"
1341
+ ],
1342
+ [
1343
+ [
1344
+ "black",
1345
+ "rubber"
1346
+ ],
1347
+ "tire"
1348
+ ],
1349
+ [
1350
+ [
1351
+ "blue",
1352
+ "short sleeved"
1353
+ ],
1354
+ "shirt"
1355
+ ],
1356
+ [
1357
+ [
1358
+ "green",
1359
+ "thick"
1360
+ ],
1361
+ "grass"
1362
+ ],
1363
+ [
1364
+ [
1365
+ "pink",
1366
+ "small"
1367
+ ],
1368
+ "nose"
1369
+ ],
1370
+ [
1371
+ [
1372
+ "flying",
1373
+ "green"
1374
+ ],
1375
+ "ball"
1376
+ ],
1377
+ [
1378
+ [
1379
+ "large",
1380
+ "white"
1381
+ ],
1382
+ "sign"
1383
+ ],
1384
+ [
1385
+ [
1386
+ "black",
1387
+ "metal"
1388
+ ],
1389
+ "post"
1390
+ ],
1391
+ [
1392
+ [
1393
+ "hazy",
1394
+ "white"
1395
+ ],
1396
+ "sky"
1397
+ ],
1398
+ [
1399
+ [
1400
+ "black",
1401
+ "round"
1402
+ ],
1403
+ "wheel"
1404
+ ],
1405
+ [
1406
+ [
1407
+ "bare",
1408
+ "tall"
1409
+ ],
1410
+ "tree"
1411
+ ],
1412
+ [
1413
+ [
1414
+ "open",
1415
+ "red"
1416
+ ],
1417
+ "umbrella"
1418
+ ],
1419
+ [
1420
+ [
1421
+ "gray",
1422
+ "metal"
1423
+ ],
1424
+ "fence"
1425
+ ],
1426
+ [
1427
+ [
1428
+ "evergreen",
1429
+ "tall"
1430
+ ],
1431
+ "tree"
1432
+ ],
1433
+ [
1434
+ [
1435
+ "green",
1436
+ "tall"
1437
+ ],
1438
+ "bush"
1439
+ ],
1440
+ [
1441
+ [
1442
+ "metal",
1443
+ "white"
1444
+ ],
1445
+ "pole"
1446
+ ],
1447
+ [
1448
+ [
1449
+ "trimmed",
1450
+ "white"
1451
+ ],
1452
+ "window"
1453
+ ],
1454
+ [
1455
+ [
1456
+ "green",
1457
+ "thick"
1458
+ ],
1459
+ "trees"
1460
+ ],
1461
+ [
1462
+ [
1463
+ "large",
1464
+ "white"
1465
+ ],
1466
+ "clouds"
1467
+ ],
1468
+ [
1469
+ [
1470
+ "black",
1471
+ "round"
1472
+ ],
1473
+ "tire"
1474
+ ],
1475
+ [
1476
+ [
1477
+ "metal",
1478
+ "silver"
1479
+ ],
1480
+ "fence"
1481
+ ],
1482
+ [
1483
+ [
1484
+ "brown",
1485
+ "hardwood"
1486
+ ],
1487
+ "floor"
1488
+ ],
1489
+ [
1490
+ [
1491
+ "large",
1492
+ "white"
1493
+ ],
1494
+ "plate"
1495
+ ],
1496
+ [
1497
+ [
1498
+ "brown",
1499
+ "tall"
1500
+ ],
1501
+ "log"
1502
+ ],
1503
+ [
1504
+ [
1505
+ "blue",
1506
+ "plaid"
1507
+ ],
1508
+ "shirt"
1509
+ ],
1510
+ [
1511
+ [
1512
+ "gray",
1513
+ "small"
1514
+ ],
1515
+ "stone"
1516
+ ],
1517
+ [
1518
+ [
1519
+ "gray",
1520
+ "wood"
1521
+ ],
1522
+ "bench"
1523
+ ],
1524
+ [
1525
+ [
1526
+ "parked",
1527
+ "silver"
1528
+ ],
1529
+ "car"
1530
+ ],
1531
+ [
1532
+ [
1533
+ "gray",
1534
+ "hazy"
1535
+ ],
1536
+ "sky"
1537
+ ],
1538
+ [
1539
+ [
1540
+ "blue",
1541
+ "striped"
1542
+ ],
1543
+ "shirt"
1544
+ ],
1545
+ [
1546
+ [
1547
+ "concrete",
1548
+ "gray"
1549
+ ],
1550
+ "sidewalk"
1551
+ ],
1552
+ [
1553
+ [
1554
+ "long",
1555
+ "metal"
1556
+ ],
1557
+ "fence"
1558
+ ],
1559
+ [
1560
+ [
1561
+ "metal",
1562
+ "silver"
1563
+ ],
1564
+ "fork"
1565
+ ],
1566
+ [
1567
+ [
1568
+ "fresh",
1569
+ "packaged"
1570
+ ],
1571
+ "bagel"
1572
+ ],
1573
+ [
1574
+ [
1575
+ "closed",
1576
+ "glass"
1577
+ ],
1578
+ "window"
1579
+ ],
1580
+ [
1581
+ [
1582
+ "blue",
1583
+ "flying"
1584
+ ],
1585
+ "kite"
1586
+ ],
1587
+ [
1588
+ [
1589
+ "ceramic",
1590
+ "white"
1591
+ ],
1592
+ "sink"
1593
+ ],
1594
+ [
1595
+ [
1596
+ "glass",
1597
+ "tall"
1598
+ ],
1599
+ "window"
1600
+ ],
1601
+ [
1602
+ [
1603
+ "round",
1604
+ "white"
1605
+ ],
1606
+ "frisbee"
1607
+ ],
1608
+ [
1609
+ [
1610
+ "plastic",
1611
+ "small"
1612
+ ],
1613
+ "bottle"
1614
+ ],
1615
+ [
1616
+ [
1617
+ "green",
1618
+ "short"
1619
+ ],
1620
+ "grass"
1621
+ ],
1622
+ [
1623
+ [
1624
+ "cloudy",
1625
+ "gray"
1626
+ ],
1627
+ "sky"
1628
+ ],
1629
+ [
1630
+ [
1631
+ "round",
1632
+ "white"
1633
+ ],
1634
+ "plate"
1635
+ ],
1636
+ [
1637
+ [
1638
+ "black",
1639
+ "paved"
1640
+ ],
1641
+ "road"
1642
+ ],
1643
+ [
1644
+ [
1645
+ "dark",
1646
+ "large"
1647
+ ],
1648
+ "eye"
1649
+ ],
1650
+ [
1651
+ [
1652
+ "fluffy",
1653
+ "white"
1654
+ ],
1655
+ "cloud"
1656
+ ],
1657
+ [
1658
+ [
1659
+ "black",
1660
+ "small"
1661
+ ],
1662
+ "eye"
1663
+ ],
1664
+ [
1665
+ [
1666
+ "gray",
1667
+ "paved"
1668
+ ],
1669
+ "sidewalk"
1670
+ ],
1671
+ [
1672
+ [
1673
+ "parked",
1674
+ "red"
1675
+ ],
1676
+ "car"
1677
+ ],
1678
+ [
1679
+ [
1680
+ "blue",
1681
+ "bright",
1682
+ "clear"
1683
+ ],
1684
+ "sky"
1685
+ ],
1686
+ [
1687
+ [
1688
+ "tiled",
1689
+ "white"
1690
+ ],
1691
+ "floor"
1692
+ ],
1693
+ [
1694
+ [
1695
+ "baseball",
1696
+ "black"
1697
+ ],
1698
+ "hat"
1699
+ ],
1700
+ [
1701
+ [
1702
+ "green",
1703
+ "rubber"
1704
+ ],
1705
+ "cone"
1706
+ ],
1707
+ [
1708
+ [
1709
+ "brown",
1710
+ "wood"
1711
+ ],
1712
+ "floor"
1713
+ ],
1714
+ [
1715
+ [
1716
+ "gray",
1717
+ "metal"
1718
+ ],
1719
+ "post"
1720
+ ],
1721
+ [
1722
+ [
1723
+ "plastic",
1724
+ "white"
1725
+ ],
1726
+ "bag"
1727
+ ],
1728
+ [
1729
+ [
1730
+ "blue",
1731
+ "cloudy"
1732
+ ],
1733
+ "sky"
1734
+ ],
1735
+ [
1736
+ [
1737
+ "parked",
1738
+ "white"
1739
+ ],
1740
+ "airplane"
1741
+ ],
1742
+ [
1743
+ [
1744
+ "blue",
1745
+ "clear"
1746
+ ],
1747
+ "sky"
1748
+ ],
1749
+ [
1750
+ [
1751
+ "brown",
1752
+ "wood"
1753
+ ],
1754
+ "bat"
1755
+ ],
1756
+ [
1757
+ [
1758
+ "short sleeved",
1759
+ "white"
1760
+ ],
1761
+ "shirt"
1762
+ ],
1763
+ [
1764
+ [
1765
+ "green",
1766
+ "large"
1767
+ ],
1768
+ "trees"
1769
+ ],
1770
+ [
1771
+ [
1772
+ "gray",
1773
+ "parked"
1774
+ ],
1775
+ "car"
1776
+ ],
1777
+ [
1778
+ [
1779
+ "blue",
1780
+ "splashing"
1781
+ ],
1782
+ "water"
1783
+ ],
1784
+ [
1785
+ [
1786
+ "happy",
1787
+ "smiling"
1788
+ ],
1789
+ "face"
1790
+ ],
1791
+ [
1792
+ [
1793
+ "dark",
1794
+ "short"
1795
+ ],
1796
+ "hair"
1797
+ ],
1798
+ [
1799
+ [
1800
+ "white",
1801
+ "wood"
1802
+ ],
1803
+ "fence"
1804
+ ],
1805
+ [
1806
+ [
1807
+ "black",
1808
+ "open"
1809
+ ],
1810
+ "umbrella"
1811
+ ],
1812
+ [
1813
+ [
1814
+ "parked",
1815
+ "white"
1816
+ ],
1817
+ "van"
1818
+ ],
1819
+ [
1820
+ [
1821
+ "small",
1822
+ "white"
1823
+ ],
1824
+ "building"
1825
+ ],
1826
+ [
1827
+ [
1828
+ "green",
1829
+ "small"
1830
+ ],
1831
+ "bush"
1832
+ ],
1833
+ [
1834
+ [
1835
+ "blond",
1836
+ "short"
1837
+ ],
1838
+ "hair"
1839
+ ],
1840
+ [
1841
+ [
1842
+ "brown",
1843
+ "tall"
1844
+ ],
1845
+ "tree"
1846
+ ],
1847
+ [
1848
+ [
1849
+ "blue",
1850
+ "cloudless"
1851
+ ],
1852
+ "sky"
1853
+ ],
1854
+ [
1855
+ [
1856
+ "parked",
1857
+ "white"
1858
+ ],
1859
+ "truck"
1860
+ ],
1861
+ [
1862
+ [
1863
+ "ripe",
1864
+ "yellow"
1865
+ ],
1866
+ "banana"
1867
+ ],
1868
+ [
1869
+ [
1870
+ "green",
1871
+ "thick"
1872
+ ],
1873
+ "bush"
1874
+ ],
1875
+ [
1876
+ [
1877
+ "round",
1878
+ "white"
1879
+ ],
1880
+ "bowl"
1881
+ ],
1882
+ [
1883
+ [
1884
+ "brown",
1885
+ "sandy"
1886
+ ],
1887
+ "beach"
1888
+ ],
1889
+ [
1890
+ [
1891
+ "black",
1892
+ "large"
1893
+ ],
1894
+ "wheel"
1895
+ ],
1896
+ [
1897
+ [
1898
+ "brick",
1899
+ "red"
1900
+ ],
1901
+ "building"
1902
+ ],
1903
+ [
1904
+ [
1905
+ "brown",
1906
+ "short"
1907
+ ],
1908
+ "hair"
1909
+ ],
1910
+ [
1911
+ [
1912
+ "brown",
1913
+ "leather"
1914
+ ],
1915
+ "couch"
1916
+ ],
1917
+ [
1918
+ [
1919
+ "puffy",
1920
+ "white"
1921
+ ],
1922
+ "cloud"
1923
+ ],
1924
+ [
1925
+ [
1926
+ "brown",
1927
+ "tall"
1928
+ ],
1929
+ "building"
1930
+ ],
1931
+ [
1932
+ [
1933
+ "gray",
1934
+ "small"
1935
+ ],
1936
+ "rock"
1937
+ ],
1938
+ [
1939
+ [
1940
+ "grassy",
1941
+ "green"
1942
+ ],
1943
+ "field"
1944
+ ],
1945
+ [
1946
+ [
1947
+ "black",
1948
+ "large"
1949
+ ],
1950
+ "tire"
1951
+ ],
1952
+ [
1953
+ [
1954
+ "brown",
1955
+ "wood"
1956
+ ],
1957
+ "fence"
1958
+ ],
1959
+ [
1960
+ [
1961
+ "black",
1962
+ "short sleeved"
1963
+ ],
1964
+ "shirt"
1965
+ ],
1966
+ [
1967
+ [
1968
+ "round",
1969
+ "small",
1970
+ "white"
1971
+ ],
1972
+ "plate"
1973
+ ],
1974
+ [
1975
+ [
1976
+ "blue",
1977
+ "denim"
1978
+ ],
1979
+ "shorts"
1980
+ ],
1981
+ [
1982
+ [
1983
+ "hanging",
1984
+ "white"
1985
+ ],
1986
+ "towel"
1987
+ ],
1988
+ [
1989
+ [
1990
+ "brown",
1991
+ "paper"
1992
+ ],
1993
+ "bag"
1994
+ ],
1995
+ [
1996
+ [
1997
+ "blue",
1998
+ "large"
1999
+ ],
2000
+ "umbrella"
2001
+ ],
2002
+ [
2003
+ [
2004
+ "round",
2005
+ "white"
2006
+ ],
2007
+ "clock"
2008
+ ],
2009
+ [
2010
+ [
2011
+ "gray",
2012
+ "metal"
2013
+ ],
2014
+ "pole"
2015
+ ],
2016
+ [
2017
+ [
2018
+ "black",
2019
+ "leather"
2020
+ ],
2021
+ "seat"
2022
+ ],
2023
+ [
2024
+ [
2025
+ "gray",
2026
+ "large"
2027
+ ],
2028
+ "elephant"
2029
+ ],
2030
+ [
2031
+ [
2032
+ "cloudy",
2033
+ "white"
2034
+ ],
2035
+ "sky"
2036
+ ],
2037
+ [
2038
+ [
2039
+ "wire",
2040
+ "wood"
2041
+ ],
2042
+ "fence"
2043
+ ],
2044
+ [
2045
+ [
2046
+ "black",
2047
+ "sitting"
2048
+ ],
2049
+ "cat"
2050
+ ],
2051
+ [
2052
+ [
2053
+ "gray",
2054
+ "large"
2055
+ ],
2056
+ "building"
2057
+ ],
2058
+ [
2059
+ [
2060
+ "small",
2061
+ "white"
2062
+ ],
2063
+ "car"
2064
+ ],
2065
+ [
2066
+ [
2067
+ "black",
2068
+ "large"
2069
+ ],
2070
+ "eye"
2071
+ ],
2072
+ [
2073
+ [
2074
+ "glass",
2075
+ "green"
2076
+ ],
2077
+ "bottle"
2078
+ ],
2079
+ [
2080
+ [
2081
+ "large",
2082
+ "white"
2083
+ ],
2084
+ "umbrella"
2085
+ ],
2086
+ [
2087
+ [
2088
+ "green",
2089
+ "small"
2090
+ ],
2091
+ "grass"
2092
+ ],
2093
+ [
2094
+ [
2095
+ "parked",
2096
+ "red"
2097
+ ],
2098
+ "motorcycle"
2099
+ ],
2100
+ [
2101
+ [
2102
+ "blue",
2103
+ "bright"
2104
+ ],
2105
+ "sky"
2106
+ ],
2107
+ [
2108
+ [
2109
+ "metal",
2110
+ "silver"
2111
+ ],
2112
+ "pole"
2113
+ ],
2114
+ [
2115
+ [
2116
+ "cut",
2117
+ "ripe"
2118
+ ],
2119
+ "banana"
2120
+ ],
2121
+ [
2122
+ [
2123
+ "baseball",
2124
+ "black"
2125
+ ],
2126
+ "cap"
2127
+ ],
2128
+ [
2129
+ [
2130
+ "blue",
2131
+ "clear"
2132
+ ],
2133
+ "cloud"
2134
+ ],
2135
+ [
2136
+ [
2137
+ "square",
2138
+ "white"
2139
+ ],
2140
+ "plate"
2141
+ ],
2142
+ [
2143
+ [
2144
+ "green",
2145
+ "shiny"
2146
+ ],
2147
+ "leaf"
2148
+ ],
2149
+ [
2150
+ [
2151
+ "green",
2152
+ "leafy",
2153
+ "tall"
2154
+ ],
2155
+ "tree"
2156
+ ],
2157
+ [
2158
+ [
2159
+ "cloudy",
2160
+ "gray",
2161
+ "overcast"
2162
+ ],
2163
+ "sky"
2164
+ ],
2165
+ [
2166
+ [
2167
+ "plastic",
2168
+ "white"
2169
+ ],
2170
+ "container"
2171
+ ],
2172
+ [
2173
+ [
2174
+ "brown",
2175
+ "wood"
2176
+ ],
2177
+ "desk"
2178
+ ],
2179
+ [
2180
+ [
2181
+ "parked",
2182
+ "white"
2183
+ ],
2184
+ "bus"
2185
+ ],
2186
+ [
2187
+ [
2188
+ "large",
2189
+ "open"
2190
+ ],
2191
+ "umbrella"
2192
+ ],
2193
+ [
2194
+ [
2195
+ "green",
2196
+ "short"
2197
+ ],
2198
+ "bush"
2199
+ ],
2200
+ [
2201
+ [
2202
+ "surfing",
2203
+ "wet"
2204
+ ],
2205
+ "man"
2206
+ ],
2207
+ [
2208
+ [
2209
+ "clear",
2210
+ "gray"
2211
+ ],
2212
+ "sky"
2213
+ ],
2214
+ [
2215
+ [
2216
+ "black",
2217
+ "long"
2218
+ ],
2219
+ "tail"
2220
+ ],
2221
+ [
2222
+ [
2223
+ "fluffy",
2224
+ "white"
2225
+ ],
2226
+ "pillow"
2227
+ ],
2228
+ [
2229
+ [
2230
+ "cooked",
2231
+ "short",
2232
+ "spiral"
2233
+ ],
2234
+ "pasta"
2235
+ ],
2236
+ [
2237
+ [
2238
+ "small",
2239
+ "white"
2240
+ ],
2241
+ "plate"
2242
+ ],
2243
+ [
2244
+ [
2245
+ "green",
2246
+ "overgrown"
2247
+ ],
2248
+ "grass"
2249
+ ],
2250
+ [
2251
+ [
2252
+ "large",
2253
+ "white"
2254
+ ],
2255
+ "ring"
2256
+ ]
2257
+ ]
data/singleobjects_paco.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8b53e9e62eb0cd5934de763f0c32e63f762df531fc730cd497960a245b33df3
3
+ size 296934
data/singleobjects_paco_labels.json ADDED
@@ -0,0 +1,1602 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ [
3
+ "dark brown_grey_metal_opaque_plain_wood__knife",
4
+ 5
5
+ ],
6
+ [
7
+ "black_glass_grey_light grey_metal_opaque_plain_plastic_red__car (automobile)",
8
+ 4
9
+ ],
10
+ [
11
+ "black_glass_grey_metal_opaque_plain_plastic_red_yellow__car (automobile)",
12
+ 3
13
+ ],
14
+ [
15
+ "light pink_plain_plastic_translucent__plastic bag",
16
+ 3
17
+ ],
18
+ [
19
+ "black_glass_opaque_plastic_white__telephone",
20
+ 3
21
+ ],
22
+ [
23
+ "black_glass_grey_metal_opaque_plastic_text_white__clock",
24
+ 3
25
+ ],
26
+ [
27
+ "blue_brown_opaque_paper_plain__book",
28
+ 3
29
+ ],
30
+ [
31
+ "black_leather_light brown_metal_opaque_plain__belt",
32
+ 3
33
+ ],
34
+ [
35
+ "black_fabric_grey_opaque_plain_plastic__helmet",
36
+ 2
37
+ ],
38
+ [
39
+ "black_fabric_opaque_text_white__sweater",
40
+ 2
41
+ ],
42
+ [
43
+ "dark grey_green_metal_opaque_plain_plastic__scissors",
44
+ 2
45
+ ],
46
+ [
47
+ "black_opaque_plain_plastic_red_white__bucket",
48
+ 2
49
+ ],
50
+ [
51
+ "black_brown_grey_light grey_opaque_plain__dog",
52
+ 2
53
+ ],
54
+ [
55
+ "black_dark red_glass_grey_metal_opaque_plain_plastic_red_white__car (automobile)",
56
+ 2
57
+ ],
58
+ [
59
+ "black_fabric_metal_opaque_plain_white__hat",
60
+ 2
61
+ ],
62
+ [
63
+ "black_green_grey_metal_opaque_red_text__can",
64
+ 2
65
+ ],
66
+ [
67
+ "black_grey_metal_opaque_plain_plastic_red__scissors",
68
+ 2
69
+ ],
70
+ [
71
+ "blue_brown_opaque_paper_red_text_white__book",
72
+ 2
73
+ ],
74
+ [
75
+ "light grey_metal_opaque_plain_plastic_white__fan",
76
+ 2
77
+ ],
78
+ [
79
+ "black_dark yellow_metal_opaque_plain_white__bicycle",
80
+ 2
81
+ ],
82
+ [
83
+ "black_dark red_grey_metal_opaque_plain_white__bicycle",
84
+ 2
85
+ ],
86
+ [
87
+ "black_brown_grey_metal_opaque_plain_wood__knife",
88
+ 2
89
+ ],
90
+ [
91
+ "plastic_text_transparent_white__cup",
92
+ 2
93
+ ],
94
+ [
95
+ "brown_ceramic_dark brown_opaque_plain__vase",
96
+ 2
97
+ ],
98
+ [
99
+ "black_green_grey_light grey_opaque_plain_plastic_red_yellow__remote control",
100
+ 2
101
+ ],
102
+ [
103
+ "black_blue_glass_grey_metal_opaque_plastic_text_white__laptop computer",
104
+ 2
105
+ ],
106
+ [
107
+ "black_glass_grey_metal_opaque_plastic_red_text_white_yellow__car (automobile)",
108
+ 2
109
+ ],
110
+ [
111
+ "black_grey_opaque_plain_plastic_red__cellular telephone",
112
+ 2
113
+ ],
114
+ [
115
+ "crochet_opaque_striped_white__sweater",
116
+ 2
117
+ ],
118
+ [
119
+ "black_glass_grey_logo_metal_opaque_plastic_text_white__laptop computer",
120
+ 2
121
+ ],
122
+ [
123
+ "black_dark grey_glass_light grey_metal_opaque_plain__microwave oven",
124
+ 2
125
+ ],
126
+ [
127
+ "black_brown_light grey_opaque_plain_white__dog",
128
+ 2
129
+ ],
130
+ [
131
+ "black_glass_grey_metal_plain_plastic_transparent__blender",
132
+ 2
133
+ ],
134
+ [
135
+ "glass_plastic_striped_transparent_white__blender",
136
+ 2
137
+ ],
138
+ [
139
+ "brown_dark red_opaque_rattan_woven__basket",
140
+ 2
141
+ ],
142
+ [
143
+ "black_ceramic_light brown_opaque_plain__mug",
144
+ 2
145
+ ],
146
+ [
147
+ "black_grey_opaque_paper_plain_white__newspaper",
148
+ 2
149
+ ],
150
+ [
151
+ "black_glass_grey_light grey_metal_opaque_orange_plain_plastic_red__car (automobile)",
152
+ 2
153
+ ],
154
+ [
155
+ "black_opaque_plain_plastic_white__kettle",
156
+ 2
157
+ ],
158
+ [
159
+ "blue_grey_opaque_paper_plain_white__box",
160
+ 2
161
+ ],
162
+ [
163
+ "black_blue_glass_grey_logo_metal_opaque_plastic_text__laptop computer",
164
+ 2
165
+ ],
166
+ [
167
+ "brown_dark brown_fabric_opaque_plain_white__napkin",
168
+ 2
169
+ ],
170
+ [
171
+ "light grey_metal_opaque_plain_white__fan",
172
+ 2
173
+ ],
174
+ [
175
+ "black_dark grey_metal_opaque_plain__chair",
176
+ 2
177
+ ],
178
+ [
179
+ "black_green_grey_opaque_plain_plastic_red_white_yellow__remote control",
180
+ 2
181
+ ],
182
+ [
183
+ "black_fabric_metal_opaque_plain_plastic_white__earphone",
184
+ 2
185
+ ],
186
+ [
187
+ "black_brown_light grey_opaque_plain__dog",
188
+ 2
189
+ ],
190
+ [
191
+ "plain_plastic_red_translucent_white__bottle",
192
+ 2
193
+ ],
194
+ [
195
+ "black_dark grey_glass_grey_opaque_plain_plastic_white__laptop computer",
196
+ 2
197
+ ],
198
+ [
199
+ "black_plastic_red_text_translucent_white__plastic bag",
200
+ 2
201
+ ],
202
+ [
203
+ "dark grey_glass_metal_opaque_plastic_text_white__laptop computer",
204
+ 2
205
+ ],
206
+ [
207
+ "black_glass_metal_opaque_plain_plastic_red_white_yellow__car (automobile)",
208
+ 2
209
+ ],
210
+ [
211
+ "dark grey_grey_light grey_metal_opaque_plain_plastic__knife",
212
+ 2
213
+ ],
214
+ [
215
+ "black_brown_logo_opaque_plastic__cellular telephone",
216
+ 2
217
+ ],
218
+ [
219
+ "black_glass_opaque_plain_plastic_white__telephone",
220
+ 2
221
+ ],
222
+ [
223
+ "black_dark grey_metal_opaque_plain__watch",
224
+ 2
225
+ ],
226
+ [
227
+ "black_dark red_glass_metal_opaque_plain_plastic_white_yellow__car (automobile)",
228
+ 2
229
+ ],
230
+ [
231
+ "black_fabric_light grey_opaque_plain_white__shoe",
232
+ 2
233
+ ],
234
+ [
235
+ "light yellow_opaque_plain_plastic__telephone",
236
+ 2
237
+ ],
238
+ [
239
+ "black_glass_grey_light blue_logo_metal_opaque_plastic_text_white__laptop computer",
240
+ 2
241
+ ],
242
+ [
243
+ "fabric_opaque_orange_plain_white__lamp",
244
+ 2
245
+ ],
246
+ [
247
+ "black_fabric_light grey_metal_opaque_plain_plastic__earphone",
248
+ 2
249
+ ],
250
+ [
251
+ "black_grey_metal_opaque_plain_wood__hammer",
252
+ 2
253
+ ],
254
+ [
255
+ "grey_light brown_light red_metal_opaque_plain_wood__pencil",
256
+ 2
257
+ ],
258
+ [
259
+ "dark blue_grey_opaque_plain_plastic__trash can",
260
+ 2
261
+ ],
262
+ [
263
+ "brown_dark brown_fabric_opaque_plain_yellow__sweater",
264
+ 1
265
+ ],
266
+ [
267
+ "black_ceramic_grey_opaque_red__vase",
268
+ 1
269
+ ],
270
+ [
271
+ "black_dark brown_leather_opaque_striped_wood__chair",
272
+ 1
273
+ ],
274
+ [
275
+ "dark grey_light grey_opaque_plain_wood__table",
276
+ 1
277
+ ],
278
+ [
279
+ "black_dotted_metal_opaque_plastic_text__clock",
280
+ 1
281
+ ],
282
+ [
283
+ "dark red_green_opaque_paper_pink_plain_white_yellow__box",
284
+ 1
285
+ ],
286
+ [
287
+ "ceramic_dark blue_dark green_opaque_pink_plain_white_yellow__cup",
288
+ 1
289
+ ],
290
+ [
291
+ "ceramic_grey_opaque_striped_white__mug",
292
+ 1
293
+ ],
294
+ [
295
+ "black_opaque_orange_striped_wood__table",
296
+ 1
297
+ ],
298
+ [
299
+ "dark brown_dark grey_leather_metal_opaque_plain__belt",
300
+ 1
301
+ ],
302
+ [
303
+ "black_opaque_paper_plastic_red_white__cup",
304
+ 1
305
+ ],
306
+ [
307
+ "dark brown_fabric_light brown_opaque_plain_plastic_white__lamp",
308
+ 1
309
+ ],
310
+ [
311
+ "opaque_orange_plain_plastic_purple_red_yellow__mouse (computer equipment)",
312
+ 1
313
+ ],
314
+ [
315
+ "black_glass_grey_light red_metal_opaque_plain_plastic_red_white__car (automobile)",
316
+ 1
317
+ ],
318
+ [
319
+ "brown_dark red_opaque_plastic__mouse (computer equipment)",
320
+ 1
321
+ ],
322
+ [
323
+ "fabric_floral_grey_light blue_opaque_red_yellow__handbag",
324
+ 1
325
+ ],
326
+ [
327
+ "black_brown_opaque_plain_wood_yellow__guitar",
328
+ 1
329
+ ],
330
+ [
331
+ "brown_opaque_orange_plain_wood__tray",
332
+ 1
333
+ ],
334
+ [
335
+ "brown_dark brown_opaque_striped_wood__bench",
336
+ 1
337
+ ],
338
+ [
339
+ "dark blue_light brown_opaque_plastic_text__plastic bag",
340
+ 1
341
+ ],
342
+ [
343
+ "brown_dark orange_fabric_opaque_plain_white__lamp",
344
+ 1
345
+ ],
346
+ [
347
+ "grey_metal_opaque_striped__pan (for cooking)",
348
+ 1
349
+ ],
350
+ [
351
+ "grey_light blue_striped__bowl",
352
+ 1
353
+ ],
354
+ [
355
+ "black_metal_opaque_plain_white__vase",
356
+ 1
357
+ ],
358
+ [
359
+ "black_grey_metal_opaque_striped_white__microwave oven",
360
+ 1
361
+ ],
362
+ [
363
+ "blue_dark blue_opaque_plain_white__shoe",
364
+ 1
365
+ ],
366
+ [
367
+ "blue_dark blue_opaque_plain_velvet__scarf",
368
+ 1
369
+ ],
370
+ [
371
+ "dark blue_metal_opaque_plain__tray",
372
+ 1
373
+ ],
374
+ [
375
+ "blue_dark grey_grey_opaque_plain_plastic__pen",
376
+ 1
377
+ ],
378
+ [
379
+ "dotted_fabric_opaque_pink_white__pillow",
380
+ 1
381
+ ],
382
+ [
383
+ "grey_opaque_plain_plastic_red_white__shoe",
384
+ 1
385
+ ],
386
+ [
387
+ "ceramic_dark brown_dark red_light blue_light orange_light purple_opaque_purple_white__plate",
388
+ 1
389
+ ],
390
+ [
391
+ "dark green_light brown_metal_opaque_plain__kettle",
392
+ 1
393
+ ],
394
+ [
395
+ "green_opaque_stone__vase",
396
+ 1
397
+ ],
398
+ [
399
+ "dark brown_dark green_metal_opaque_text_white__can",
400
+ 1
401
+ ],
402
+ [
403
+ "dark pink_green_light green_light orange_metal_opaque_plain_yellow__bicycle",
404
+ 1
405
+ ],
406
+ [
407
+ "black_dark brown_dark grey_white__dog",
408
+ 1
409
+ ],
410
+ [
411
+ "ceramic_dark grey_grey_opaque_plain__vase",
412
+ 1
413
+ ],
414
+ [
415
+ "black_dark grey_glass_grey_metal_opaque_plain_white__microwave oven",
416
+ 1
417
+ ],
418
+ [
419
+ "black_brown_grey_leather_light grey_metal_opaque_plain__handbag",
420
+ 1
421
+ ],
422
+ [
423
+ "dark pink_logo_opaque_plastic_white__laptop computer",
424
+ 1
425
+ ],
426
+ [
427
+ "black_dark grey_grey_metal_opaque_orange_plain_red_white__car (automobile)",
428
+ 1
429
+ ],
430
+ [
431
+ "black_grey_metal_opaque_plain_plastic__wrench",
432
+ 1
433
+ ],
434
+ [
435
+ "brown_light brown_opaque_striped_wood__drum (musical instrument)",
436
+ 1
437
+ ],
438
+ [
439
+ "brown_light red_opaque_plain_white__dog",
440
+ 1
441
+ ],
442
+ [
443
+ "crochet_opaque_plain_white_yellow__sweater",
444
+ 1
445
+ ],
446
+ [
447
+ "black_blue_glass_plain_plastic_transparent_white__blender",
448
+ 1
449
+ ],
450
+ [
451
+ "black_glass_green_grey_logo_opaque_plastic_red_white__cellular telephone",
452
+ 1
453
+ ],
454
+ [
455
+ "blue_checkered_fabric_green_light blue_opaque_yellow__towel",
456
+ 1
457
+ ],
458
+ [
459
+ "dark brown_dark green_glass_opaque_orange_red_yellow__vase",
460
+ 1
461
+ ],
462
+ [
463
+ "brown_light grey_opaque_plain_plastic__vase",
464
+ 1
465
+ ],
466
+ [
467
+ "grey_metal_opaque_paper_plain_white__box",
468
+ 1
469
+ ],
470
+ [
471
+ "black_dark grey_opaque_plastic_text_yellow__clock",
472
+ 1
473
+ ],
474
+ [
475
+ "brown_checkered_fabric_opaque__sweater",
476
+ 1
477
+ ],
478
+ [
479
+ "blue_dark grey_grey_opaque_plastic_text_white__laptop computer",
480
+ 1
481
+ ],
482
+ [
483
+ "dark brown_leather_light brown_metal_opaque_plain__chair",
484
+ 1
485
+ ],
486
+ [
487
+ "grey_metal_plain_transparent_white__watch",
488
+ 1
489
+ ],
490
+ [
491
+ "black_grey_light brown_opaque_perforated_wood__bench",
492
+ 1
493
+ ],
494
+ [
495
+ "ceramic_opaque_red_striped_white__vase",
496
+ 1
497
+ ],
498
+ [
499
+ "crochet_light brown_opaque_plain__lamp",
500
+ 1
501
+ ],
502
+ [
503
+ "dark grey_glass_grey_logo_metal_opaque_plastic_text__laptop computer",
504
+ 1
505
+ ],
506
+ [
507
+ "black_blue_grey_metal_opaque_orange_plain_plastic_red_white__bicycle",
508
+ 1
509
+ ],
510
+ [
511
+ "black_brown_opaque_plain_plastic__jar",
512
+ 1
513
+ ],
514
+ [
515
+ "green_opaque_pink_plastic_red__broom",
516
+ 1
517
+ ],
518
+ [
519
+ "logo_opaque_plastic_red_text_white_yellow__cup",
520
+ 1
521
+ ],
522
+ [
523
+ "black_dark red_fabric_opaque_plain__helmet",
524
+ 1
525
+ ],
526
+ [
527
+ "green_grey_opaque_plain_plastic__bucket",
528
+ 1
529
+ ],
530
+ [
531
+ "blue_light grey_opaque_plain_white__shoe",
532
+ 1
533
+ ],
534
+ [
535
+ "ceramic_dark pink_opaque_plain__bowl",
536
+ 1
537
+ ],
538
+ [
539
+ "light blue_light green_light grey_light pink_light purple_opaque_plain_plastic__cellular telephone",
540
+ 1
541
+ ],
542
+ [
543
+ "brown_fabric_leather_metal_opaque_plain_purple__handbag",
544
+ 1
545
+ ],
546
+ [
547
+ "dotted_opaque_white__shoe",
548
+ 1
549
+ ],
550
+ [
551
+ "black_glass_grey_light blue_metal_opaque_plastic_text_white_yellow__laptop computer",
552
+ 1
553
+ ],
554
+ [
555
+ "black_glass_light blue_light brown_metal_opaque_plain__microwave oven",
556
+ 1
557
+ ],
558
+ [
559
+ "blue_light blue_opaque_plain_plastic_red__table",
560
+ 1
561
+ ],
562
+ [
563
+ "fabric_grey_opaque_yellow__napkin",
564
+ 1
565
+ ],
566
+ [
567
+ "dark brown_light brown_opaque_paper_pink_purple_text_yellow__box",
568
+ 1
569
+ ],
570
+ [
571
+ "black_grey_light brown_metal_opaque_plain_plastic_yellow__scissors",
572
+ 1
573
+ ],
574
+ [
575
+ "grey_opaque_plastic_text_white_yellow__clock",
576
+ 1
577
+ ],
578
+ [
579
+ "green_opaque_perforated_plastic__chair",
580
+ 1
581
+ ],
582
+ [
583
+ "dark purple_green_paper_plastic_transparent_white__soap",
584
+ 1
585
+ ],
586
+ [
587
+ "black_grey_light yellow_logo_opaque_plastic__helmet",
588
+ 1
589
+ ],
590
+ [
591
+ "black_dark green_glass_grey_opaque_plastic_white__telephone",
592
+ 1
593
+ ],
594
+ [
595
+ "black_grey_opaque_paper_plain_white__box",
596
+ 1
597
+ ],
598
+ [
599
+ "grey_metal_opaque_plain_red__mirror",
600
+ 1
601
+ ],
602
+ [
603
+ "dark grey_dark red_fabric_opaque_pink__scarf",
604
+ 1
605
+ ],
606
+ [
607
+ "brown_green_light brown_light green_metal_opaque_text__clock",
608
+ 1
609
+ ],
610
+ [
611
+ "brown_dark brown_green_opaque_paper_plastic_text_white_yellow__bottle",
612
+ 1
613
+ ],
614
+ [
615
+ "black_brown_grey_light blue_light purple_logo_opaque_plastic__cellular telephone",
616
+ 1
617
+ ],
618
+ [
619
+ "black_grey_light grey_opaque_plain_plastic_red__microwave oven",
620
+ 1
621
+ ],
622
+ [
623
+ "dark grey_grey_metal_opaque_perforated__basket",
624
+ 1
625
+ ],
626
+ [
627
+ "brown_grey_opaque_plain_plastic__soap",
628
+ 1
629
+ ],
630
+ [
631
+ "black_light brown_metal_opaque_plain_yellow__car (automobile)",
632
+ 1
633
+ ],
634
+ [
635
+ "black_light brown_metal_opaque_plain_wood__fan",
636
+ 1
637
+ ],
638
+ [
639
+ "black_leather_opaque_plain_red_wood__chair",
640
+ 1
641
+ ],
642
+ [
643
+ "black_blue_dark brown_grey_opaque_plain_plastic_white__laptop computer",
644
+ 1
645
+ ],
646
+ [
647
+ "blue_opaque_perforated_pink_plastic__helmet",
648
+ 1
649
+ ],
650
+ [
651
+ "brown_checkered_fabric_green_opaque_orange_white__towel",
652
+ 1
653
+ ],
654
+ [
655
+ "glass_grey_metal_opaque_plastic_text_white__clock",
656
+ 1
657
+ ],
658
+ [
659
+ "black_brown_dark brown_dark grey_metal_opaque_plain__fan",
660
+ 1
661
+ ],
662
+ [
663
+ "dark brown_green_metal_opaque_plain_plastic__scissors",
664
+ 1
665
+ ],
666
+ [
667
+ "black_grey_opaque_perforated_plastic__crate",
668
+ 1
669
+ ],
670
+ [
671
+ "black_glass_green_light brown_light grey_opaque_plastic_purple_text__cellular telephone",
672
+ 1
673
+ ],
674
+ [
675
+ "black_dark green_leather_metal_opaque_plain_plastic_white__bicycle",
676
+ 1
677
+ ],
678
+ [
679
+ "black_glass_grey_opaque_paper_plain__bottle",
680
+ 1
681
+ ],
682
+ [
683
+ "dark blue_light grey_metal_opaque_plain__chair",
684
+ 1
685
+ ],
686
+ [
687
+ "dark brown_green_metal_opaque_striped_wood__bench",
688
+ 1
689
+ ],
690
+ [
691
+ "glass_grey_light brown_light green_light purple_opaque_plain_plastic_white__television set",
692
+ 1
693
+ ],
694
+ [
695
+ "dark blue_light blue_light green_metal_opaque_text_white__laptop computer",
696
+ 1
697
+ ],
698
+ [
699
+ "dark grey_glass_grey_light brown_metal_opaque_plain_plastic__car (automobile)",
700
+ 1
701
+ ],
702
+ [
703
+ "brown_dark brown_light blue_light green_opaque_paper_white__book",
704
+ 1
705
+ ],
706
+ [
707
+ "dark green_opaque_plain__fan",
708
+ 1
709
+ ],
710
+ [
711
+ "black_brown_glass_light yellow_red_text_transparent__bottle",
712
+ 1
713
+ ],
714
+ [
715
+ "brown_dark brown_metal_opaque_pink_plain_plastic_white__clock",
716
+ 1
717
+ ],
718
+ [
719
+ "black_light red_opaque_plain_plastic_white__bucket",
720
+ 1
721
+ ],
722
+ [
723
+ "glass_light grey_metal_plastic_text_transparent_white__jar",
724
+ 1
725
+ ],
726
+ [
727
+ "blue_dark blue_green_metal_opaque_plastic_text__helmet",
728
+ 1
729
+ ],
730
+ [
731
+ "black_glass_green_light grey_paper_red_text_transparent__cup",
732
+ 1
733
+ ],
734
+ [
735
+ "dark blue_dark grey_dark pink_green_light grey_metal_opaque__bicycle",
736
+ 1
737
+ ],
738
+ [
739
+ "black_glass_light grey_metal_opaque_orange_plain__car (automobile)",
740
+ 1
741
+ ],
742
+ [
743
+ "logo_orange_paper_plastic_text_translucent_white_yellow__cup",
744
+ 1
745
+ ],
746
+ [
747
+ "grey_light brown_opaque_plain_plastic_wood__broom",
748
+ 1
749
+ ],
750
+ [
751
+ "blue_green_light blue_opaque_paper_plain__newspaper",
752
+ 1
753
+ ],
754
+ [
755
+ "dark orange_light blue_light green_opaque_purple__handbag",
756
+ 1
757
+ ],
758
+ [
759
+ "black_blue_light grey_metal_opaque_plain__bottle",
760
+ 1
761
+ ],
762
+ [
763
+ "black_dark brown_glass_opaque_plain_white__bottle",
764
+ 1
765
+ ],
766
+ [
767
+ "black_light brown_light grey_opaque_perforated_wood__bench",
768
+ 1
769
+ ],
770
+ [
771
+ "black_ceramic_light brown_opaque_plain__vase",
772
+ 1
773
+ ],
774
+ [
775
+ "blue_brown_dark blue_glass_grey_logo_opaque_plastic__laptop computer",
776
+ 1
777
+ ],
778
+ [
779
+ "green_light green_light orange_opaque_plain_plastic__soap",
780
+ 1
781
+ ],
782
+ [
783
+ "brown_dark brown_opaque_plain_wood_yellow__mirror",
784
+ 1
785
+ ],
786
+ [
787
+ "black_fabric_opaque_plain_white__napkin",
788
+ 1
789
+ ],
790
+ [
791
+ "blue_dark red_glass_green_opaque_orange_purple_striped_white__glass (drink container)",
792
+ 1
793
+ ],
794
+ [
795
+ "black_blue_dark grey_glass_light blue_opaque_plain_plastic_white__laptop computer",
796
+ 1
797
+ ],
798
+ [
799
+ "black_brown_dark green_grey_metal_opaque_plain__car (automobile)",
800
+ 1
801
+ ],
802
+ [
803
+ "glass_plain_transparent__glass (drink container)",
804
+ 245
805
+ ],
806
+ [
807
+ "ceramic_opaque_plain_white__plate",
808
+ 176
809
+ ],
810
+ [
811
+ "opaque_paper_plain_white__napkin",
812
+ 115
813
+ ],
814
+ [
815
+ "black_glass_opaque_plain_plastic__television set",
816
+ 110
817
+ ],
818
+ [
819
+ "fabric_opaque_plain_white__pillow",
820
+ 94
821
+ ],
822
+ [
823
+ "grey_metal_opaque_plain__spoon",
824
+ 87
825
+ ],
826
+ [
827
+ "glass_plain_transparent__vase",
828
+ 86
829
+ ],
830
+ [
831
+ "fabric_opaque_plain_white__napkin",
832
+ 84
833
+ ],
834
+ [
835
+ "ceramic_opaque_plain_white__bowl",
836
+ 84
837
+ ],
838
+ [
839
+ "grey_metal_opaque_plain__knife",
840
+ 73
841
+ ],
842
+ [
843
+ "brown_opaque_plain_wood__table",
844
+ 64
845
+ ],
846
+ [
847
+ "brown_opaque_rattan_woven__basket",
848
+ 60
849
+ ],
850
+ [
851
+ "black_opaque_plain_white__dog",
852
+ 47
853
+ ],
854
+ [
855
+ "brown_opaque_plain_wood__chair",
856
+ 42
857
+ ],
858
+ [
859
+ "black_leather_opaque_plain__handbag",
860
+ 40
861
+ ],
862
+ [
863
+ "brown_opaque_striped_wood__table",
864
+ 39
865
+ ],
866
+ [
867
+ "black_opaque_plain_plastic__helmet",
868
+ 37
869
+ ],
870
+ [
871
+ "black_glass_grey_opaque_plain_plastic__television set",
872
+ 37
873
+ ],
874
+ [
875
+ "plain_plastic_transparent__plastic bag",
876
+ 36
877
+ ],
878
+ [
879
+ "black_leather_metal_opaque_plain__belt",
880
+ 36
881
+ ],
882
+ [
883
+ "opaque_plain_plastic_white__trash can",
884
+ 35
885
+ ],
886
+ [
887
+ "black_opaque_plain_plastic__trash can",
888
+ 32
889
+ ],
890
+ [
891
+ "light brown_opaque_rattan_woven__basket",
892
+ 31
893
+ ],
894
+ [
895
+ "grey_metal_opaque_plain__pan (for cooking)",
896
+ 28
897
+ ],
898
+ [
899
+ "grey_metal_opaque_plain__ladder",
900
+ 28
901
+ ],
902
+ [
903
+ "ceramic_opaque_plain_white__mug",
904
+ 28
905
+ ],
906
+ [
907
+ "black_grey_metal_opaque_plain__bicycle",
908
+ 27
909
+ ],
910
+ [
911
+ "glass_grey_opaque_plain__mirror",
912
+ 27
913
+ ],
914
+ [
915
+ "black_opaque_plain_plastic__cellular telephone",
916
+ 27
917
+ ],
918
+ [
919
+ "opaque_plain_plastic_white__pipe",
920
+ 27
921
+ ],
922
+ [
923
+ "dark brown_opaque_plain_wood__table",
924
+ 27
925
+ ],
926
+ [
927
+ "black_grey_opaque_plain_plastic__cellular telephone",
928
+ 27
929
+ ],
930
+ [
931
+ "grey_metal_opaque_plain__pipe",
932
+ 27
933
+ ],
934
+ [
935
+ "black_grey_metal_opaque_plain_plastic__knife",
936
+ 26
937
+ ],
938
+ [
939
+ "black_opaque_plain__dog",
940
+ 26
941
+ ],
942
+ [
943
+ "ceramic_opaque_plain_white__cup",
944
+ 25
945
+ ],
946
+ [
947
+ "dark grey_metal_opaque_plain__spoon",
948
+ 25
949
+ ],
950
+ [
951
+ "opaque_plain_plastic_white__mouse (computer equipment)",
952
+ 24
953
+ ],
954
+ [
955
+ "black_brown_opaque_plain_white__dog",
956
+ 24
957
+ ],
958
+ [
959
+ "glass_plain_transparent__bowl",
960
+ 23
961
+ ],
962
+ [
963
+ "brown_opaque_plain_wood__bench",
964
+ 22
965
+ ],
966
+ [
967
+ "black_brown_opaque_plain__dog",
968
+ 22
969
+ ],
970
+ [
971
+ "ceramic_opaque_plain_white__vase",
972
+ 21
973
+ ],
974
+ [
975
+ "opaque_plain_plastic_white__plastic bag",
976
+ 21
977
+ ],
978
+ [
979
+ "opaque_paper_plain_white__tissue paper",
980
+ 21
981
+ ],
982
+ [
983
+ "black_opaque_plain_plastic__mouse (computer equipment)",
984
+ 21
985
+ ],
986
+ [
987
+ "brown_leather_opaque_plain__handbag",
988
+ 21
989
+ ],
990
+ [
991
+ "black_glass_opaque_plain_plastic_white__television set",
992
+ 20
993
+ ],
994
+ [
995
+ "light brown_opaque_plain__dog",
996
+ 20
997
+ ],
998
+ [
999
+ "brown_fabric_opaque_plain__pillow",
1000
+ 20
1001
+ ],
1002
+ [
1003
+ "fabric_opaque_plain_white__towel",
1004
+ 20
1005
+ ],
1006
+ [
1007
+ "brown_opaque_plain__dog",
1008
+ 20
1009
+ ],
1010
+ [
1011
+ "opaque_plain_white_wood__table",
1012
+ 19
1013
+ ],
1014
+ [
1015
+ "black_metal_opaque_plain__bicycle",
1016
+ 19
1017
+ ],
1018
+ [
1019
+ "black_fabric_opaque_plain__hat",
1020
+ 19
1021
+ ],
1022
+ [
1023
+ "black_light grey_metal_opaque_plain__bicycle",
1024
+ 19
1025
+ ],
1026
+ [
1027
+ "opaque_plain_plastic_white__remote control",
1028
+ 18
1029
+ ],
1030
+ [
1031
+ "plain_plastic_translucent_white__plastic bag",
1032
+ 18
1033
+ ],
1034
+ [
1035
+ "glass_striped_transparent__glass (drink container)",
1036
+ 17
1037
+ ],
1038
+ [
1039
+ "black_opaque_plain_plastic__earphone",
1040
+ 17
1041
+ ],
1042
+ [
1043
+ "black_glass_opaque_plain__television set",
1044
+ 17
1045
+ ],
1046
+ [
1047
+ "glass_opaque_plain__mirror",
1048
+ 17
1049
+ ],
1050
+ [
1051
+ "black_metal_opaque_plain__bench",
1052
+ 17
1053
+ ],
1054
+ [
1055
+ "glass_grey_opaque_plain_plastic__television set",
1056
+ 16
1057
+ ],
1058
+ [
1059
+ "brown_opaque_plain_white__dog",
1060
+ 16
1061
+ ],
1062
+ [
1063
+ "black_opaque_plain_wood__table",
1064
+ 16
1065
+ ],
1066
+ [
1067
+ "black_light brown_opaque_plain__dog",
1068
+ 16
1069
+ ],
1070
+ [
1071
+ "light brown_opaque_plain_wood__table",
1072
+ 16
1073
+ ],
1074
+ [
1075
+ "dark brown_opaque_plain_wood__chair",
1076
+ 16
1077
+ ],
1078
+ [
1079
+ "black_opaque_plain_wood__chair",
1080
+ 16
1081
+ ],
1082
+ [
1083
+ "fabric_light brown_opaque_plain__pillow",
1084
+ 16
1085
+ ],
1086
+ [
1087
+ "black_leather_opaque_plain__belt",
1088
+ 16
1089
+ ],
1090
+ [
1091
+ "brown_opaque_paper_plain__box",
1092
+ 15
1093
+ ],
1094
+ [
1095
+ "black_opaque_plain_plastic__tray",
1096
+ 15
1097
+ ],
1098
+ [
1099
+ "dark grey_metal_opaque_plain__knife",
1100
+ 15
1101
+ ],
1102
+ [
1103
+ "metal_opaque_plain__bicycle",
1104
+ 15
1105
+ ],
1106
+ [
1107
+ "opaque_plain_white__dog",
1108
+ 15
1109
+ ],
1110
+ [
1111
+ "black_grey_opaque_plain_plastic__mouse (computer equipment)",
1112
+ 15
1113
+ ],
1114
+ [
1115
+ "light brown_opaque_paper_plain__box",
1116
+ 15
1117
+ ],
1118
+ [
1119
+ "fabric_opaque_plain_white__hat",
1120
+ 14
1121
+ ],
1122
+ [
1123
+ "black_metal_opaque_plain_white__bicycle",
1124
+ 14
1125
+ ],
1126
+ [
1127
+ "brown_opaque_plain_wood__mirror",
1128
+ 14
1129
+ ],
1130
+ [
1131
+ "dark brown_opaque_rattan_woven__basket",
1132
+ 14
1133
+ ],
1134
+ [
1135
+ "grey_metal_opaque_plain__tray",
1136
+ 14
1137
+ ],
1138
+ [
1139
+ "light grey_metal_opaque_plain__spoon",
1140
+ 14
1141
+ ],
1142
+ [
1143
+ "fabric_grey_opaque_plain__pillow",
1144
+ 14
1145
+ ],
1146
+ [
1147
+ "opaque_plain_plastic_white__bucket",
1148
+ 14
1149
+ ],
1150
+ [
1151
+ "black_opaque_plain_wood__bench",
1152
+ 14
1153
+ ],
1154
+ [
1155
+ "black_leather_metal_opaque_plain__handbag",
1156
+ 13
1157
+ ],
1158
+ [
1159
+ "light grey_metal_opaque_plain__knife",
1160
+ 13
1161
+ ],
1162
+ [
1163
+ "black_grey_leather_metal_opaque_plain__belt",
1164
+ 13
1165
+ ],
1166
+ [
1167
+ "opaque_plain__dog",
1168
+ 13
1169
+ ],
1170
+ [
1171
+ "black_light brown_opaque_plain_white__dog",
1172
+ 13
1173
+ ],
1174
+ [
1175
+ "grey_opaque_plain_plastic__laptop computer",
1176
+ 13
1177
+ ],
1178
+ [
1179
+ "light brown_opaque_plain_wood__mirror",
1180
+ 13
1181
+ ],
1182
+ [
1183
+ "black_fabric_opaque_plain__handbag",
1184
+ 13
1185
+ ],
1186
+ [
1187
+ "black_opaque_plain_plastic_white__mouse (computer equipment)",
1188
+ 13
1189
+ ],
1190
+ [
1191
+ "black_opaque_plain__shoe",
1192
+ 12
1193
+ ],
1194
+ [
1195
+ "black_opaque_plain_plastic__plastic bag",
1196
+ 12
1197
+ ],
1198
+ [
1199
+ "black_opaque_plain_plastic_white__cellular telephone",
1200
+ 12
1201
+ ],
1202
+ [
1203
+ "black_grey_metal_opaque_plain_plastic__scissors",
1204
+ 12
1205
+ ],
1206
+ [
1207
+ "opaque_paper_plain_white__box",
1208
+ 12
1209
+ ],
1210
+ [
1211
+ "brown_metal_opaque_plain__spoon",
1212
+ 12
1213
+ ],
1214
+ [
1215
+ "light brown_opaque_plain_wood__chair",
1216
+ 12
1217
+ ],
1218
+ [
1219
+ "black_glass_opaque_plain_plastic__cellular telephone",
1220
+ 12
1221
+ ],
1222
+ [
1223
+ "grey_metal_opaque_plain__bowl",
1224
+ 12
1225
+ ],
1226
+ [
1227
+ "grey_opaque_plain_plastic__trash can",
1228
+ 12
1229
+ ],
1230
+ [
1231
+ "black_fabric_opaque_plain__sweater",
1232
+ 12
1233
+ ],
1234
+ [
1235
+ "light brown_opaque_plain_wood__bench",
1236
+ 12
1237
+ ],
1238
+ [
1239
+ "leather_opaque_plain_white__handbag",
1240
+ 11
1241
+ ],
1242
+ [
1243
+ "black_fabric_opaque_plain__scarf",
1244
+ 11
1245
+ ],
1246
+ [
1247
+ "light brown_opaque_plain_white__dog",
1248
+ 11
1249
+ ],
1250
+ [
1251
+ "glass_light brown_opaque_plain__mirror",
1252
+ 11
1253
+ ],
1254
+ [
1255
+ "grey_metal_opaque_plain__mirror",
1256
+ 11
1257
+ ],
1258
+ [
1259
+ "glass_plain_transparent__jar",
1260
+ 11
1261
+ ],
1262
+ [
1263
+ "black_glass_grey_metal_opaque_plain_plastic_red__car (automobile)",
1264
+ 11
1265
+ ],
1266
+ [
1267
+ "opaque_plain_plastic_white__mirror",
1268
+ 11
1269
+ ],
1270
+ [
1271
+ "plain_plastic_translucent__plastic bag",
1272
+ 10
1273
+ ],
1274
+ [
1275
+ "fabric_opaque_plain_white__scarf",
1276
+ 10
1277
+ ],
1278
+ [
1279
+ "opaque_plain_plastic_white__tray",
1280
+ 10
1281
+ ],
1282
+ [
1283
+ "glass_plain_transparent__cup",
1284
+ 10
1285
+ ],
1286
+ [
1287
+ "dark grey_metal_opaque_plain__pipe",
1288
+ 10
1289
+ ],
1290
+ [
1291
+ "brown_opaque_plain_wood__stool",
1292
+ 10
1293
+ ],
1294
+ [
1295
+ "black_opaque_paper_plain_white__newspaper",
1296
+ 10
1297
+ ],
1298
+ [
1299
+ "glass_light grey_opaque_plain__mirror",
1300
+ 10
1301
+ ],
1302
+ [
1303
+ "dark brown_opaque_plain_wood__bench",
1304
+ 10
1305
+ ],
1306
+ [
1307
+ "black_opaque_paper_text_white__newspaper",
1308
+ 10
1309
+ ],
1310
+ [
1311
+ "black_glass_grey_metal_opaque_plain_plastic_white__car (automobile)",
1312
+ 10
1313
+ ],
1314
+ [
1315
+ "opaque_plain_plastic__trash can",
1316
+ 10
1317
+ ],
1318
+ [
1319
+ "light brown_opaque_striped_wood__table",
1320
+ 10
1321
+ ],
1322
+ [
1323
+ "opaque_plain_plastic_white__cup",
1324
+ 10
1325
+ ],
1326
+ [
1327
+ "black_opaque_white__dog",
1328
+ 10
1329
+ ],
1330
+ [
1331
+ "grey_metal_opaque_plain__trash can",
1332
+ 10
1333
+ ],
1334
+ [
1335
+ "glass_plain_transparent__bottle",
1336
+ 10
1337
+ ],
1338
+ [
1339
+ "black_opaque_plain_white__shoe",
1340
+ 10
1341
+ ],
1342
+ [
1343
+ "grey_metal_opaque_plain__scissors",
1344
+ 9
1345
+ ],
1346
+ [
1347
+ "dark grey_glass_opaque_plain_plastic__television set",
1348
+ 9
1349
+ ],
1350
+ [
1351
+ "grey_metal_opaque_plain__lamp",
1352
+ 9
1353
+ ],
1354
+ [
1355
+ "grey_metal_opaque_perforated__basket",
1356
+ 9
1357
+ ],
1358
+ [
1359
+ "grey_metal_opaque_orange_plain_plastic__scissors",
1360
+ 9
1361
+ ],
1362
+ [
1363
+ "blue_ceramic_opaque_plain_white__plate",
1364
+ 9
1365
+ ],
1366
+ [
1367
+ "grey_opaque_plain_wood__bench",
1368
+ 9
1369
+ ],
1370
+ [
1371
+ "brown_fabric_opaque_plain__towel",
1372
+ 9
1373
+ ],
1374
+ [
1375
+ "ceramic_light brown_opaque_plain__vase",
1376
+ 9
1377
+ ],
1378
+ [
1379
+ "black_opaque_plain_plastic_white__helmet",
1380
+ 9
1381
+ ],
1382
+ [
1383
+ "dark brown_glass_opaque_plain__mirror",
1384
+ 9
1385
+ ],
1386
+ [
1387
+ "brown_glass_metal_opaque_plain_white__lamp",
1388
+ 9
1389
+ ],
1390
+ [
1391
+ "glass_opaque_plain_white__mirror",
1392
+ 9
1393
+ ],
1394
+ [
1395
+ "brown_fabric_opaque_plain__napkin",
1396
+ 9
1397
+ ],
1398
+ [
1399
+ "light brown_opaque_plain_plastic__pipe",
1400
+ 9
1401
+ ],
1402
+ [
1403
+ "glass_metal_opaque_plain__car (automobile)",
1404
+ 9
1405
+ ],
1406
+ [
1407
+ "light grey_metal_opaque_plain__pipe",
1408
+ 8
1409
+ ],
1410
+ [
1411
+ "glass_transparent__glass (drink container)",
1412
+ 8
1413
+ ],
1414
+ [
1415
+ "opaque_plain_plastic_white__laptop computer",
1416
+ 8
1417
+ ],
1418
+ [
1419
+ "black_glass_grey_metal_opaque_plain_plastic__car (automobile)",
1420
+ 8
1421
+ ],
1422
+ [
1423
+ "black_grey_logo_opaque_plastic__mouse (computer equipment)",
1424
+ 8
1425
+ ],
1426
+ [
1427
+ "black_opaque_plain_plastic__television set",
1428
+ 8
1429
+ ],
1430
+ [
1431
+ "ceramic_light brown_opaque_plain__bowl",
1432
+ 8
1433
+ ],
1434
+ [
1435
+ "black_fabric_opaque_plain_white__hat",
1436
+ 8
1437
+ ],
1438
+ [
1439
+ "opaque_plain_white__napkin",
1440
+ 8
1441
+ ],
1442
+ [
1443
+ "opaque_plain_plastic_white__telephone",
1444
+ 8
1445
+ ],
1446
+ [
1447
+ "brown_metal_opaque_plain__knife",
1448
+ 8
1449
+ ],
1450
+ [
1451
+ "black_opaque_plain_plastic_white__remote control",
1452
+ 8
1453
+ ],
1454
+ [
1455
+ "dark brown_fabric_opaque_plain__sweater",
1456
+ 8
1457
+ ],
1458
+ [
1459
+ "black_logo_opaque_plastic_white__helmet",
1460
+ 8
1461
+ ],
1462
+ [
1463
+ "black_glass_light grey_opaque_plain_plastic__television set",
1464
+ 8
1465
+ ],
1466
+ [
1467
+ "dark grey_opaque_plain_plastic__trash can",
1468
+ 8
1469
+ ],
1470
+ [
1471
+ "black_grey_metal_opaque_plain__knife",
1472
+ 8
1473
+ ],
1474
+ [
1475
+ "black_metal_opaque_plain__chair",
1476
+ 8
1477
+ ],
1478
+ [
1479
+ "black_grey_metal_opaque_plain__car (automobile)",
1480
+ 8
1481
+ ],
1482
+ [
1483
+ "black_opaque_plain_plastic_white__laptop computer",
1484
+ 8
1485
+ ],
1486
+ [
1487
+ "black_glass_grey_opaque_plain_plastic__laptop computer",
1488
+ 8
1489
+ ],
1490
+ [
1491
+ "black_glass_opaque_plain_plastic__laptop computer",
1492
+ 8
1493
+ ],
1494
+ [
1495
+ "black_glass_grey_metal_opaque_plain__car (automobile)",
1496
+ 8
1497
+ ],
1498
+ [
1499
+ "dark brown_opaque_plain__dog",
1500
+ 8
1501
+ ],
1502
+ [
1503
+ "fabric_grey_opaque_plain__sweater",
1504
+ 8
1505
+ ],
1506
+ [
1507
+ "black_glass_metal_opaque_plain__car (automobile)",
1508
+ 8
1509
+ ],
1510
+ [
1511
+ "black_opaque_plain__handbag",
1512
+ 8
1513
+ ],
1514
+ [
1515
+ "metal_opaque_plain_white__microwave oven",
1516
+ 7
1517
+ ],
1518
+ [
1519
+ "black_glass_opaque_plastic_text__laptop computer",
1520
+ 7
1521
+ ],
1522
+ [
1523
+ "plain_plastic_transparent__bottle",
1524
+ 7
1525
+ ],
1526
+ [
1527
+ "black_grey_opaque_plain_plastic__remote control",
1528
+ 7
1529
+ ],
1530
+ [
1531
+ "glass_opaque_plain_white__lamp",
1532
+ 7
1533
+ ],
1534
+ [
1535
+ "black_grey_metal_opaque_plain__trash can",
1536
+ 7
1537
+ ],
1538
+ [
1539
+ "fabric_opaque_plain__pillow",
1540
+ 7
1541
+ ],
1542
+ [
1543
+ "black_opaque_paper_plain_white__book",
1544
+ 7
1545
+ ],
1546
+ [
1547
+ "brown_ceramic_opaque_plain__vase",
1548
+ 7
1549
+ ],
1550
+ [
1551
+ "black_opaque_plain_plastic_white__bucket",
1552
+ 7
1553
+ ],
1554
+ [
1555
+ "dark grey_fabric_opaque_plain__pillow",
1556
+ 7
1557
+ ],
1558
+ [
1559
+ "fabric_opaque_plain_red__napkin",
1560
+ 7
1561
+ ],
1562
+ [
1563
+ "fabric_light brown_opaque_plain__towel",
1564
+ 7
1565
+ ],
1566
+ [
1567
+ "black_glass_metal_opaque_plastic_text_white__clock",
1568
+ 7
1569
+ ],
1570
+ [
1571
+ "opaque_plain_plastic_red__bucket",
1572
+ 7
1573
+ ],
1574
+ [
1575
+ "light grey_metal_opaque_plain__bowl",
1576
+ 7
1577
+ ],
1578
+ [
1579
+ "black_grey_metal_opaque_plain_plastic__trash can",
1580
+ 7
1581
+ ],
1582
+ [
1583
+ "grey_opaque_plain_wood__table",
1584
+ 7
1585
+ ],
1586
+ [
1587
+ "black_opaque_plain_plastic__mirror",
1588
+ 7
1589
+ ],
1590
+ [
1591
+ "fabric_grey_opaque_plain__hat",
1592
+ 7
1593
+ ],
1594
+ [
1595
+ "black_metal_opaque_plain__trash can",
1596
+ 7
1597
+ ],
1598
+ [
1599
+ "blue_opaque_plain_plastic__bucket",
1600
+ 7
1601
+ ]
1602
+ ]
images/vg/1159879.jpg ADDED

Git LFS Details

  • SHA256: da0a9be9d8c4f26f5490b449692d8d960b2212b625756f7e9b444ad1a4dd8dd9
  • Pointer size: 131 Bytes
  • Size of remote file: 625 kB
images/vg/150510.jpg ADDED

Git LFS Details

  • SHA256: b274e5ca4c00c77fc4c499351ee76a7913b9490a2e9a6065425ffee749281f01
  • Pointer size: 131 Bytes
  • Size of remote file: 683 kB
images/vg/1592713.jpg ADDED

Git LFS Details

  • SHA256: 00cc43e663be65fef0e23df960bc66bd630e0eb215355f2c98bd1610747e5eed
  • Pointer size: 131 Bytes
  • Size of remote file: 461 kB
images/vg/2320975.jpg ADDED

Git LFS Details

  • SHA256: 552cb63eedfc7386f8e4fd074d3e6e7057080d6c463b7980996a9b00cb040846
  • Pointer size: 130 Bytes
  • Size of remote file: 66.3 kB
images/vg/2332451.jpg ADDED

Git LFS Details

  • SHA256: ed97ad97d7c880214a058fb7fc365336b6edbc6b951683385e860c990c6daf93
  • Pointer size: 130 Bytes
  • Size of remote file: 92.7 kB
images/vg/2336219.jpg ADDED

Git LFS Details

  • SHA256: f5f9d2c259828a4a4544df54fd8c7dd92ddefd3dea98c4e2325c5ce31dcab112
  • Pointer size: 130 Bytes
  • Size of remote file: 49.9 kB
images/vg/2343388.jpg ADDED

Git LFS Details

  • SHA256: 9167e6bf7e16d828c7fd7513390ab6634c6b8d63ab86b3d32eb1e339df39319c
  • Pointer size: 131 Bytes
  • Size of remote file: 106 kB
images/vg/2346326.jpg ADDED

Git LFS Details

  • SHA256: 88a45ffa1e7ba7c05787a2a9b5d2071aa3f4a647b4a82c16e67d6612423fd201
  • Pointer size: 130 Bytes
  • Size of remote file: 73 kB
images/vg/2347845.jpg ADDED

Git LFS Details

  • SHA256: 02a49df0e498faa0b3b6f8e3ca10f0399dddcf5069730ad7f4dd7094fce393ba
  • Pointer size: 130 Bytes
  • Size of remote file: 80.9 kB
images/vg/2349983.jpg ADDED

Git LFS Details

  • SHA256: 83d3fb39e668deffc33e2e0078c89748d7145eee54442276ab0cdee62110f586
  • Pointer size: 131 Bytes
  • Size of remote file: 122 kB
images/vg/2352813.jpg ADDED

Git LFS Details

  • SHA256: bf9b4669c3c710b64f31cf045bdc8704aca92e67702e6461070718ca285e6a11
  • Pointer size: 131 Bytes
  • Size of remote file: 296 kB
images/vg/2363488.jpg ADDED

Git LFS Details

  • SHA256: 653dc34c58ed18ece3b6e76ad3f727d97f44874ee5428f324cf3e40b73d0c177
  • Pointer size: 130 Bytes
  • Size of remote file: 96.7 kB
images/vg/2365794.jpg ADDED

Git LFS Details

  • SHA256: 5c4fa0696e76140602acb4a112436ccdf8c822691d9bca4a800cc0a69d911a39
  • Pointer size: 130 Bytes
  • Size of remote file: 79.6 kB
images/vg/2367240.jpg ADDED

Git LFS Details

  • SHA256: 5da43c9473e32ece29e8d0f5758e41970c4e78f34b8e03670503603672119035
  • Pointer size: 131 Bytes
  • Size of remote file: 114 kB
images/vg/2370438.jpg ADDED

Git LFS Details

  • SHA256: 009a0c8dff4d85db9f89e4c77da3468b1ea602ccc5b10b4ac0732c17bca21c95
  • Pointer size: 131 Bytes
  • Size of remote file: 216 kB
images/vg/2371719.jpg ADDED

Git LFS Details

  • SHA256: 0dd7cd2e5b858c67ab618633df46316c2882163ab04ccc2e8c11a9bdb0bced65
  • Pointer size: 131 Bytes
  • Size of remote file: 109 kB
images/vg/2371802.jpg ADDED

Git LFS Details

  • SHA256: fcdd1f23a2d85b4d1a65ebff1c6e4e3bef2d96ca6c1151f9e04e90829ece6927
  • Pointer size: 131 Bytes
  • Size of remote file: 146 kB
images/vg/2374435.jpg ADDED

Git LFS Details

  • SHA256: 68b97ef8f9c8133afa6fe7e297dd9f1f05cb444d4c27534f03b7ed1194ee1d9a
  • Pointer size: 131 Bytes
  • Size of remote file: 146 kB
images/vg/2375532.jpg ADDED

Git LFS Details

  • SHA256: e372642575e4aa6adf04d27ff0da256dc971f692f940be87bdf1a6f48486aef1
  • Pointer size: 131 Bytes
  • Size of remote file: 187 kB
images/vg/2376382.jpg ADDED

Git LFS Details

  • SHA256: d936406b6ffe5ac3047601dc2d13e091b406da5bbd409ef2ce4d02b1456bf3db
  • Pointer size: 130 Bytes
  • Size of remote file: 89.6 kB
images/vg/2379466.jpg ADDED

Git LFS Details

  • SHA256: 2316d6c421a00bc5951353348f7875bbc51ae4881ffaf9668b332e6d56e6e350
  • Pointer size: 131 Bytes
  • Size of remote file: 114 kB
images/vg/2381398.jpg ADDED

Git LFS Details

  • SHA256: 810d715282233ec7aac6b84cf0f77586fdb04ceb3255187df2b0680ddc05a5af
  • Pointer size: 131 Bytes
  • Size of remote file: 121 kB
images/vg/2381995.jpg ADDED

Git LFS Details

  • SHA256: 19deba4c564ca69d1a7d53d83f33ea64560eed427590ca283183e6053d0060ec
  • Pointer size: 131 Bytes
  • Size of remote file: 196 kB
images/vg/2384391.jpg ADDED

Git LFS Details

  • SHA256: 1f1284718b26d740b5532a30f3f24e18c79c7b6012d0631a2175d263e8a83063
  • Pointer size: 130 Bytes
  • Size of remote file: 35.1 kB
images/vg/2386129.jpg ADDED

Git LFS Details

  • SHA256: c17743a87c91b48f31589b107d0b34702c1ba344ef8e7085e1081d2cc35bca56
  • Pointer size: 131 Bytes
  • Size of remote file: 177 kB
images/vg/2386918.jpg ADDED

Git LFS Details

  • SHA256: 7f84a2fa4c26b011e84fb8a2f243ddbc295938dc7710da4a7cae0362de7b4ce5
  • Pointer size: 131 Bytes
  • Size of remote file: 207 kB
images/vg/2387265.jpg ADDED

Git LFS Details

  • SHA256: 774daf034aa02c2deb395838ad6f713518a1dfb560a3a06a01d8c81c2e0318b6
  • Pointer size: 131 Bytes
  • Size of remote file: 127 kB
images/vg/2389829.jpg ADDED

Git LFS Details

  • SHA256: 44e6caf91d90e668225fd411cdda5c27c972b32ae013a093799c877fce09902f
  • Pointer size: 131 Bytes
  • Size of remote file: 105 kB
images/vg/2392240.jpg ADDED

Git LFS Details

  • SHA256: 148ccaaac74c48f829681b8376e2fba89fdeaf3c0b28dcdba23993d3f9ce5471
  • Pointer size: 131 Bytes
  • Size of remote file: 128 kB
images/vg/2396455.jpg ADDED

Git LFS Details

  • SHA256: 370334d5528b8b6c003624bde4339c204d8cf9a378ea9673a90aa01a65099bca
  • Pointer size: 131 Bytes
  • Size of remote file: 108 kB
images/vg/2396677.jpg ADDED

Git LFS Details

  • SHA256: f1f82786dff6cbbcdb063ba584d4371c925be660b51346f415405acfbed06216
  • Pointer size: 131 Bytes
  • Size of remote file: 166 kB
images/vg/2398164.jpg ADDED

Git LFS Details

  • SHA256: 8eca06e70be4ed12f67ba94bdbca3a9d834a8685b0d1beb550388e52fbb420d9
  • Pointer size: 131 Bytes
  • Size of remote file: 132 kB
images/vg/2399821.jpg ADDED

Git LFS Details

  • SHA256: 35f3ec028fe2a93f115371c33de3df79708bc0070d635d70a174b31e63c9c2b7
  • Pointer size: 130 Bytes
  • Size of remote file: 78.3 kB
images/vg/2401284.jpg ADDED

Git LFS Details

  • SHA256: 20acac513a218c2b419255e82d1bbb5288d0d834ef93599caf3c229b90025463
  • Pointer size: 131 Bytes
  • Size of remote file: 138 kB
images/vg/2405464.jpg ADDED

Git LFS Details

  • SHA256: f68a2f7b4f47220e41b4375c7bd5b7a1272bbb6f110326717b73d8230363befc
  • Pointer size: 131 Bytes
  • Size of remote file: 166 kB
images/vg/2407455.jpg ADDED

Git LFS Details

  • SHA256: 2b32c52cf5e5030dadc0c586f1e820bab70fa18a5c3ea7b6bdb64cb46fcb2dcc
  • Pointer size: 131 Bytes
  • Size of remote file: 153 kB
images/vg/2410936.jpg ADDED

Git LFS Details

  • SHA256: c3563103fb320a903e587f68d4278354df2419b9008cc295ab834085aedc61f7
  • Pointer size: 130 Bytes
  • Size of remote file: 87.3 kB
images/vg/2411910.jpg ADDED

Git LFS Details

  • SHA256: 25e76719aebd9974064b2d89317c64b9848c200898868a9d988b43f16894a215
  • Pointer size: 130 Bytes
  • Size of remote file: 97.7 kB
images/vg/2416432.jpg ADDED

Git LFS Details

  • SHA256: bb57bff9470b621b8aacae869dae9130bbf38bc295950c01d83208e9127dbd1d
  • Pointer size: 131 Bytes
  • Size of remote file: 147 kB
images/vg/2777.jpg ADDED

Git LFS Details

  • SHA256: 6d1527e1f34a77cc9863f580b47593f3422910f2ecb6716a0e143a39caf5d690
  • Pointer size: 130 Bytes
  • Size of remote file: 38.4 kB
images/vg/3144.jpg ADDED

Git LFS Details

  • SHA256: 8acd7ace12a344906faa3ec8cbeb33f1e85e4440d5b3d19abd0e549d3633358e
  • Pointer size: 130 Bytes
  • Size of remote file: 55 kB
images/vg/713596.jpg ADDED

Git LFS Details

  • SHA256: abb268961315064f42cc5fcfc10bdbf47e6e967f4211350dc851be8e2b4e0797
  • Pointer size: 131 Bytes
  • Size of remote file: 441 kB