Upload 2 files
Browse files- Superimposed_Masked_Dataset.py +89 -0
- classes.py +1022 -0
Superimposed_Masked_Dataset.py
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# coding=utf-8
|
| 2 |
+
# Copyright 2022 the HuggingFace Datasets Authors.
|
| 3 |
+
#
|
| 4 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
| 5 |
+
# you may not use this file except in compliance with the License.
|
| 6 |
+
# You may obtain a copy of the License at
|
| 7 |
+
#
|
| 8 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
| 9 |
+
#
|
| 10 |
+
# Unless required by applicable law or agreed to in writing, software
|
| 11 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 12 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 13 |
+
# See the License for the specific language governing permissions and
|
| 14 |
+
# limitations under the License.
|
| 15 |
+
|
| 16 |
+
# This script was modified from the imagenet-1k HF dataset repo
|
| 17 |
+
|
| 18 |
+
import os
|
| 19 |
+
|
| 20 |
+
import datasets
|
| 21 |
+
from datasets.tasks import ImageClassification
|
| 22 |
+
|
| 23 |
+
from .classes import IMAGENET2012_CLASSES
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
_CITATION = """\
|
| 27 |
+
@article{BibTeX
|
| 28 |
+
}
|
| 29 |
+
"""
|
| 30 |
+
|
| 31 |
+
_HOMEPAGE = "https://arielnlee.github.io/PatchMixing/"
|
| 32 |
+
|
| 33 |
+
_DESCRIPTION = """\
|
| 34 |
+
SMD is an occluded ImageNet-1K validation set, created to be an additional way to evaluate the impact of occlusion on model performance. This experiment used a variety of occluder objects that are not in the ImageNet-1K label space and are unambiguous in relationship to objects that reside in the label space.
|
| 35 |
+
"""
|
| 36 |
+
|
| 37 |
+
_DATA_URL = {
|
| 38 |
+
"rod": [
|
| 39 |
+
f"https://huggingface.co/datasets/ariellee/Superimposed-Masked-Dataset/resolve/main/smd_{i}.tar.gz"
|
| 40 |
+
for i in range(1, 41)
|
| 41 |
+
]
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
class SMD(datasets.GeneratorBasedBuilder):
|
| 46 |
+
VERSION = datasets.Version("1.0.0")
|
| 47 |
+
|
| 48 |
+
DEFAULT_WRITER_BATCH_SIZE = 1000
|
| 49 |
+
|
| 50 |
+
def _info(self):
|
| 51 |
+
assert len(IMAGENET2012_CLASSES) == 1000
|
| 52 |
+
return datasets.DatasetInfo(
|
| 53 |
+
description=_DESCRIPTION,
|
| 54 |
+
features=datasets.Features(
|
| 55 |
+
{
|
| 56 |
+
"image": datasets.Image(),
|
| 57 |
+
"label": datasets.ClassLabel(names=list(IMAGENET2012_CLASSES.values())),
|
| 58 |
+
}
|
| 59 |
+
),
|
| 60 |
+
homepage=_HOMEPAGE,
|
| 61 |
+
citation=_CITATION,
|
| 62 |
+
task_templates=[ImageClassification(image_column="image", label_column="label")],
|
| 63 |
+
)
|
| 64 |
+
|
| 65 |
+
def _split_generators(self, dl_manager):
|
| 66 |
+
"""Returns SplitGenerators."""
|
| 67 |
+
archives = dl_manager.download(_DATA_URL)
|
| 68 |
+
|
| 69 |
+
return [
|
| 70 |
+
datasets.SplitGenerator(
|
| 71 |
+
name="SMD", # "SMD (occluded IN-1K val set)"
|
| 72 |
+
gen_kwargs={
|
| 73 |
+
"archives": [dl_manager.iter_archive(archive) for archive in archives["smd"]],
|
| 74 |
+
},
|
| 75 |
+
),
|
| 76 |
+
]
|
| 77 |
+
|
| 78 |
+
|
| 79 |
+
def _generate_examples(self, archives):
|
| 80 |
+
"""Yields examples."""
|
| 81 |
+
idx = 0
|
| 82 |
+
for archive in archives:
|
| 83 |
+
for path, file in archive:
|
| 84 |
+
if path.endswith(".png"):
|
| 85 |
+
synset_id = os.path.basename(os.path.dirname(path))
|
| 86 |
+
label = IMAGENET2012_CLASSES[synset_id]
|
| 87 |
+
ex = {"image": {"path": path, "bytes": file.read()}, "label": label}
|
| 88 |
+
yield idx, ex
|
| 89 |
+
idx += 1
|
classes.py
ADDED
|
@@ -0,0 +1,1022 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# coding=utf-8
|
| 2 |
+
# Copyright 2022 the HuggingFace Datasets Authors.
|
| 3 |
+
#
|
| 4 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
| 5 |
+
# you may not use this file except in compliance with the License.
|
| 6 |
+
# You may obtain a copy of the License at
|
| 7 |
+
#
|
| 8 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
| 9 |
+
#
|
| 10 |
+
# Unless required by applicable law or agreed to in writing, software
|
| 11 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 12 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 13 |
+
# See the License for the specific language governing permissions and
|
| 14 |
+
# limitations under the License.
|
| 15 |
+
|
| 16 |
+
from collections import OrderedDict
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
IMAGENET2012_CLASSES = OrderedDict(
|
| 20 |
+
{
|
| 21 |
+
"n01440764": "tench, Tinca tinca",
|
| 22 |
+
"n01443537": "goldfish, Carassius auratus",
|
| 23 |
+
"n01484850": "great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias",
|
| 24 |
+
"n01491361": "tiger shark, Galeocerdo cuvieri",
|
| 25 |
+
"n01494475": "hammerhead, hammerhead shark",
|
| 26 |
+
"n01496331": "electric ray, crampfish, numbfish, torpedo",
|
| 27 |
+
"n01498041": "stingray",
|
| 28 |
+
"n01514668": "cock",
|
| 29 |
+
"n01514859": "hen",
|
| 30 |
+
"n01518878": "ostrich, Struthio camelus",
|
| 31 |
+
"n01530575": "brambling, Fringilla montifringilla",
|
| 32 |
+
"n01531178": "goldfinch, Carduelis carduelis",
|
| 33 |
+
"n01532829": "house finch, linnet, Carpodacus mexicanus",
|
| 34 |
+
"n01534433": "junco, snowbird",
|
| 35 |
+
"n01537544": "indigo bunting, indigo finch, indigo bird, Passerina cyanea",
|
| 36 |
+
"n01558993": "robin, American robin, Turdus migratorius",
|
| 37 |
+
"n01560419": "bulbul",
|
| 38 |
+
"n01580077": "jay",
|
| 39 |
+
"n01582220": "magpie",
|
| 40 |
+
"n01592084": "chickadee",
|
| 41 |
+
"n01601694": "water ouzel, dipper",
|
| 42 |
+
"n01608432": "kite",
|
| 43 |
+
"n01614925": "bald eagle, American eagle, Haliaeetus leucocephalus",
|
| 44 |
+
"n01616318": "vulture",
|
| 45 |
+
"n01622779": "great grey owl, great gray owl, Strix nebulosa",
|
| 46 |
+
"n01629819": "European fire salamander, Salamandra salamandra",
|
| 47 |
+
"n01630670": "common newt, Triturus vulgaris",
|
| 48 |
+
"n01631663": "eft",
|
| 49 |
+
"n01632458": "spotted salamander, Ambystoma maculatum",
|
| 50 |
+
"n01632777": "axolotl, mud puppy, Ambystoma mexicanum",
|
| 51 |
+
"n01641577": "bullfrog, Rana catesbeiana",
|
| 52 |
+
"n01644373": "tree frog, tree-frog",
|
| 53 |
+
"n01644900": "tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui",
|
| 54 |
+
"n01664065": "loggerhead, loggerhead turtle, Caretta caretta",
|
| 55 |
+
"n01665541": "leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea",
|
| 56 |
+
"n01667114": "mud turtle",
|
| 57 |
+
"n01667778": "terrapin",
|
| 58 |
+
"n01669191": "box turtle, box tortoise",
|
| 59 |
+
"n01675722": "banded gecko",
|
| 60 |
+
"n01677366": "common iguana, iguana, Iguana iguana",
|
| 61 |
+
"n01682714": "American chameleon, anole, Anolis carolinensis",
|
| 62 |
+
"n01685808": "whiptail, whiptail lizard",
|
| 63 |
+
"n01687978": "agama",
|
| 64 |
+
"n01688243": "frilled lizard, Chlamydosaurus kingi",
|
| 65 |
+
"n01689811": "alligator lizard",
|
| 66 |
+
"n01692333": "Gila monster, Heloderma suspectum",
|
| 67 |
+
"n01693334": "green lizard, Lacerta viridis",
|
| 68 |
+
"n01694178": "African chameleon, Chamaeleo chamaeleon",
|
| 69 |
+
"n01695060": "Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis",
|
| 70 |
+
"n01697457": "African crocodile, Nile crocodile, Crocodylus niloticus",
|
| 71 |
+
"n01698640": "American alligator, Alligator mississipiensis",
|
| 72 |
+
"n01704323": "triceratops",
|
| 73 |
+
"n01728572": "thunder snake, worm snake, Carphophis amoenus",
|
| 74 |
+
"n01728920": "ringneck snake, ring-necked snake, ring snake",
|
| 75 |
+
"n01729322": "hognose snake, puff adder, sand viper",
|
| 76 |
+
"n01729977": "green snake, grass snake",
|
| 77 |
+
"n01734418": "king snake, kingsnake",
|
| 78 |
+
"n01735189": "garter snake, grass snake",
|
| 79 |
+
"n01737021": "water snake",
|
| 80 |
+
"n01739381": "vine snake",
|
| 81 |
+
"n01740131": "night snake, Hypsiglena torquata",
|
| 82 |
+
"n01742172": "boa constrictor, Constrictor constrictor",
|
| 83 |
+
"n01744401": "rock python, rock snake, Python sebae",
|
| 84 |
+
"n01748264": "Indian cobra, Naja naja",
|
| 85 |
+
"n01749939": "green mamba",
|
| 86 |
+
"n01751748": "sea snake",
|
| 87 |
+
"n01753488": "horned viper, cerastes, sand viper, horned asp, Cerastes cornutus",
|
| 88 |
+
"n01755581": "diamondback, diamondback rattlesnake, Crotalus adamanteus",
|
| 89 |
+
"n01756291": "sidewinder, horned rattlesnake, Crotalus cerastes",
|
| 90 |
+
"n01768244": "trilobite",
|
| 91 |
+
"n01770081": "harvestman, daddy longlegs, Phalangium opilio",
|
| 92 |
+
"n01770393": "scorpion",
|
| 93 |
+
"n01773157": "black and gold garden spider, Argiope aurantia",
|
| 94 |
+
"n01773549": "barn spider, Araneus cavaticus",
|
| 95 |
+
"n01773797": "garden spider, Aranea diademata",
|
| 96 |
+
"n01774384": "black widow, Latrodectus mactans",
|
| 97 |
+
"n01774750": "tarantula",
|
| 98 |
+
"n01775062": "wolf spider, hunting spider",
|
| 99 |
+
"n01776313": "tick",
|
| 100 |
+
"n01784675": "centipede",
|
| 101 |
+
"n01795545": "black grouse",
|
| 102 |
+
"n01796340": "ptarmigan",
|
| 103 |
+
"n01797886": "ruffed grouse, partridge, Bonasa umbellus",
|
| 104 |
+
"n01798484": "prairie chicken, prairie grouse, prairie fowl",
|
| 105 |
+
"n01806143": "peacock",
|
| 106 |
+
"n01806567": "quail",
|
| 107 |
+
"n01807496": "partridge",
|
| 108 |
+
"n01817953": "African grey, African gray, Psittacus erithacus",
|
| 109 |
+
"n01818515": "macaw",
|
| 110 |
+
"n01819313": "sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita",
|
| 111 |
+
"n01820546": "lorikeet",
|
| 112 |
+
"n01824575": "coucal",
|
| 113 |
+
"n01828970": "bee eater",
|
| 114 |
+
"n01829413": "hornbill",
|
| 115 |
+
"n01833805": "hummingbird",
|
| 116 |
+
"n01843065": "jacamar",
|
| 117 |
+
"n01843383": "toucan",
|
| 118 |
+
"n01847000": "drake",
|
| 119 |
+
"n01855032": "red-breasted merganser, Mergus serrator",
|
| 120 |
+
"n01855672": "goose",
|
| 121 |
+
"n01860187": "black swan, Cygnus atratus",
|
| 122 |
+
"n01871265": "tusker",
|
| 123 |
+
"n01872401": "echidna, spiny anteater, anteater",
|
| 124 |
+
"n01873310": "platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus",
|
| 125 |
+
"n01877812": "wallaby, brush kangaroo",
|
| 126 |
+
"n01882714": "koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus",
|
| 127 |
+
"n01883070": "wombat",
|
| 128 |
+
"n01910747": "jellyfish",
|
| 129 |
+
"n01914609": "sea anemone, anemone",
|
| 130 |
+
"n01917289": "brain coral",
|
| 131 |
+
"n01924916": "flatworm, platyhelminth",
|
| 132 |
+
"n01930112": "nematode, nematode worm, roundworm",
|
| 133 |
+
"n01943899": "conch",
|
| 134 |
+
"n01944390": "snail",
|
| 135 |
+
"n01945685": "slug",
|
| 136 |
+
"n01950731": "sea slug, nudibranch",
|
| 137 |
+
"n01955084": "chiton, coat-of-mail shell, sea cradle, polyplacophore",
|
| 138 |
+
"n01968897": "chambered nautilus, pearly nautilus, nautilus",
|
| 139 |
+
"n01978287": "Dungeness crab, Cancer magister",
|
| 140 |
+
"n01978455": "rock crab, Cancer irroratus",
|
| 141 |
+
"n01980166": "fiddler crab",
|
| 142 |
+
"n01981276": "king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica",
|
| 143 |
+
"n01983481": "American lobster, Northern lobster, Maine lobster, Homarus americanus",
|
| 144 |
+
"n01984695": "spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish",
|
| 145 |
+
"n01985128": "crayfish, crawfish, crawdad, crawdaddy",
|
| 146 |
+
"n01986214": "hermit crab",
|
| 147 |
+
"n01990800": "isopod",
|
| 148 |
+
"n02002556": "white stork, Ciconia ciconia",
|
| 149 |
+
"n02002724": "black stork, Ciconia nigra",
|
| 150 |
+
"n02006656": "spoonbill",
|
| 151 |
+
"n02007558": "flamingo",
|
| 152 |
+
"n02009229": "little blue heron, Egretta caerulea",
|
| 153 |
+
"n02009912": "American egret, great white heron, Egretta albus",
|
| 154 |
+
"n02011460": "bittern",
|
| 155 |
+
"n02012849": "crane",
|
| 156 |
+
"n02013706": "limpkin, Aramus pictus",
|
| 157 |
+
"n02017213": "European gallinule, Porphyrio porphyrio",
|
| 158 |
+
"n02018207": "American coot, marsh hen, mud hen, water hen, Fulica americana",
|
| 159 |
+
"n02018795": "bustard",
|
| 160 |
+
"n02025239": "ruddy turnstone, Arenaria interpres",
|
| 161 |
+
"n02027492": "red-backed sandpiper, dunlin, Erolia alpina",
|
| 162 |
+
"n02028035": "redshank, Tringa totanus",
|
| 163 |
+
"n02033041": "dowitcher",
|
| 164 |
+
"n02037110": "oystercatcher, oyster catcher",
|
| 165 |
+
"n02051845": "pelican",
|
| 166 |
+
"n02056570": "king penguin, Aptenodytes patagonica",
|
| 167 |
+
"n02058221": "albatross, mollymawk",
|
| 168 |
+
"n02066245": "grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus",
|
| 169 |
+
"n02071294": "killer whale, killer, orca, grampus, sea wolf, Orcinus orca",
|
| 170 |
+
"n02074367": "dugong, Dugong dugon",
|
| 171 |
+
"n02077923": "sea lion",
|
| 172 |
+
"n02085620": "Chihuahua",
|
| 173 |
+
"n02085782": "Japanese spaniel",
|
| 174 |
+
"n02085936": "Maltese dog, Maltese terrier, Maltese",
|
| 175 |
+
"n02086079": "Pekinese, Pekingese, Peke",
|
| 176 |
+
"n02086240": "Shih-Tzu",
|
| 177 |
+
"n02086646": "Blenheim spaniel",
|
| 178 |
+
"n02086910": "papillon",
|
| 179 |
+
"n02087046": "toy terrier",
|
| 180 |
+
"n02087394": "Rhodesian ridgeback",
|
| 181 |
+
"n02088094": "Afghan hound, Afghan",
|
| 182 |
+
"n02088238": "basset, basset hound",
|
| 183 |
+
"n02088364": "beagle",
|
| 184 |
+
"n02088466": "bloodhound, sleuthhound",
|
| 185 |
+
"n02088632": "bluetick",
|
| 186 |
+
"n02089078": "black-and-tan coonhound",
|
| 187 |
+
"n02089867": "Walker hound, Walker foxhound",
|
| 188 |
+
"n02089973": "English foxhound",
|
| 189 |
+
"n02090379": "redbone",
|
| 190 |
+
"n02090622": "borzoi, Russian wolfhound",
|
| 191 |
+
"n02090721": "Irish wolfhound",
|
| 192 |
+
"n02091032": "Italian greyhound",
|
| 193 |
+
"n02091134": "whippet",
|
| 194 |
+
"n02091244": "Ibizan hound, Ibizan Podenco",
|
| 195 |
+
"n02091467": "Norwegian elkhound, elkhound",
|
| 196 |
+
"n02091635": "otterhound, otter hound",
|
| 197 |
+
"n02091831": "Saluki, gazelle hound",
|
| 198 |
+
"n02092002": "Scottish deerhound, deerhound",
|
| 199 |
+
"n02092339": "Weimaraner",
|
| 200 |
+
"n02093256": "Staffordshire bullterrier, Staffordshire bull terrier",
|
| 201 |
+
"n02093428": "American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier",
|
| 202 |
+
"n02093647": "Bedlington terrier",
|
| 203 |
+
"n02093754": "Border terrier",
|
| 204 |
+
"n02093859": "Kerry blue terrier",
|
| 205 |
+
"n02093991": "Irish terrier",
|
| 206 |
+
"n02094114": "Norfolk terrier",
|
| 207 |
+
"n02094258": "Norwich terrier",
|
| 208 |
+
"n02094433": "Yorkshire terrier",
|
| 209 |
+
"n02095314": "wire-haired fox terrier",
|
| 210 |
+
"n02095570": "Lakeland terrier",
|
| 211 |
+
"n02095889": "Sealyham terrier, Sealyham",
|
| 212 |
+
"n02096051": "Airedale, Airedale terrier",
|
| 213 |
+
"n02096177": "cairn, cairn terrier",
|
| 214 |
+
"n02096294": "Australian terrier",
|
| 215 |
+
"n02096437": "Dandie Dinmont, Dandie Dinmont terrier",
|
| 216 |
+
"n02096585": "Boston bull, Boston terrier",
|
| 217 |
+
"n02097047": "miniature schnauzer",
|
| 218 |
+
"n02097130": "giant schnauzer",
|
| 219 |
+
"n02097209": "standard schnauzer",
|
| 220 |
+
"n02097298": "Scotch terrier, Scottish terrier, Scottie",
|
| 221 |
+
"n02097474": "Tibetan terrier, chrysanthemum dog",
|
| 222 |
+
"n02097658": "silky terrier, Sydney silky",
|
| 223 |
+
"n02098105": "soft-coated wheaten terrier",
|
| 224 |
+
"n02098286": "West Highland white terrier",
|
| 225 |
+
"n02098413": "Lhasa, Lhasa apso",
|
| 226 |
+
"n02099267": "flat-coated retriever",
|
| 227 |
+
"n02099429": "curly-coated retriever",
|
| 228 |
+
"n02099601": "golden retriever",
|
| 229 |
+
"n02099712": "Labrador retriever",
|
| 230 |
+
"n02099849": "Chesapeake Bay retriever",
|
| 231 |
+
"n02100236": "German short-haired pointer",
|
| 232 |
+
"n02100583": "vizsla, Hungarian pointer",
|
| 233 |
+
"n02100735": "English setter",
|
| 234 |
+
"n02100877": "Irish setter, red setter",
|
| 235 |
+
"n02101006": "Gordon setter",
|
| 236 |
+
"n02101388": "Brittany spaniel",
|
| 237 |
+
"n02101556": "clumber, clumber spaniel",
|
| 238 |
+
"n02102040": "English springer, English springer spaniel",
|
| 239 |
+
"n02102177": "Welsh springer spaniel",
|
| 240 |
+
"n02102318": "cocker spaniel, English cocker spaniel, cocker",
|
| 241 |
+
"n02102480": "Sussex spaniel",
|
| 242 |
+
"n02102973": "Irish water spaniel",
|
| 243 |
+
"n02104029": "kuvasz",
|
| 244 |
+
"n02104365": "schipperke",
|
| 245 |
+
"n02105056": "groenendael",
|
| 246 |
+
"n02105162": "malinois",
|
| 247 |
+
"n02105251": "briard",
|
| 248 |
+
"n02105412": "kelpie",
|
| 249 |
+
"n02105505": "komondor",
|
| 250 |
+
"n02105641": "Old English sheepdog, bobtail",
|
| 251 |
+
"n02105855": "Shetland sheepdog, Shetland sheep dog, Shetland",
|
| 252 |
+
"n02106030": "collie",
|
| 253 |
+
"n02106166": "Border collie",
|
| 254 |
+
"n02106382": "Bouvier des Flandres, Bouviers des Flandres",
|
| 255 |
+
"n02106550": "Rottweiler",
|
| 256 |
+
"n02106662": "German shepherd, German shepherd dog, German police dog, alsatian",
|
| 257 |
+
"n02107142": "Doberman, Doberman pinscher",
|
| 258 |
+
"n02107312": "miniature pinscher",
|
| 259 |
+
"n02107574": "Greater Swiss Mountain dog",
|
| 260 |
+
"n02107683": "Bernese mountain dog",
|
| 261 |
+
"n02107908": "Appenzeller",
|
| 262 |
+
"n02108000": "EntleBucher",
|
| 263 |
+
"n02108089": "boxer",
|
| 264 |
+
"n02108422": "bull mastiff",
|
| 265 |
+
"n02108551": "Tibetan mastiff",
|
| 266 |
+
"n02108915": "French bulldog",
|
| 267 |
+
"n02109047": "Great Dane",
|
| 268 |
+
"n02109525": "Saint Bernard, St Bernard",
|
| 269 |
+
"n02109961": "Eskimo dog, husky",
|
| 270 |
+
"n02110063": "malamute, malemute, Alaskan malamute",
|
| 271 |
+
"n02110185": "Siberian husky",
|
| 272 |
+
"n02110341": "dalmatian, coach dog, carriage dog",
|
| 273 |
+
"n02110627": "affenpinscher, monkey pinscher, monkey dog",
|
| 274 |
+
"n02110806": "basenji",
|
| 275 |
+
"n02110958": "pug, pug-dog",
|
| 276 |
+
"n02111129": "Leonberg",
|
| 277 |
+
"n02111277": "Newfoundland, Newfoundland dog",
|
| 278 |
+
"n02111500": "Great Pyrenees",
|
| 279 |
+
"n02111889": "Samoyed, Samoyede",
|
| 280 |
+
"n02112018": "Pomeranian",
|
| 281 |
+
"n02112137": "chow, chow chow",
|
| 282 |
+
"n02112350": "keeshond",
|
| 283 |
+
"n02112706": "Brabancon griffon",
|
| 284 |
+
"n02113023": "Pembroke, Pembroke Welsh corgi",
|
| 285 |
+
"n02113186": "Cardigan, Cardigan Welsh corgi",
|
| 286 |
+
"n02113624": "toy poodle",
|
| 287 |
+
"n02113712": "miniature poodle",
|
| 288 |
+
"n02113799": "standard poodle",
|
| 289 |
+
"n02113978": "Mexican hairless",
|
| 290 |
+
"n02114367": "timber wolf, grey wolf, gray wolf, Canis lupus",
|
| 291 |
+
"n02114548": "white wolf, Arctic wolf, Canis lupus tundrarum",
|
| 292 |
+
"n02114712": "red wolf, maned wolf, Canis rufus, Canis niger",
|
| 293 |
+
"n02114855": "coyote, prairie wolf, brush wolf, Canis latrans",
|
| 294 |
+
"n02115641": "dingo, warrigal, warragal, Canis dingo",
|
| 295 |
+
"n02115913": "dhole, Cuon alpinus",
|
| 296 |
+
"n02116738": "African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus",
|
| 297 |
+
"n02117135": "hyena, hyaena",
|
| 298 |
+
"n02119022": "red fox, Vulpes vulpes",
|
| 299 |
+
"n02119789": "kit fox, Vulpes macrotis",
|
| 300 |
+
"n02120079": "Arctic fox, white fox, Alopex lagopus",
|
| 301 |
+
"n02120505": "grey fox, gray fox, Urocyon cinereoargenteus",
|
| 302 |
+
"n02123045": "tabby, tabby cat",
|
| 303 |
+
"n02123159": "tiger cat",
|
| 304 |
+
"n02123394": "Persian cat",
|
| 305 |
+
"n02123597": "Siamese cat, Siamese",
|
| 306 |
+
"n02124075": "Egyptian cat",
|
| 307 |
+
"n02125311": "cougar, puma, catamount, mountain lion, painter, panther, Felis concolor",
|
| 308 |
+
"n02127052": "lynx, catamount",
|
| 309 |
+
"n02128385": "leopard, Panthera pardus",
|
| 310 |
+
"n02128757": "snow leopard, ounce, Panthera uncia",
|
| 311 |
+
"n02128925": "jaguar, panther, Panthera onca, Felis onca",
|
| 312 |
+
"n02129165": "lion, king of beasts, Panthera leo",
|
| 313 |
+
"n02129604": "tiger, Panthera tigris",
|
| 314 |
+
"n02130308": "cheetah, chetah, Acinonyx jubatus",
|
| 315 |
+
"n02132136": "brown bear, bruin, Ursus arctos",
|
| 316 |
+
"n02133161": "American black bear, black bear, Ursus americanus, Euarctos americanus",
|
| 317 |
+
"n02134084": "ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus",
|
| 318 |
+
"n02134418": "sloth bear, Melursus ursinus, Ursus ursinus",
|
| 319 |
+
"n02137549": "mongoose",
|
| 320 |
+
"n02138441": "meerkat, mierkat",
|
| 321 |
+
"n02165105": "tiger beetle",
|
| 322 |
+
"n02165456": "ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle",
|
| 323 |
+
"n02167151": "ground beetle, carabid beetle",
|
| 324 |
+
"n02168699": "long-horned beetle, longicorn, longicorn beetle",
|
| 325 |
+
"n02169497": "leaf beetle, chrysomelid",
|
| 326 |
+
"n02172182": "dung beetle",
|
| 327 |
+
"n02174001": "rhinoceros beetle",
|
| 328 |
+
"n02177972": "weevil",
|
| 329 |
+
"n02190166": "fly",
|
| 330 |
+
"n02206856": "bee",
|
| 331 |
+
"n02219486": "ant, emmet, pismire",
|
| 332 |
+
"n02226429": "grasshopper, hopper",
|
| 333 |
+
"n02229544": "cricket",
|
| 334 |
+
"n02231487": "walking stick, walkingstick, stick insect",
|
| 335 |
+
"n02233338": "cockroach, roach",
|
| 336 |
+
"n02236044": "mantis, mantid",
|
| 337 |
+
"n02256656": "cicada, cicala",
|
| 338 |
+
"n02259212": "leafhopper",
|
| 339 |
+
"n02264363": "lacewing, lacewing fly",
|
| 340 |
+
"n02268443": "dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk",
|
| 341 |
+
"n02268853": "damselfly",
|
| 342 |
+
"n02276258": "admiral",
|
| 343 |
+
"n02277742": "ringlet, ringlet butterfly",
|
| 344 |
+
"n02279972": "monarch, monarch butterfly, milkweed butterfly, Danaus plexippus",
|
| 345 |
+
"n02280649": "cabbage butterfly",
|
| 346 |
+
"n02281406": "sulphur butterfly, sulfur butterfly",
|
| 347 |
+
"n02281787": "lycaenid, lycaenid butterfly",
|
| 348 |
+
"n02317335": "starfish, sea star",
|
| 349 |
+
"n02319095": "sea urchin",
|
| 350 |
+
"n02321529": "sea cucumber, holothurian",
|
| 351 |
+
"n02325366": "wood rabbit, cottontail, cottontail rabbit",
|
| 352 |
+
"n02326432": "hare",
|
| 353 |
+
"n02328150": "Angora, Angora rabbit",
|
| 354 |
+
"n02342885": "hamster",
|
| 355 |
+
"n02346627": "porcupine, hedgehog",
|
| 356 |
+
"n02356798": "fox squirrel, eastern fox squirrel, Sciurus niger",
|
| 357 |
+
"n02361337": "marmot",
|
| 358 |
+
"n02363005": "beaver",
|
| 359 |
+
"n02364673": "guinea pig, Cavia cobaya",
|
| 360 |
+
"n02389026": "sorrel",
|
| 361 |
+
"n02391049": "zebra",
|
| 362 |
+
"n02395406": "hog, pig, grunter, squealer, Sus scrofa",
|
| 363 |
+
"n02396427": "wild boar, boar, Sus scrofa",
|
| 364 |
+
"n02397096": "warthog",
|
| 365 |
+
"n02398521": "hippopotamus, hippo, river horse, Hippopotamus amphibius",
|
| 366 |
+
"n02403003": "ox",
|
| 367 |
+
"n02408429": "water buffalo, water ox, Asiatic buffalo, Bubalus bubalis",
|
| 368 |
+
"n02410509": "bison",
|
| 369 |
+
"n02412080": "ram, tup",
|
| 370 |
+
"n02415577": "bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis",
|
| 371 |
+
"n02417914": "ibex, Capra ibex",
|
| 372 |
+
"n02422106": "hartebeest",
|
| 373 |
+
"n02422699": "impala, Aepyceros melampus",
|
| 374 |
+
"n02423022": "gazelle",
|
| 375 |
+
"n02437312": "Arabian camel, dromedary, Camelus dromedarius",
|
| 376 |
+
"n02437616": "llama",
|
| 377 |
+
"n02441942": "weasel",
|
| 378 |
+
"n02442845": "mink",
|
| 379 |
+
"n02443114": "polecat, fitch, foulmart, foumart, Mustela putorius",
|
| 380 |
+
"n02443484": "black-footed ferret, ferret, Mustela nigripes",
|
| 381 |
+
"n02444819": "otter",
|
| 382 |
+
"n02445715": "skunk, polecat, wood pussy",
|
| 383 |
+
"n02447366": "badger",
|
| 384 |
+
"n02454379": "armadillo",
|
| 385 |
+
"n02457408": "three-toed sloth, ai, Bradypus tridactylus",
|
| 386 |
+
"n02480495": "orangutan, orang, orangutang, Pongo pygmaeus",
|
| 387 |
+
"n02480855": "gorilla, Gorilla gorilla",
|
| 388 |
+
"n02481823": "chimpanzee, chimp, Pan troglodytes",
|
| 389 |
+
"n02483362": "gibbon, Hylobates lar",
|
| 390 |
+
"n02483708": "siamang, Hylobates syndactylus, Symphalangus syndactylus",
|
| 391 |
+
"n02484975": "guenon, guenon monkey",
|
| 392 |
+
"n02486261": "patas, hussar monkey, Erythrocebus patas",
|
| 393 |
+
"n02486410": "baboon",
|
| 394 |
+
"n02487347": "macaque",
|
| 395 |
+
"n02488291": "langur",
|
| 396 |
+
"n02488702": "colobus, colobus monkey",
|
| 397 |
+
"n02489166": "proboscis monkey, Nasalis larvatus",
|
| 398 |
+
"n02490219": "marmoset",
|
| 399 |
+
"n02492035": "capuchin, ringtail, Cebus capucinus",
|
| 400 |
+
"n02492660": "howler monkey, howler",
|
| 401 |
+
"n02493509": "titi, titi monkey",
|
| 402 |
+
"n02493793": "spider monkey, Ateles geoffroyi",
|
| 403 |
+
"n02494079": "squirrel monkey, Saimiri sciureus",
|
| 404 |
+
"n02497673": "Madagascar cat, ring-tailed lemur, Lemur catta",
|
| 405 |
+
"n02500267": "indri, indris, Indri indri, Indri brevicaudatus",
|
| 406 |
+
"n02504013": "Indian elephant, Elephas maximus",
|
| 407 |
+
"n02504458": "African elephant, Loxodonta africana",
|
| 408 |
+
"n02509815": "lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens",
|
| 409 |
+
"n02510455": "giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca",
|
| 410 |
+
"n02514041": "barracouta, snoek",
|
| 411 |
+
"n02526121": "eel",
|
| 412 |
+
"n02536864": "coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch",
|
| 413 |
+
"n02606052": "rock beauty, Holocanthus tricolor",
|
| 414 |
+
"n02607072": "anemone fish",
|
| 415 |
+
"n02640242": "sturgeon",
|
| 416 |
+
"n02641379": "gar, garfish, garpike, billfish, Lepisosteus osseus",
|
| 417 |
+
"n02643566": "lionfish",
|
| 418 |
+
"n02655020": "puffer, pufferfish, blowfish, globefish",
|
| 419 |
+
"n02666196": "abacus",
|
| 420 |
+
"n02667093": "abaya",
|
| 421 |
+
"n02669723": "academic gown, academic robe, judge's robe",
|
| 422 |
+
"n02672831": "accordion, piano accordion, squeeze box",
|
| 423 |
+
"n02676566": "acoustic guitar",
|
| 424 |
+
"n02687172": "aircraft carrier, carrier, flattop, attack aircraft carrier",
|
| 425 |
+
"n02690373": "airliner",
|
| 426 |
+
"n02692877": "airship, dirigible",
|
| 427 |
+
"n02699494": "altar",
|
| 428 |
+
"n02701002": "ambulance",
|
| 429 |
+
"n02704792": "amphibian, amphibious vehicle",
|
| 430 |
+
"n02708093": "analog clock",
|
| 431 |
+
"n02727426": "apiary, bee house",
|
| 432 |
+
"n02730930": "apron",
|
| 433 |
+
"n02747177": "ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin",
|
| 434 |
+
"n02749479": "assault rifle, assault gun",
|
| 435 |
+
"n02769748": "backpack, back pack, knapsack, packsack, rucksack, haversack",
|
| 436 |
+
"n02776631": "bakery, bakeshop, bakehouse",
|
| 437 |
+
"n02777292": "balance beam, beam",
|
| 438 |
+
"n02782093": "balloon",
|
| 439 |
+
"n02783161": "ballpoint, ballpoint pen, ballpen, Biro",
|
| 440 |
+
"n02786058": "Band Aid",
|
| 441 |
+
"n02787622": "banjo",
|
| 442 |
+
"n02788148": "bannister, banister, balustrade, balusters, handrail",
|
| 443 |
+
"n02790996": "barbell",
|
| 444 |
+
"n02791124": "barber chair",
|
| 445 |
+
"n02791270": "barbershop",
|
| 446 |
+
"n02793495": "barn",
|
| 447 |
+
"n02794156": "barometer",
|
| 448 |
+
"n02795169": "barrel, cask",
|
| 449 |
+
"n02797295": "barrow, garden cart, lawn cart, wheelbarrow",
|
| 450 |
+
"n02799071": "baseball",
|
| 451 |
+
"n02802426": "basketball",
|
| 452 |
+
"n02804414": "bassinet",
|
| 453 |
+
"n02804610": "bassoon",
|
| 454 |
+
"n02807133": "bathing cap, swimming cap",
|
| 455 |
+
"n02808304": "bath towel",
|
| 456 |
+
"n02808440": "bathtub, bathing tub, bath, tub",
|
| 457 |
+
"n02814533": "beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon",
|
| 458 |
+
"n02814860": "beacon, lighthouse, beacon light, pharos",
|
| 459 |
+
"n02815834": "beaker",
|
| 460 |
+
"n02817516": "bearskin, busby, shako",
|
| 461 |
+
"n02823428": "beer bottle",
|
| 462 |
+
"n02823750": "beer glass",
|
| 463 |
+
"n02825657": "bell cote, bell cot",
|
| 464 |
+
"n02834397": "bib",
|
| 465 |
+
"n02835271": "bicycle-built-for-two, tandem bicycle, tandem",
|
| 466 |
+
"n02837789": "bikini, two-piece",
|
| 467 |
+
"n02840245": "binder, ring-binder",
|
| 468 |
+
"n02841315": "binoculars, field glasses, opera glasses",
|
| 469 |
+
"n02843684": "birdhouse",
|
| 470 |
+
"n02859443": "boathouse",
|
| 471 |
+
"n02860847": "bobsled, bobsleigh, bob",
|
| 472 |
+
"n02865351": "bolo tie, bolo, bola tie, bola",
|
| 473 |
+
"n02869837": "bonnet, poke bonnet",
|
| 474 |
+
"n02870880": "bookcase",
|
| 475 |
+
"n02871525": "bookshop, bookstore, bookstall",
|
| 476 |
+
"n02877765": "bottlecap",
|
| 477 |
+
"n02879718": "bow",
|
| 478 |
+
"n02883205": "bow tie, bow-tie, bowtie",
|
| 479 |
+
"n02892201": "brass, memorial tablet, plaque",
|
| 480 |
+
"n02892767": "brassiere, bra, bandeau",
|
| 481 |
+
"n02894605": "breakwater, groin, groyne, mole, bulwark, seawall, jetty",
|
| 482 |
+
"n02895154": "breastplate, aegis, egis",
|
| 483 |
+
"n02906734": "broom",
|
| 484 |
+
"n02909870": "bucket, pail",
|
| 485 |
+
"n02910353": "buckle",
|
| 486 |
+
"n02916936": "bulletproof vest",
|
| 487 |
+
"n02917067": "bullet train, bullet",
|
| 488 |
+
"n02927161": "butcher shop, meat market",
|
| 489 |
+
"n02930766": "cab, hack, taxi, taxicab",
|
| 490 |
+
"n02939185": "caldron, cauldron",
|
| 491 |
+
"n02948072": "candle, taper, wax light",
|
| 492 |
+
"n02950826": "cannon",
|
| 493 |
+
"n02951358": "canoe",
|
| 494 |
+
"n02951585": "can opener, tin opener",
|
| 495 |
+
"n02963159": "cardigan",
|
| 496 |
+
"n02965783": "car mirror",
|
| 497 |
+
"n02966193": "carousel, carrousel, merry-go-round, roundabout, whirligig",
|
| 498 |
+
"n02966687": "carpenter's kit, tool kit",
|
| 499 |
+
"n02971356": "carton",
|
| 500 |
+
"n02974003": "car wheel",
|
| 501 |
+
"n02977058": "cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM",
|
| 502 |
+
"n02978881": "cassette",
|
| 503 |
+
"n02979186": "cassette player",
|
| 504 |
+
"n02980441": "castle",
|
| 505 |
+
"n02981792": "catamaran",
|
| 506 |
+
"n02988304": "CD player",
|
| 507 |
+
"n02992211": "cello, violoncello",
|
| 508 |
+
"n02992529": "cellular telephone, cellular phone, cellphone, cell, mobile phone",
|
| 509 |
+
"n02999410": "chain",
|
| 510 |
+
"n03000134": "chainlink fence",
|
| 511 |
+
"n03000247": "chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour",
|
| 512 |
+
"n03000684": "chain saw, chainsaw",
|
| 513 |
+
"n03014705": "chest",
|
| 514 |
+
"n03016953": "chiffonier, commode",
|
| 515 |
+
"n03017168": "chime, bell, gong",
|
| 516 |
+
"n03018349": "china cabinet, china closet",
|
| 517 |
+
"n03026506": "Christmas stocking",
|
| 518 |
+
"n03028079": "church, church building",
|
| 519 |
+
"n03032252": "cinema, movie theater, movie theatre, movie house, picture palace",
|
| 520 |
+
"n03041632": "cleaver, meat cleaver, chopper",
|
| 521 |
+
"n03042490": "cliff dwelling",
|
| 522 |
+
"n03045698": "cloak",
|
| 523 |
+
"n03047690": "clog, geta, patten, sabot",
|
| 524 |
+
"n03062245": "cocktail shaker",
|
| 525 |
+
"n03063599": "coffee mug",
|
| 526 |
+
"n03063689": "coffeepot",
|
| 527 |
+
"n03065424": "coil, spiral, volute, whorl, helix",
|
| 528 |
+
"n03075370": "combination lock",
|
| 529 |
+
"n03085013": "computer keyboard, keypad",
|
| 530 |
+
"n03089624": "confectionery, confectionary, candy store",
|
| 531 |
+
"n03095699": "container ship, containership, container vessel",
|
| 532 |
+
"n03100240": "convertible",
|
| 533 |
+
"n03109150": "corkscrew, bottle screw",
|
| 534 |
+
"n03110669": "cornet, horn, trumpet, trump",
|
| 535 |
+
"n03124043": "cowboy boot",
|
| 536 |
+
"n03124170": "cowboy hat, ten-gallon hat",
|
| 537 |
+
"n03125729": "cradle",
|
| 538 |
+
"n03126707": "crane2",
|
| 539 |
+
"n03127747": "crash helmet",
|
| 540 |
+
"n03127925": "crate",
|
| 541 |
+
"n03131574": "crib, cot",
|
| 542 |
+
"n03133878": "Crock Pot",
|
| 543 |
+
"n03134739": "croquet ball",
|
| 544 |
+
"n03141823": "crutch",
|
| 545 |
+
"n03146219": "cuirass",
|
| 546 |
+
"n03160309": "dam, dike, dyke",
|
| 547 |
+
"n03179701": "desk",
|
| 548 |
+
"n03180011": "desktop computer",
|
| 549 |
+
"n03187595": "dial telephone, dial phone",
|
| 550 |
+
"n03188531": "diaper, nappy, napkin",
|
| 551 |
+
"n03196217": "digital clock",
|
| 552 |
+
"n03197337": "digital watch",
|
| 553 |
+
"n03201208": "dining table, board",
|
| 554 |
+
"n03207743": "dishrag, dishcloth",
|
| 555 |
+
"n03207941": "dishwasher, dish washer, dishwashing machine",
|
| 556 |
+
"n03208938": "disk brake, disc brake",
|
| 557 |
+
"n03216828": "dock, dockage, docking facility",
|
| 558 |
+
"n03218198": "dogsled, dog sled, dog sleigh",
|
| 559 |
+
"n03220513": "dome",
|
| 560 |
+
"n03223299": "doormat, welcome mat",
|
| 561 |
+
"n03240683": "drilling platform, offshore rig",
|
| 562 |
+
"n03249569": "drum, membranophone, tympan",
|
| 563 |
+
"n03250847": "drumstick",
|
| 564 |
+
"n03255030": "dumbbell",
|
| 565 |
+
"n03259280": "Dutch oven",
|
| 566 |
+
"n03271574": "electric fan, blower",
|
| 567 |
+
"n03272010": "electric guitar",
|
| 568 |
+
"n03272562": "electric locomotive",
|
| 569 |
+
"n03290653": "entertainment center",
|
| 570 |
+
"n03291819": "envelope",
|
| 571 |
+
"n03297495": "espresso maker",
|
| 572 |
+
"n03314780": "face powder",
|
| 573 |
+
"n03325584": "feather boa, boa",
|
| 574 |
+
"n03337140": "file, file cabinet, filing cabinet",
|
| 575 |
+
"n03344393": "fireboat",
|
| 576 |
+
"n03345487": "fire engine, fire truck",
|
| 577 |
+
"n03347037": "fire screen, fireguard",
|
| 578 |
+
"n03355925": "flagpole, flagstaff",
|
| 579 |
+
"n03372029": "flute, transverse flute",
|
| 580 |
+
"n03376595": "folding chair",
|
| 581 |
+
"n03379051": "football helmet",
|
| 582 |
+
"n03384352": "forklift",
|
| 583 |
+
"n03388043": "fountain",
|
| 584 |
+
"n03388183": "fountain pen",
|
| 585 |
+
"n03388549": "four-poster",
|
| 586 |
+
"n03393912": "freight car",
|
| 587 |
+
"n03394916": "French horn, horn",
|
| 588 |
+
"n03400231": "frying pan, frypan, skillet",
|
| 589 |
+
"n03404251": "fur coat",
|
| 590 |
+
"n03417042": "garbage truck, dustcart",
|
| 591 |
+
"n03424325": "gasmask, respirator, gas helmet",
|
| 592 |
+
"n03425413": "gas pump, gasoline pump, petrol pump, island dispenser",
|
| 593 |
+
"n03443371": "goblet",
|
| 594 |
+
"n03444034": "go-kart",
|
| 595 |
+
"n03445777": "golf ball",
|
| 596 |
+
"n03445924": "golfcart, golf cart",
|
| 597 |
+
"n03447447": "gondola",
|
| 598 |
+
"n03447721": "gong, tam-tam",
|
| 599 |
+
"n03450230": "gown",
|
| 600 |
+
"n03452741": "grand piano, grand",
|
| 601 |
+
"n03457902": "greenhouse, nursery, glasshouse",
|
| 602 |
+
"n03459775": "grille, radiator grille",
|
| 603 |
+
"n03461385": "grocery store, grocery, food market, market",
|
| 604 |
+
"n03467068": "guillotine",
|
| 605 |
+
"n03476684": "hair slide",
|
| 606 |
+
"n03476991": "hair spray",
|
| 607 |
+
"n03478589": "half track",
|
| 608 |
+
"n03481172": "hammer",
|
| 609 |
+
"n03482405": "hamper",
|
| 610 |
+
"n03483316": "hand blower, blow dryer, blow drier, hair dryer, hair drier",
|
| 611 |
+
"n03485407": "hand-held computer, hand-held microcomputer",
|
| 612 |
+
"n03485794": "handkerchief, hankie, hanky, hankey",
|
| 613 |
+
"n03492542": "hard disc, hard disk, fixed disk",
|
| 614 |
+
"n03494278": "harmonica, mouth organ, harp, mouth harp",
|
| 615 |
+
"n03495258": "harp",
|
| 616 |
+
"n03496892": "harvester, reaper",
|
| 617 |
+
"n03498962": "hatchet",
|
| 618 |
+
"n03527444": "holster",
|
| 619 |
+
"n03529860": "home theater, home theatre",
|
| 620 |
+
"n03530642": "honeycomb",
|
| 621 |
+
"n03532672": "hook, claw",
|
| 622 |
+
"n03534580": "hoopskirt, crinoline",
|
| 623 |
+
"n03535780": "horizontal bar, high bar",
|
| 624 |
+
"n03538406": "horse cart, horse-cart",
|
| 625 |
+
"n03544143": "hourglass",
|
| 626 |
+
"n03584254": "iPod",
|
| 627 |
+
"n03584829": "iron, smoothing iron",
|
| 628 |
+
"n03590841": "jack-o'-lantern",
|
| 629 |
+
"n03594734": "jean, blue jean, denim",
|
| 630 |
+
"n03594945": "jeep, landrover",
|
| 631 |
+
"n03595614": "jersey, T-shirt, tee shirt",
|
| 632 |
+
"n03598930": "jigsaw puzzle",
|
| 633 |
+
"n03599486": "jinrikisha, ricksha, rickshaw",
|
| 634 |
+
"n03602883": "joystick",
|
| 635 |
+
"n03617480": "kimono",
|
| 636 |
+
"n03623198": "knee pad",
|
| 637 |
+
"n03627232": "knot",
|
| 638 |
+
"n03630383": "lab coat, laboratory coat",
|
| 639 |
+
"n03633091": "ladle",
|
| 640 |
+
"n03637318": "lampshade, lamp shade",
|
| 641 |
+
"n03642806": "laptop, laptop computer",
|
| 642 |
+
"n03649909": "lawn mower, mower",
|
| 643 |
+
"n03657121": "lens cap, lens cover",
|
| 644 |
+
"n03658185": "letter opener, paper knife, paperknife",
|
| 645 |
+
"n03661043": "library",
|
| 646 |
+
"n03662601": "lifeboat",
|
| 647 |
+
"n03666591": "lighter, light, igniter, ignitor",
|
| 648 |
+
"n03670208": "limousine, limo",
|
| 649 |
+
"n03673027": "liner, ocean liner",
|
| 650 |
+
"n03676483": "lipstick, lip rouge",
|
| 651 |
+
"n03680355": "Loafer",
|
| 652 |
+
"n03690938": "lotion",
|
| 653 |
+
"n03691459": "loudspeaker, speaker, speaker unit, loudspeaker system, speaker system",
|
| 654 |
+
"n03692522": "loupe, jeweler's loupe",
|
| 655 |
+
"n03697007": "lumbermill, sawmill",
|
| 656 |
+
"n03706229": "magnetic compass",
|
| 657 |
+
"n03709823": "mailbag, postbag",
|
| 658 |
+
"n03710193": "mailbox, letter box",
|
| 659 |
+
"n03710637": "maillot",
|
| 660 |
+
"n03710721": "maillot, tank suit",
|
| 661 |
+
"n03717622": "manhole cover",
|
| 662 |
+
"n03720891": "maraca",
|
| 663 |
+
"n03721384": "marimba, xylophone",
|
| 664 |
+
"n03724870": "mask",
|
| 665 |
+
"n03729826": "matchstick",
|
| 666 |
+
"n03733131": "maypole",
|
| 667 |
+
"n03733281": "maze, labyrinth",
|
| 668 |
+
"n03733805": "measuring cup",
|
| 669 |
+
"n03742115": "medicine chest, medicine cabinet",
|
| 670 |
+
"n03743016": "megalith, megalithic structure",
|
| 671 |
+
"n03759954": "microphone, mike",
|
| 672 |
+
"n03761084": "microwave, microwave oven",
|
| 673 |
+
"n03763968": "military uniform",
|
| 674 |
+
"n03764736": "milk can",
|
| 675 |
+
"n03769881": "minibus",
|
| 676 |
+
"n03770439": "miniskirt, mini",
|
| 677 |
+
"n03770679": "minivan",
|
| 678 |
+
"n03773504": "missile",
|
| 679 |
+
"n03775071": "mitten",
|
| 680 |
+
"n03775546": "mixing bowl",
|
| 681 |
+
"n03776460": "mobile home, manufactured home",
|
| 682 |
+
"n03777568": "Model T",
|
| 683 |
+
"n03777754": "modem",
|
| 684 |
+
"n03781244": "monastery",
|
| 685 |
+
"n03782006": "monitor",
|
| 686 |
+
"n03785016": "moped",
|
| 687 |
+
"n03786901": "mortar",
|
| 688 |
+
"n03787032": "mortarboard",
|
| 689 |
+
"n03788195": "mosque",
|
| 690 |
+
"n03788365": "mosquito net",
|
| 691 |
+
"n03791053": "motor scooter, scooter",
|
| 692 |
+
"n03792782": "mountain bike, all-terrain bike, off-roader",
|
| 693 |
+
"n03792972": "mountain tent",
|
| 694 |
+
"n03793489": "mouse, computer mouse",
|
| 695 |
+
"n03794056": "mousetrap",
|
| 696 |
+
"n03796401": "moving van",
|
| 697 |
+
"n03803284": "muzzle",
|
| 698 |
+
"n03804744": "nail",
|
| 699 |
+
"n03814639": "neck brace",
|
| 700 |
+
"n03814906": "necklace",
|
| 701 |
+
"n03825788": "nipple",
|
| 702 |
+
"n03832673": "notebook, notebook computer",
|
| 703 |
+
"n03837869": "obelisk",
|
| 704 |
+
"n03838899": "oboe, hautboy, hautbois",
|
| 705 |
+
"n03840681": "ocarina, sweet potato",
|
| 706 |
+
"n03841143": "odometer, hodometer, mileometer, milometer",
|
| 707 |
+
"n03843555": "oil filter",
|
| 708 |
+
"n03854065": "organ, pipe organ",
|
| 709 |
+
"n03857828": "oscilloscope, scope, cathode-ray oscilloscope, CRO",
|
| 710 |
+
"n03866082": "overskirt",
|
| 711 |
+
"n03868242": "oxcart",
|
| 712 |
+
"n03868863": "oxygen mask",
|
| 713 |
+
"n03871628": "packet",
|
| 714 |
+
"n03873416": "paddle, boat paddle",
|
| 715 |
+
"n03874293": "paddlewheel, paddle wheel",
|
| 716 |
+
"n03874599": "padlock",
|
| 717 |
+
"n03876231": "paintbrush",
|
| 718 |
+
"n03877472": "pajama, pyjama, pj's, jammies",
|
| 719 |
+
"n03877845": "palace",
|
| 720 |
+
"n03884397": "panpipe, pandean pipe, syrinx",
|
| 721 |
+
"n03887697": "paper towel",
|
| 722 |
+
"n03888257": "parachute, chute",
|
| 723 |
+
"n03888605": "parallel bars, bars",
|
| 724 |
+
"n03891251": "park bench",
|
| 725 |
+
"n03891332": "parking meter",
|
| 726 |
+
"n03895866": "passenger car, coach, carriage",
|
| 727 |
+
"n03899768": "patio, terrace",
|
| 728 |
+
"n03902125": "pay-phone, pay-station",
|
| 729 |
+
"n03903868": "pedestal, plinth, footstall",
|
| 730 |
+
"n03908618": "pencil box, pencil case",
|
| 731 |
+
"n03908714": "pencil sharpener",
|
| 732 |
+
"n03916031": "perfume, essence",
|
| 733 |
+
"n03920288": "Petri dish",
|
| 734 |
+
"n03924679": "photocopier",
|
| 735 |
+
"n03929660": "pick, plectrum, plectron",
|
| 736 |
+
"n03929855": "pickelhaube",
|
| 737 |
+
"n03930313": "picket fence, paling",
|
| 738 |
+
"n03930630": "pickup, pickup truck",
|
| 739 |
+
"n03933933": "pier",
|
| 740 |
+
"n03935335": "piggy bank, penny bank",
|
| 741 |
+
"n03937543": "pill bottle",
|
| 742 |
+
"n03938244": "pillow",
|
| 743 |
+
"n03942813": "ping-pong ball",
|
| 744 |
+
"n03944341": "pinwheel",
|
| 745 |
+
"n03947888": "pirate, pirate ship",
|
| 746 |
+
"n03950228": "pitcher, ewer",
|
| 747 |
+
"n03954731": "plane, carpenter's plane, woodworking plane",
|
| 748 |
+
"n03956157": "planetarium",
|
| 749 |
+
"n03958227": "plastic bag",
|
| 750 |
+
"n03961711": "plate rack",
|
| 751 |
+
"n03967562": "plow, plough",
|
| 752 |
+
"n03970156": "plunger, plumber's helper",
|
| 753 |
+
"n03976467": "Polaroid camera, Polaroid Land camera",
|
| 754 |
+
"n03976657": "pole",
|
| 755 |
+
"n03977966": "police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria",
|
| 756 |
+
"n03980874": "poncho",
|
| 757 |
+
"n03982430": "pool table, billiard table, snooker table",
|
| 758 |
+
"n03983396": "pop bottle, soda bottle",
|
| 759 |
+
"n03991062": "pot, flowerpot",
|
| 760 |
+
"n03992509": "potter's wheel",
|
| 761 |
+
"n03995372": "power drill",
|
| 762 |
+
"n03998194": "prayer rug, prayer mat",
|
| 763 |
+
"n04004767": "printer",
|
| 764 |
+
"n04005630": "prison, prison house",
|
| 765 |
+
"n04008634": "projectile, missile",
|
| 766 |
+
"n04009552": "projector",
|
| 767 |
+
"n04019541": "puck, hockey puck",
|
| 768 |
+
"n04023962": "punching bag, punch bag, punching ball, punchball",
|
| 769 |
+
"n04026417": "purse",
|
| 770 |
+
"n04033901": "quill, quill pen",
|
| 771 |
+
"n04033995": "quilt, comforter, comfort, puff",
|
| 772 |
+
"n04037443": "racer, race car, racing car",
|
| 773 |
+
"n04039381": "racket, racquet",
|
| 774 |
+
"n04040759": "radiator",
|
| 775 |
+
"n04041544": "radio, wireless",
|
| 776 |
+
"n04044716": "radio telescope, radio reflector",
|
| 777 |
+
"n04049303": "rain barrel",
|
| 778 |
+
"n04065272": "recreational vehicle, RV, R.V.",
|
| 779 |
+
"n04067472": "reel",
|
| 780 |
+
"n04069434": "reflex camera",
|
| 781 |
+
"n04070727": "refrigerator, icebox",
|
| 782 |
+
"n04074963": "remote control, remote",
|
| 783 |
+
"n04081281": "restaurant, eating house, eating place, eatery",
|
| 784 |
+
"n04086273": "revolver, six-gun, six-shooter",
|
| 785 |
+
"n04090263": "rifle",
|
| 786 |
+
"n04099969": "rocking chair, rocker",
|
| 787 |
+
"n04111531": "rotisserie",
|
| 788 |
+
"n04116512": "rubber eraser, rubber, pencil eraser",
|
| 789 |
+
"n04118538": "rugby ball",
|
| 790 |
+
"n04118776": "rule, ruler",
|
| 791 |
+
"n04120489": "running shoe",
|
| 792 |
+
"n04125021": "safe",
|
| 793 |
+
"n04127249": "safety pin",
|
| 794 |
+
"n04131690": "saltshaker, salt shaker",
|
| 795 |
+
"n04133789": "sandal",
|
| 796 |
+
"n04136333": "sarong",
|
| 797 |
+
"n04141076": "sax, saxophone",
|
| 798 |
+
"n04141327": "scabbard",
|
| 799 |
+
"n04141975": "scale, weighing machine",
|
| 800 |
+
"n04146614": "school bus",
|
| 801 |
+
"n04147183": "schooner",
|
| 802 |
+
"n04149813": "scoreboard",
|
| 803 |
+
"n04152593": "screen, CRT screen",
|
| 804 |
+
"n04153751": "screw",
|
| 805 |
+
"n04154565": "screwdriver",
|
| 806 |
+
"n04162706": "seat belt, seatbelt",
|
| 807 |
+
"n04179913": "sewing machine",
|
| 808 |
+
"n04192698": "shield, buckler",
|
| 809 |
+
"n04200800": "shoe shop, shoe-shop, shoe store",
|
| 810 |
+
"n04201297": "shoji",
|
| 811 |
+
"n04204238": "shopping basket",
|
| 812 |
+
"n04204347": "shopping cart",
|
| 813 |
+
"n04208210": "shovel",
|
| 814 |
+
"n04209133": "shower cap",
|
| 815 |
+
"n04209239": "shower curtain",
|
| 816 |
+
"n04228054": "ski",
|
| 817 |
+
"n04229816": "ski mask",
|
| 818 |
+
"n04235860": "sleeping bag",
|
| 819 |
+
"n04238763": "slide rule, slipstick",
|
| 820 |
+
"n04239074": "sliding door",
|
| 821 |
+
"n04243546": "slot, one-armed bandit",
|
| 822 |
+
"n04251144": "snorkel",
|
| 823 |
+
"n04252077": "snowmobile",
|
| 824 |
+
"n04252225": "snowplow, snowplough",
|
| 825 |
+
"n04254120": "soap dispenser",
|
| 826 |
+
"n04254680": "soccer ball",
|
| 827 |
+
"n04254777": "sock",
|
| 828 |
+
"n04258138": "solar dish, solar collector, solar furnace",
|
| 829 |
+
"n04259630": "sombrero",
|
| 830 |
+
"n04263257": "soup bowl",
|
| 831 |
+
"n04264628": "space bar",
|
| 832 |
+
"n04265275": "space heater",
|
| 833 |
+
"n04266014": "space shuttle",
|
| 834 |
+
"n04270147": "spatula",
|
| 835 |
+
"n04273569": "speedboat",
|
| 836 |
+
"n04275548": "spider web, spider's web",
|
| 837 |
+
"n04277352": "spindle",
|
| 838 |
+
"n04285008": "sports car, sport car",
|
| 839 |
+
"n04286575": "spotlight, spot",
|
| 840 |
+
"n04296562": "stage",
|
| 841 |
+
"n04310018": "steam locomotive",
|
| 842 |
+
"n04311004": "steel arch bridge",
|
| 843 |
+
"n04311174": "steel drum",
|
| 844 |
+
"n04317175": "stethoscope",
|
| 845 |
+
"n04325704": "stole",
|
| 846 |
+
"n04326547": "stone wall",
|
| 847 |
+
"n04328186": "stopwatch, stop watch",
|
| 848 |
+
"n04330267": "stove",
|
| 849 |
+
"n04332243": "strainer",
|
| 850 |
+
"n04335435": "streetcar, tram, tramcar, trolley, trolley car",
|
| 851 |
+
"n04336792": "stretcher",
|
| 852 |
+
"n04344873": "studio couch, day bed",
|
| 853 |
+
"n04346328": "stupa, tope",
|
| 854 |
+
"n04347754": "submarine, pigboat, sub, U-boat",
|
| 855 |
+
"n04350905": "suit, suit of clothes",
|
| 856 |
+
"n04355338": "sundial",
|
| 857 |
+
"n04355933": "sunglass",
|
| 858 |
+
"n04356056": "sunglasses, dark glasses, shades",
|
| 859 |
+
"n04357314": "sunscreen, sunblock, sun blocker",
|
| 860 |
+
"n04366367": "suspension bridge",
|
| 861 |
+
"n04367480": "swab, swob, mop",
|
| 862 |
+
"n04370456": "sweatshirt",
|
| 863 |
+
"n04371430": "swimming trunks, bathing trunks",
|
| 864 |
+
"n04371774": "swing",
|
| 865 |
+
"n04372370": "switch, electric switch, electrical switch",
|
| 866 |
+
"n04376876": "syringe",
|
| 867 |
+
"n04380533": "table lamp",
|
| 868 |
+
"n04389033": "tank, army tank, armored combat vehicle, armoured combat vehicle",
|
| 869 |
+
"n04392985": "tape player",
|
| 870 |
+
"n04398044": "teapot",
|
| 871 |
+
"n04399382": "teddy, teddy bear",
|
| 872 |
+
"n04404412": "television, television system",
|
| 873 |
+
"n04409515": "tennis ball",
|
| 874 |
+
"n04417672": "thatch, thatched roof",
|
| 875 |
+
"n04418357": "theater curtain, theatre curtain",
|
| 876 |
+
"n04423845": "thimble",
|
| 877 |
+
"n04428191": "thresher, thrasher, threshing machine",
|
| 878 |
+
"n04429376": "throne",
|
| 879 |
+
"n04435653": "tile roof",
|
| 880 |
+
"n04442312": "toaster",
|
| 881 |
+
"n04443257": "tobacco shop, tobacconist shop, tobacconist",
|
| 882 |
+
"n04447861": "toilet seat",
|
| 883 |
+
"n04456115": "torch",
|
| 884 |
+
"n04458633": "totem pole",
|
| 885 |
+
"n04461696": "tow truck, tow car, wrecker",
|
| 886 |
+
"n04462240": "toyshop",
|
| 887 |
+
"n04465501": "tractor",
|
| 888 |
+
"n04467665": "trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi",
|
| 889 |
+
"n04476259": "tray",
|
| 890 |
+
"n04479046": "trench coat",
|
| 891 |
+
"n04482393": "tricycle, trike, velocipede",
|
| 892 |
+
"n04483307": "trimaran",
|
| 893 |
+
"n04485082": "tripod",
|
| 894 |
+
"n04486054": "triumphal arch",
|
| 895 |
+
"n04487081": "trolleybus, trolley coach, trackless trolley",
|
| 896 |
+
"n04487394": "trombone",
|
| 897 |
+
"n04493381": "tub, vat",
|
| 898 |
+
"n04501370": "turnstile",
|
| 899 |
+
"n04505470": "typewriter keyboard",
|
| 900 |
+
"n04507155": "umbrella",
|
| 901 |
+
"n04509417": "unicycle, monocycle",
|
| 902 |
+
"n04515003": "upright, upright piano",
|
| 903 |
+
"n04517823": "vacuum, vacuum cleaner",
|
| 904 |
+
"n04522168": "vase",
|
| 905 |
+
"n04523525": "vault",
|
| 906 |
+
"n04525038": "velvet",
|
| 907 |
+
"n04525305": "vending machine",
|
| 908 |
+
"n04532106": "vestment",
|
| 909 |
+
"n04532670": "viaduct",
|
| 910 |
+
"n04536866": "violin, fiddle",
|
| 911 |
+
"n04540053": "volleyball",
|
| 912 |
+
"n04542943": "waffle iron",
|
| 913 |
+
"n04548280": "wall clock",
|
| 914 |
+
"n04548362": "wallet, billfold, notecase, pocketbook",
|
| 915 |
+
"n04550184": "wardrobe, closet, press",
|
| 916 |
+
"n04552348": "warplane, military plane",
|
| 917 |
+
"n04553703": "washbasin, handbasin, washbowl, lavabo, wash-hand basin",
|
| 918 |
+
"n04554684": "washer, automatic washer, washing machine",
|
| 919 |
+
"n04557648": "water bottle",
|
| 920 |
+
"n04560804": "water jug",
|
| 921 |
+
"n04562935": "water tower",
|
| 922 |
+
"n04579145": "whiskey jug",
|
| 923 |
+
"n04579432": "whistle",
|
| 924 |
+
"n04584207": "wig",
|
| 925 |
+
"n04589890": "window screen",
|
| 926 |
+
"n04590129": "window shade",
|
| 927 |
+
"n04591157": "Windsor tie",
|
| 928 |
+
"n04591713": "wine bottle",
|
| 929 |
+
"n04592741": "wing",
|
| 930 |
+
"n04596742": "wok",
|
| 931 |
+
"n04597913": "wooden spoon",
|
| 932 |
+
"n04599235": "wool, woolen, woollen",
|
| 933 |
+
"n04604644": "worm fence, snake fence, snake-rail fence, Virginia fence",
|
| 934 |
+
"n04606251": "wreck",
|
| 935 |
+
"n04612504": "yawl",
|
| 936 |
+
"n04613696": "yurt",
|
| 937 |
+
"n06359193": "web site, website, internet site, site",
|
| 938 |
+
"n06596364": "comic book",
|
| 939 |
+
"n06785654": "crossword puzzle, crossword",
|
| 940 |
+
"n06794110": "street sign",
|
| 941 |
+
"n06874185": "traffic light, traffic signal, stoplight",
|
| 942 |
+
"n07248320": "book jacket, dust cover, dust jacket, dust wrapper",
|
| 943 |
+
"n07565083": "menu",
|
| 944 |
+
"n07579787": "plate",
|
| 945 |
+
"n07583066": "guacamole",
|
| 946 |
+
"n07584110": "consomme",
|
| 947 |
+
"n07590611": "hot pot, hotpot",
|
| 948 |
+
"n07613480": "trifle",
|
| 949 |
+
"n07614500": "ice cream, icecream",
|
| 950 |
+
"n07615774": "ice lolly, lolly, lollipop, popsicle",
|
| 951 |
+
"n07684084": "French loaf",
|
| 952 |
+
"n07693725": "bagel, beigel",
|
| 953 |
+
"n07695742": "pretzel",
|
| 954 |
+
"n07697313": "cheeseburger",
|
| 955 |
+
"n07697537": "hotdog, hot dog, red hot",
|
| 956 |
+
"n07711569": "mashed potato",
|
| 957 |
+
"n07714571": "head cabbage",
|
| 958 |
+
"n07714990": "broccoli",
|
| 959 |
+
"n07715103": "cauliflower",
|
| 960 |
+
"n07716358": "zucchini, courgette",
|
| 961 |
+
"n07716906": "spaghetti squash",
|
| 962 |
+
"n07717410": "acorn squash",
|
| 963 |
+
"n07717556": "butternut squash",
|
| 964 |
+
"n07718472": "cucumber, cuke",
|
| 965 |
+
"n07718747": "artichoke, globe artichoke",
|
| 966 |
+
"n07720875": "bell pepper",
|
| 967 |
+
"n07730033": "cardoon",
|
| 968 |
+
"n07734744": "mushroom",
|
| 969 |
+
"n07742313": "Granny Smith",
|
| 970 |
+
"n07745940": "strawberry",
|
| 971 |
+
"n07747607": "orange",
|
| 972 |
+
"n07749582": "lemon",
|
| 973 |
+
"n07753113": "fig",
|
| 974 |
+
"n07753275": "pineapple, ananas",
|
| 975 |
+
"n07753592": "banana",
|
| 976 |
+
"n07754684": "jackfruit, jak, jack",
|
| 977 |
+
"n07760859": "custard apple",
|
| 978 |
+
"n07768694": "pomegranate",
|
| 979 |
+
"n07802026": "hay",
|
| 980 |
+
"n07831146": "carbonara",
|
| 981 |
+
"n07836838": "chocolate sauce, chocolate syrup",
|
| 982 |
+
"n07860988": "dough",
|
| 983 |
+
"n07871810": "meat loaf, meatloaf",
|
| 984 |
+
"n07873807": "pizza, pizza pie",
|
| 985 |
+
"n07875152": "potpie",
|
| 986 |
+
"n07880968": "burrito",
|
| 987 |
+
"n07892512": "red wine",
|
| 988 |
+
"n07920052": "espresso",
|
| 989 |
+
"n07930864": "cup",
|
| 990 |
+
"n07932039": "eggnog",
|
| 991 |
+
"n09193705": "alp",
|
| 992 |
+
"n09229709": "bubble",
|
| 993 |
+
"n09246464": "cliff, drop, drop-off",
|
| 994 |
+
"n09256479": "coral reef",
|
| 995 |
+
"n09288635": "geyser",
|
| 996 |
+
"n09332890": "lakeside, lakeshore",
|
| 997 |
+
"n09399592": "promontory, headland, head, foreland",
|
| 998 |
+
"n09421951": "sandbar, sand bar",
|
| 999 |
+
"n09428293": "seashore, coast, seacoast, sea-coast",
|
| 1000 |
+
"n09468604": "valley, vale",
|
| 1001 |
+
"n09472597": "volcano",
|
| 1002 |
+
"n09835506": "ballplayer, baseball player",
|
| 1003 |
+
"n10148035": "groom, bridegroom",
|
| 1004 |
+
"n10565667": "scuba diver",
|
| 1005 |
+
"n11879895": "rapeseed",
|
| 1006 |
+
"n11939491": "daisy",
|
| 1007 |
+
"n12057211": "yellow lady's slipper, yellow lady-slipper, Cypripedium calceolus, Cypripedium parviflorum",
|
| 1008 |
+
"n12144580": "corn",
|
| 1009 |
+
"n12267677": "acorn",
|
| 1010 |
+
"n12620546": "hip, rose hip, rosehip",
|
| 1011 |
+
"n12768682": "buckeye, horse chestnut, conker",
|
| 1012 |
+
"n12985857": "coral fungus",
|
| 1013 |
+
"n12998815": "agaric",
|
| 1014 |
+
"n13037406": "gyromitra",
|
| 1015 |
+
"n13040303": "stinkhorn, carrion fungus",
|
| 1016 |
+
"n13044778": "earthstar",
|
| 1017 |
+
"n13052670": "hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa",
|
| 1018 |
+
"n13054560": "bolete",
|
| 1019 |
+
"n13133613": "ear, spike, capitulum",
|
| 1020 |
+
"n15075141": "toilet tissue, toilet paper, bathroom tissue",
|
| 1021 |
+
}
|
| 1022 |
+
)
|