Push model using huggingface_hub.
Browse files- README.md +3 -76
- config.json +98 -98
README.md
CHANGED
@@ -2,81 +2,8 @@
|
|
2 |
tags:
|
3 |
- model_hub_mixin
|
4 |
- pytorch_model_hub_mixin
|
5 |
-
license: mit
|
6 |
-
base_model:
|
7 |
-
- microsoft/swin-base-patch4-window7-224
|
8 |
-
pipeline_tag: image-feature-extraction
|
9 |
---
|
10 |
|
11 |
-
This
|
12 |
-
|
13 |
-
|
14 |
-
You can find details of model in this github repo -> [fashion-visual-search](https://github.com/yainage90/fashion-visual-search)
|
15 |
-
|
16 |
-
# 1. Model Architecture
|
17 |
-
|
18 |
-
I used [microsoft/swin-base-patch4-window7-224](https://huggingface.co/microsoft/swin-base-patch4-window7-224) for base image encoder model. Just added a 128 size fully connected layer to lower embedding size.
|
19 |
-
The dataset used anchor (product areas detected from posts) - positive (product thumbnail) image pairs. Within each batch, all samples except one's own positive were used as negative samples, training to minimize the distance between anchor-positive pairs while maximizing the distance between anchor-negative pairs. This method is known as contrastive learning, which is the training method used by OpenAI's CLIP model.
|
20 |
-
Initially, anchor - positive - negative pairs were explicitly constructed in a 1:1:1 ratio using triplet loss, but training with in-batch negative sampling and contrastive loss showed much better performance as it allowed learning from more negative samples.
|
21 |
-
|
22 |
-
<img src="image_encoder.png" width="500" alt="image_encoder">
|
23 |
-
|
24 |
-
<img src="contrastive_learning.png" width="500" alt="contrastive_learning">
|
25 |
-
|
26 |
-
|
27 |
-
# 2. Training dataset
|
28 |
-
|
29 |
-
User posting images from onthelook and kream were crawled and preprocessed. First, raw data of image-product thumbnail combinations from posts were collected. Then, object detection was performed on posting images, and category classification was performed on product thumbnails to pair images of the same category together. For thumbnail category classification, a trained category classifier was used. Finally, about 290,000 anchor-positive image pairs were created for 6 categories: tops, bottoms, outer, shoes, bags, and hats.
|
30 |
-
Finally, approximately 290,000 anchor-positive image pairs were created for 6 categories: tops, bottoms, outer, shoes, bags, and hats.
|
31 |
-
|
32 |
-
<img src="data_sample.png" width="300" alt="data sample">
|
33 |
-
|
34 |
-
|
35 |
-
# 3. Usage
|
36 |
-
|
37 |
-
```python
|
38 |
-
from PIL import Image
|
39 |
-
import torch
|
40 |
-
import torch.nn as nn
|
41 |
-
import torch.nn.functional as F
|
42 |
-
import torchvision.transforms as v2
|
43 |
-
from transformers import AutoImageProcessor, SwinModel, SwinConfig
|
44 |
-
from huggingface_hub import PyTorchModelHubMixin
|
45 |
-
|
46 |
-
device = torch.device('cuda') if torch.cuda.is_available() else torch.device('cpu')
|
47 |
-
|
48 |
-
ckpt = "yainage90/fashion-image-feature-extractor"
|
49 |
-
encoder_config = SwinConfig.from_pretrained(ckpt)
|
50 |
-
encoder_image_processor = AutoImageProcessor.from_pretrained(ckpt)
|
51 |
-
|
52 |
-
class ImageEncoder(nn.Module, PyTorchModelHubMixin):
|
53 |
-
def __init__(self):
|
54 |
-
super(ImageEncoder, self).__init__()
|
55 |
-
self.swin = SwinModel(config=encoder_config)
|
56 |
-
self.embedding_layer = nn.Linear(encoder_config.hidden_size, 128)
|
57 |
-
|
58 |
-
def forward(self, image_tensor):
|
59 |
-
features = self.swin(image_tensor).pooler_output
|
60 |
-
embeddings = self.embedding_layer(features)
|
61 |
-
embeddings = F.normalize(embeddings, p=2, dim=1)
|
62 |
-
|
63 |
-
return embeddings
|
64 |
-
|
65 |
-
encoder = ImageEncoder().from_pretrained('yainage90/fashion-image-feature-extractor').to(device)
|
66 |
-
|
67 |
-
transform = v2.Compose([
|
68 |
-
v2.Resize((encoder_config.image_size, encoder_config.image_size)),
|
69 |
-
v2.ToTensor(),
|
70 |
-
v2.Normalize(mean=encoder_image_processor.image_mean, std=encoder_image_processor.image_std),
|
71 |
-
])
|
72 |
-
|
73 |
-
image = Image.open('<path/to/image>').convert('RGB')
|
74 |
-
image = transform(image)
|
75 |
-
with torch.no_grad():
|
76 |
-
embedding = encoder(image.unsqueeze(0).to(device)).cpu().numpy()
|
77 |
-
```
|
78 |
-
|
79 |
-
<img src="detection_image1.png" width="500" alt="detection_image1">
|
80 |
-
<img src="result_image1.png" width="700" alt="result_image1">
|
81 |
-
<img src="detection_image2.png" width="500" alt="detection_image2">
|
82 |
-
<img src="result_image2.png" width="700" alt="result_image2">
|
|
|
2 |
tags:
|
3 |
- model_hub_mixin
|
4 |
- pytorch_model_hub_mixin
|
|
|
|
|
|
|
|
|
5 |
---
|
6 |
|
7 |
+
This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
|
8 |
+
- Library: [More Information Needed]
|
9 |
+
- Docs: [More Information Needed]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
config.json
CHANGED
@@ -19,104 +19,7 @@
|
|
19 |
"id2label": {
|
20 |
"0": "tench, Tinca tinca",
|
21 |
"1": "goldfish, Carassius auratus",
|
22 |
-
"2": "great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias",
|
23 |
-
"3": "tiger shark, Galeocerdo cuvieri",
|
24 |
-
"4": "hammerhead, hammerhead shark",
|
25 |
-
"5": "electric ray, crampfish, numbfish, torpedo",
|
26 |
-
"6": "stingray",
|
27 |
-
"7": "cock",
|
28 |
-
"8": "hen",
|
29 |
-
"9": "ostrich, Struthio camelus",
|
30 |
"10": "brambling, Fringilla montifringilla",
|
31 |
-
"11": "goldfinch, Carduelis carduelis",
|
32 |
-
"12": "house finch, linnet, Carpodacus mexicanus",
|
33 |
-
"13": "junco, snowbird",
|
34 |
-
"14": "indigo bunting, indigo finch, indigo bird, Passerina cyanea",
|
35 |
-
"15": "robin, American robin, Turdus migratorius",
|
36 |
-
"16": "bulbul",
|
37 |
-
"17": "jay",
|
38 |
-
"18": "magpie",
|
39 |
-
"19": "chickadee",
|
40 |
-
"20": "water ouzel, dipper",
|
41 |
-
"21": "kite",
|
42 |
-
"22": "bald eagle, American eagle, Haliaeetus leucocephalus",
|
43 |
-
"23": "vulture",
|
44 |
-
"24": "great grey owl, great gray owl, Strix nebulosa",
|
45 |
-
"25": "European fire salamander, Salamandra salamandra",
|
46 |
-
"26": "common newt, Triturus vulgaris",
|
47 |
-
"27": "eft",
|
48 |
-
"28": "spotted salamander, Ambystoma maculatum",
|
49 |
-
"29": "axolotl, mud puppy, Ambystoma mexicanum",
|
50 |
-
"30": "bullfrog, Rana catesbeiana",
|
51 |
-
"31": "tree frog, tree-frog",
|
52 |
-
"32": "tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui",
|
53 |
-
"33": "loggerhead, loggerhead turtle, Caretta caretta",
|
54 |
-
"34": "leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea",
|
55 |
-
"35": "mud turtle",
|
56 |
-
"36": "terrapin",
|
57 |
-
"37": "box turtle, box tortoise",
|
58 |
-
"38": "banded gecko",
|
59 |
-
"39": "common iguana, iguana, Iguana iguana",
|
60 |
-
"40": "American chameleon, anole, Anolis carolinensis",
|
61 |
-
"41": "whiptail, whiptail lizard",
|
62 |
-
"42": "agama",
|
63 |
-
"43": "frilled lizard, Chlamydosaurus kingi",
|
64 |
-
"44": "alligator lizard",
|
65 |
-
"45": "Gila monster, Heloderma suspectum",
|
66 |
-
"46": "green lizard, Lacerta viridis",
|
67 |
-
"47": "African chameleon, Chamaeleo chamaeleon",
|
68 |
-
"48": "Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis",
|
69 |
-
"49": "African crocodile, Nile crocodile, Crocodylus niloticus",
|
70 |
-
"50": "American alligator, Alligator mississipiensis",
|
71 |
-
"51": "triceratops",
|
72 |
-
"52": "thunder snake, worm snake, Carphophis amoenus",
|
73 |
-
"53": "ringneck snake, ring-necked snake, ring snake",
|
74 |
-
"54": "hognose snake, puff adder, sand viper",
|
75 |
-
"55": "green snake, grass snake",
|
76 |
-
"56": "king snake, kingsnake",
|
77 |
-
"57": "garter snake, grass snake",
|
78 |
-
"58": "water snake",
|
79 |
-
"59": "vine snake",
|
80 |
-
"60": "night snake, Hypsiglena torquata",
|
81 |
-
"61": "boa constrictor, Constrictor constrictor",
|
82 |
-
"62": "rock python, rock snake, Python sebae",
|
83 |
-
"63": "Indian cobra, Naja naja",
|
84 |
-
"64": "green mamba",
|
85 |
-
"65": "sea snake",
|
86 |
-
"66": "horned viper, cerastes, sand viper, horned asp, Cerastes cornutus",
|
87 |
-
"67": "diamondback, diamondback rattlesnake, Crotalus adamanteus",
|
88 |
-
"68": "sidewinder, horned rattlesnake, Crotalus cerastes",
|
89 |
-
"69": "trilobite",
|
90 |
-
"70": "harvestman, daddy longlegs, Phalangium opilio",
|
91 |
-
"71": "scorpion",
|
92 |
-
"72": "black and gold garden spider, Argiope aurantia",
|
93 |
-
"73": "barn spider, Araneus cavaticus",
|
94 |
-
"74": "garden spider, Aranea diademata",
|
95 |
-
"75": "black widow, Latrodectus mactans",
|
96 |
-
"76": "tarantula",
|
97 |
-
"77": "wolf spider, hunting spider",
|
98 |
-
"78": "tick",
|
99 |
-
"79": "centipede",
|
100 |
-
"80": "black grouse",
|
101 |
-
"81": "ptarmigan",
|
102 |
-
"82": "ruffed grouse, partridge, Bonasa umbellus",
|
103 |
-
"83": "prairie chicken, prairie grouse, prairie fowl",
|
104 |
-
"84": "peacock",
|
105 |
-
"85": "quail",
|
106 |
-
"86": "partridge",
|
107 |
-
"87": "African grey, African gray, Psittacus erithacus",
|
108 |
-
"88": "macaw",
|
109 |
-
"89": "sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita",
|
110 |
-
"90": "lorikeet",
|
111 |
-
"91": "coucal",
|
112 |
-
"92": "bee eater",
|
113 |
-
"93": "hornbill",
|
114 |
-
"94": "hummingbird",
|
115 |
-
"95": "jacamar",
|
116 |
-
"96": "toucan",
|
117 |
-
"97": "drake",
|
118 |
-
"98": "red-breasted merganser, Mergus serrator",
|
119 |
-
"99": "goose",
|
120 |
"100": "black swan, Cygnus atratus",
|
121 |
"101": "tusker",
|
122 |
"102": "echidna, spiny anteater, anteater",
|
@@ -127,6 +30,7 @@
|
|
127 |
"107": "jellyfish",
|
128 |
"108": "sea anemone, anemone",
|
129 |
"109": "brain coral",
|
|
|
130 |
"110": "flatworm, platyhelminth",
|
131 |
"111": "nematode, nematode worm, roundworm",
|
132 |
"112": "conch",
|
@@ -137,6 +41,7 @@
|
|
137 |
"117": "chambered nautilus, pearly nautilus, nautilus",
|
138 |
"118": "Dungeness crab, Cancer magister",
|
139 |
"119": "rock crab, Cancer irroratus",
|
|
|
140 |
"120": "fiddler crab",
|
141 |
"121": "king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica",
|
142 |
"122": "American lobster, Northern lobster, Maine lobster, Homarus americanus",
|
@@ -147,6 +52,7 @@
|
|
147 |
"127": "white stork, Ciconia ciconia",
|
148 |
"128": "black stork, Ciconia nigra",
|
149 |
"129": "spoonbill",
|
|
|
150 |
"130": "flamingo",
|
151 |
"131": "little blue heron, Egretta caerulea",
|
152 |
"132": "American egret, great white heron, Egretta albus",
|
@@ -157,6 +63,7 @@
|
|
157 |
"137": "American coot, marsh hen, mud hen, water hen, Fulica americana",
|
158 |
"138": "bustard",
|
159 |
"139": "ruddy turnstone, Arenaria interpres",
|
|
|
160 |
"140": "red-backed sandpiper, dunlin, Erolia alpina",
|
161 |
"141": "redshank, Tringa totanus",
|
162 |
"142": "dowitcher",
|
@@ -167,6 +74,7 @@
|
|
167 |
"147": "grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus",
|
168 |
"148": "killer whale, killer, orca, grampus, sea wolf, Orcinus orca",
|
169 |
"149": "dugong, Dugong dugon",
|
|
|
170 |
"150": "sea lion",
|
171 |
"151": "Chihuahua",
|
172 |
"152": "Japanese spaniel",
|
@@ -177,6 +85,7 @@
|
|
177 |
"157": "papillon",
|
178 |
"158": "toy terrier",
|
179 |
"159": "Rhodesian ridgeback",
|
|
|
180 |
"160": "Afghan hound, Afghan",
|
181 |
"161": "basset, basset hound",
|
182 |
"162": "beagle",
|
@@ -187,6 +96,7 @@
|
|
187 |
"167": "English foxhound",
|
188 |
"168": "redbone",
|
189 |
"169": "borzoi, Russian wolfhound",
|
|
|
190 |
"170": "Irish wolfhound",
|
191 |
"171": "Italian greyhound",
|
192 |
"172": "whippet",
|
@@ -197,6 +107,7 @@
|
|
197 |
"177": "Scottish deerhound, deerhound",
|
198 |
"178": "Weimaraner",
|
199 |
"179": "Staffordshire bullterrier, Staffordshire bull terrier",
|
|
|
200 |
"180": "American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier",
|
201 |
"181": "Bedlington terrier",
|
202 |
"182": "Border terrier",
|
@@ -207,6 +118,7 @@
|
|
207 |
"187": "Yorkshire terrier",
|
208 |
"188": "wire-haired fox terrier",
|
209 |
"189": "Lakeland terrier",
|
|
|
210 |
"190": "Sealyham terrier, Sealyham",
|
211 |
"191": "Airedale, Airedale terrier",
|
212 |
"192": "cairn, cairn terrier",
|
@@ -217,6 +129,8 @@
|
|
217 |
"197": "giant schnauzer",
|
218 |
"198": "standard schnauzer",
|
219 |
"199": "Scotch terrier, Scottish terrier, Scottie",
|
|
|
|
|
220 |
"200": "Tibetan terrier, chrysanthemum dog",
|
221 |
"201": "silky terrier, Sydney silky",
|
222 |
"202": "soft-coated wheaten terrier",
|
@@ -227,6 +141,7 @@
|
|
227 |
"207": "golden retriever",
|
228 |
"208": "Labrador retriever",
|
229 |
"209": "Chesapeake Bay retriever",
|
|
|
230 |
"210": "German short-haired pointer",
|
231 |
"211": "vizsla, Hungarian pointer",
|
232 |
"212": "English setter",
|
@@ -237,6 +152,7 @@
|
|
237 |
"217": "English springer, English springer spaniel",
|
238 |
"218": "Welsh springer spaniel",
|
239 |
"219": "cocker spaniel, English cocker spaniel, cocker",
|
|
|
240 |
"220": "Sussex spaniel",
|
241 |
"221": "Irish water spaniel",
|
242 |
"222": "kuvasz",
|
@@ -247,6 +163,7 @@
|
|
247 |
"227": "kelpie",
|
248 |
"228": "komondor",
|
249 |
"229": "Old English sheepdog, bobtail",
|
|
|
250 |
"230": "Shetland sheepdog, Shetland sheep dog, Shetland",
|
251 |
"231": "collie",
|
252 |
"232": "Border collie",
|
@@ -257,6 +174,7 @@
|
|
257 |
"237": "miniature pinscher",
|
258 |
"238": "Greater Swiss Mountain dog",
|
259 |
"239": "Bernese mountain dog",
|
|
|
260 |
"240": "Appenzeller",
|
261 |
"241": "EntleBucher",
|
262 |
"242": "boxer",
|
@@ -267,6 +185,7 @@
|
|
267 |
"247": "Saint Bernard, St Bernard",
|
268 |
"248": "Eskimo dog, husky",
|
269 |
"249": "malamute, malemute, Alaskan malamute",
|
|
|
270 |
"250": "Siberian husky",
|
271 |
"251": "dalmatian, coach dog, carriage dog",
|
272 |
"252": "affenpinscher, monkey pinscher, monkey dog",
|
@@ -277,6 +196,7 @@
|
|
277 |
"257": "Great Pyrenees",
|
278 |
"258": "Samoyed, Samoyede",
|
279 |
"259": "Pomeranian",
|
|
|
280 |
"260": "chow, chow chow",
|
281 |
"261": "keeshond",
|
282 |
"262": "Brabancon griffon",
|
@@ -287,6 +207,7 @@
|
|
287 |
"267": "standard poodle",
|
288 |
"268": "Mexican hairless",
|
289 |
"269": "timber wolf, grey wolf, gray wolf, Canis lupus",
|
|
|
290 |
"270": "white wolf, Arctic wolf, Canis lupus tundrarum",
|
291 |
"271": "red wolf, maned wolf, Canis rufus, Canis niger",
|
292 |
"272": "coyote, prairie wolf, brush wolf, Canis latrans",
|
@@ -297,6 +218,7 @@
|
|
297 |
"277": "red fox, Vulpes vulpes",
|
298 |
"278": "kit fox, Vulpes macrotis",
|
299 |
"279": "Arctic fox, white fox, Alopex lagopus",
|
|
|
300 |
"280": "grey fox, gray fox, Urocyon cinereoargenteus",
|
301 |
"281": "tabby, tabby cat",
|
302 |
"282": "tiger cat",
|
@@ -307,6 +229,7 @@
|
|
307 |
"287": "lynx, catamount",
|
308 |
"288": "leopard, Panthera pardus",
|
309 |
"289": "snow leopard, ounce, Panthera uncia",
|
|
|
310 |
"290": "jaguar, panther, Panthera onca, Felis onca",
|
311 |
"291": "lion, king of beasts, Panthera leo",
|
312 |
"292": "tiger, Panthera tigris",
|
@@ -317,6 +240,8 @@
|
|
317 |
"297": "sloth bear, Melursus ursinus, Ursus ursinus",
|
318 |
"298": "mongoose",
|
319 |
"299": "meerkat, mierkat",
|
|
|
|
|
320 |
"300": "tiger beetle",
|
321 |
"301": "ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle",
|
322 |
"302": "ground beetle, carabid beetle",
|
@@ -327,6 +252,7 @@
|
|
327 |
"307": "weevil",
|
328 |
"308": "fly",
|
329 |
"309": "bee",
|
|
|
330 |
"310": "ant, emmet, pismire",
|
331 |
"311": "grasshopper, hopper",
|
332 |
"312": "cricket",
|
@@ -337,6 +263,7 @@
|
|
337 |
"317": "leafhopper",
|
338 |
"318": "lacewing, lacewing fly",
|
339 |
"319": "dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk",
|
|
|
340 |
"320": "damselfly",
|
341 |
"321": "admiral",
|
342 |
"322": "ringlet, ringlet butterfly",
|
@@ -347,6 +274,7 @@
|
|
347 |
"327": "starfish, sea star",
|
348 |
"328": "sea urchin",
|
349 |
"329": "sea cucumber, holothurian",
|
|
|
350 |
"330": "wood rabbit, cottontail, cottontail rabbit",
|
351 |
"331": "hare",
|
352 |
"332": "Angora, Angora rabbit",
|
@@ -357,6 +285,7 @@
|
|
357 |
"337": "beaver",
|
358 |
"338": "guinea pig, Cavia cobaya",
|
359 |
"339": "sorrel",
|
|
|
360 |
"340": "zebra",
|
361 |
"341": "hog, pig, grunter, squealer, Sus scrofa",
|
362 |
"342": "wild boar, boar, Sus scrofa",
|
@@ -367,6 +296,7 @@
|
|
367 |
"347": "bison",
|
368 |
"348": "ram, tup",
|
369 |
"349": "bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis",
|
|
|
370 |
"350": "ibex, Capra ibex",
|
371 |
"351": "hartebeest",
|
372 |
"352": "impala, Aepyceros melampus",
|
@@ -377,6 +307,7 @@
|
|
377 |
"357": "mink",
|
378 |
"358": "polecat, fitch, foulmart, foumart, Mustela putorius",
|
379 |
"359": "black-footed ferret, ferret, Mustela nigripes",
|
|
|
380 |
"360": "otter",
|
381 |
"361": "skunk, polecat, wood pussy",
|
382 |
"362": "badger",
|
@@ -387,6 +318,7 @@
|
|
387 |
"367": "chimpanzee, chimp, Pan troglodytes",
|
388 |
"368": "gibbon, Hylobates lar",
|
389 |
"369": "siamang, Hylobates syndactylus, Symphalangus syndactylus",
|
|
|
390 |
"370": "guenon, guenon monkey",
|
391 |
"371": "patas, hussar monkey, Erythrocebus patas",
|
392 |
"372": "baboon",
|
@@ -397,6 +329,7 @@
|
|
397 |
"377": "marmoset",
|
398 |
"378": "capuchin, ringtail, Cebus capucinus",
|
399 |
"379": "howler monkey, howler",
|
|
|
400 |
"380": "titi, titi monkey",
|
401 |
"381": "spider monkey, Ateles geoffroyi",
|
402 |
"382": "squirrel monkey, Saimiri sciureus",
|
@@ -407,6 +340,7 @@
|
|
407 |
"387": "lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens",
|
408 |
"388": "giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca",
|
409 |
"389": "barracouta, snoek",
|
|
|
410 |
"390": "eel",
|
411 |
"391": "coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch",
|
412 |
"392": "rock beauty, Holocanthus tricolor",
|
@@ -417,6 +351,8 @@
|
|
417 |
"397": "puffer, pufferfish, blowfish, globefish",
|
418 |
"398": "abacus",
|
419 |
"399": "abaya",
|
|
|
|
|
420 |
"400": "academic gown, academic robe, judge's robe",
|
421 |
"401": "accordion, piano accordion, squeeze box",
|
422 |
"402": "acoustic guitar",
|
@@ -427,6 +363,7 @@
|
|
427 |
"407": "ambulance",
|
428 |
"408": "amphibian, amphibious vehicle",
|
429 |
"409": "analog clock",
|
|
|
430 |
"410": "apiary, bee house",
|
431 |
"411": "apron",
|
432 |
"412": "ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin",
|
@@ -437,6 +374,7 @@
|
|
437 |
"417": "balloon",
|
438 |
"418": "ballpoint, ballpoint pen, ballpen, Biro",
|
439 |
"419": "Band Aid",
|
|
|
440 |
"420": "banjo",
|
441 |
"421": "bannister, banister, balustrade, balusters, handrail",
|
442 |
"422": "barbell",
|
@@ -447,6 +385,7 @@
|
|
447 |
"427": "barrel, cask",
|
448 |
"428": "barrow, garden cart, lawn cart, wheelbarrow",
|
449 |
"429": "baseball",
|
|
|
450 |
"430": "basketball",
|
451 |
"431": "bassinet",
|
452 |
"432": "bassoon",
|
@@ -457,6 +396,7 @@
|
|
457 |
"437": "beacon, lighthouse, beacon light, pharos",
|
458 |
"438": "beaker",
|
459 |
"439": "bearskin, busby, shako",
|
|
|
460 |
"440": "beer bottle",
|
461 |
"441": "beer glass",
|
462 |
"442": "bell cote, bell cot",
|
@@ -467,6 +407,7 @@
|
|
467 |
"447": "binoculars, field glasses, opera glasses",
|
468 |
"448": "birdhouse",
|
469 |
"449": "boathouse",
|
|
|
470 |
"450": "bobsled, bobsleigh, bob",
|
471 |
"451": "bolo tie, bolo, bola tie, bola",
|
472 |
"452": "bonnet, poke bonnet",
|
@@ -477,6 +418,7 @@
|
|
477 |
"457": "bow tie, bow-tie, bowtie",
|
478 |
"458": "brass, memorial tablet, plaque",
|
479 |
"459": "brassiere, bra, bandeau",
|
|
|
480 |
"460": "breakwater, groin, groyne, mole, bulwark, seawall, jetty",
|
481 |
"461": "breastplate, aegis, egis",
|
482 |
"462": "broom",
|
@@ -487,6 +429,7 @@
|
|
487 |
"467": "butcher shop, meat market",
|
488 |
"468": "cab, hack, taxi, taxicab",
|
489 |
"469": "caldron, cauldron",
|
|
|
490 |
"470": "candle, taper, wax light",
|
491 |
"471": "cannon",
|
492 |
"472": "canoe",
|
@@ -497,6 +440,7 @@
|
|
497 |
"477": "carpenter's kit, tool kit",
|
498 |
"478": "carton",
|
499 |
"479": "car wheel",
|
|
|
500 |
"480": "cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM",
|
501 |
"481": "cassette",
|
502 |
"482": "cassette player",
|
@@ -507,6 +451,7 @@
|
|
507 |
"487": "cellular telephone, cellular phone, cellphone, cell, mobile phone",
|
508 |
"488": "chain",
|
509 |
"489": "chainlink fence",
|
|
|
510 |
"490": "chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour",
|
511 |
"491": "chain saw, chainsaw",
|
512 |
"492": "chest",
|
@@ -517,6 +462,8 @@
|
|
517 |
"497": "church, church building",
|
518 |
"498": "cinema, movie theater, movie theatre, movie house, picture palace",
|
519 |
"499": "cleaver, meat cleaver, chopper",
|
|
|
|
|
520 |
"500": "cliff dwelling",
|
521 |
"501": "cloak",
|
522 |
"502": "clog, geta, patten, sabot",
|
@@ -527,6 +474,7 @@
|
|
527 |
"507": "combination lock",
|
528 |
"508": "computer keyboard, keypad",
|
529 |
"509": "confectionery, confectionary, candy store",
|
|
|
530 |
"510": "container ship, containership, container vessel",
|
531 |
"511": "convertible",
|
532 |
"512": "corkscrew, bottle screw",
|
@@ -537,6 +485,7 @@
|
|
537 |
"517": "crane",
|
538 |
"518": "crash helmet",
|
539 |
"519": "crate",
|
|
|
540 |
"520": "crib, cot",
|
541 |
"521": "Crock Pot",
|
542 |
"522": "croquet ball",
|
@@ -547,6 +496,7 @@
|
|
547 |
"527": "desktop computer",
|
548 |
"528": "dial telephone, dial phone",
|
549 |
"529": "diaper, nappy, napkin",
|
|
|
550 |
"530": "digital clock",
|
551 |
"531": "digital watch",
|
552 |
"532": "dining table, board",
|
@@ -557,6 +507,7 @@
|
|
557 |
"537": "dogsled, dog sled, dog sleigh",
|
558 |
"538": "dome",
|
559 |
"539": "doormat, welcome mat",
|
|
|
560 |
"540": "drilling platform, offshore rig",
|
561 |
"541": "drum, membranophone, tympan",
|
562 |
"542": "drumstick",
|
@@ -567,6 +518,7 @@
|
|
567 |
"547": "electric locomotive",
|
568 |
"548": "entertainment center",
|
569 |
"549": "envelope",
|
|
|
570 |
"550": "espresso maker",
|
571 |
"551": "face powder",
|
572 |
"552": "feather boa, boa",
|
@@ -577,6 +529,7 @@
|
|
577 |
"557": "flagpole, flagstaff",
|
578 |
"558": "flute, transverse flute",
|
579 |
"559": "folding chair",
|
|
|
580 |
"560": "football helmet",
|
581 |
"561": "forklift",
|
582 |
"562": "fountain",
|
@@ -587,6 +540,7 @@
|
|
587 |
"567": "frying pan, frypan, skillet",
|
588 |
"568": "fur coat",
|
589 |
"569": "garbage truck, dustcart",
|
|
|
590 |
"570": "gasmask, respirator, gas helmet",
|
591 |
"571": "gas pump, gasoline pump, petrol pump, island dispenser",
|
592 |
"572": "goblet",
|
@@ -597,6 +551,7 @@
|
|
597 |
"577": "gong, tam-tam",
|
598 |
"578": "gown",
|
599 |
"579": "grand piano, grand",
|
|
|
600 |
"580": "greenhouse, nursery, glasshouse",
|
601 |
"581": "grille, radiator grille",
|
602 |
"582": "grocery store, grocery, food market, market",
|
@@ -607,6 +562,7 @@
|
|
607 |
"587": "hammer",
|
608 |
"588": "hamper",
|
609 |
"589": "hand blower, blow dryer, blow drier, hair dryer, hair drier",
|
|
|
610 |
"590": "hand-held computer, hand-held microcomputer",
|
611 |
"591": "handkerchief, hankie, hanky, hankey",
|
612 |
"592": "hard disc, hard disk, fixed disk",
|
@@ -617,6 +573,8 @@
|
|
617 |
"597": "holster",
|
618 |
"598": "home theater, home theatre",
|
619 |
"599": "honeycomb",
|
|
|
|
|
620 |
"600": "hook, claw",
|
621 |
"601": "hoopskirt, crinoline",
|
622 |
"602": "horizontal bar, high bar",
|
@@ -627,6 +585,7 @@
|
|
627 |
"607": "jack-o'-lantern",
|
628 |
"608": "jean, blue jean, denim",
|
629 |
"609": "jeep, landrover",
|
|
|
630 |
"610": "jersey, T-shirt, tee shirt",
|
631 |
"611": "jigsaw puzzle",
|
632 |
"612": "jinrikisha, ricksha, rickshaw",
|
@@ -637,6 +596,7 @@
|
|
637 |
"617": "lab coat, laboratory coat",
|
638 |
"618": "ladle",
|
639 |
"619": "lampshade, lamp shade",
|
|
|
640 |
"620": "laptop, laptop computer",
|
641 |
"621": "lawn mower, mower",
|
642 |
"622": "lens cap, lens cover",
|
@@ -647,6 +607,7 @@
|
|
647 |
"627": "limousine, limo",
|
648 |
"628": "liner, ocean liner",
|
649 |
"629": "lipstick, lip rouge",
|
|
|
650 |
"630": "Loafer",
|
651 |
"631": "lotion",
|
652 |
"632": "loudspeaker, speaker, speaker unit, loudspeaker system, speaker system",
|
@@ -657,6 +618,7 @@
|
|
657 |
"637": "mailbox, letter box",
|
658 |
"638": "maillot",
|
659 |
"639": "maillot, tank suit",
|
|
|
660 |
"640": "manhole cover",
|
661 |
"641": "maraca",
|
662 |
"642": "marimba, xylophone",
|
@@ -667,6 +629,7 @@
|
|
667 |
"647": "measuring cup",
|
668 |
"648": "medicine chest, medicine cabinet",
|
669 |
"649": "megalith, megalithic structure",
|
|
|
670 |
"650": "microphone, mike",
|
671 |
"651": "microwave, microwave oven",
|
672 |
"652": "military uniform",
|
@@ -677,6 +640,7 @@
|
|
677 |
"657": "missile",
|
678 |
"658": "mitten",
|
679 |
"659": "mixing bowl",
|
|
|
680 |
"660": "mobile home, manufactured home",
|
681 |
"661": "Model T",
|
682 |
"662": "modem",
|
@@ -687,6 +651,7 @@
|
|
687 |
"667": "mortarboard",
|
688 |
"668": "mosque",
|
689 |
"669": "mosquito net",
|
|
|
690 |
"670": "motor scooter, scooter",
|
691 |
"671": "mountain bike, all-terrain bike, off-roader",
|
692 |
"672": "mountain tent",
|
@@ -697,6 +662,7 @@
|
|
697 |
"677": "nail",
|
698 |
"678": "neck brace",
|
699 |
"679": "necklace",
|
|
|
700 |
"680": "nipple",
|
701 |
"681": "notebook, notebook computer",
|
702 |
"682": "obelisk",
|
@@ -707,6 +673,7 @@
|
|
707 |
"687": "organ, pipe organ",
|
708 |
"688": "oscilloscope, scope, cathode-ray oscilloscope, CRO",
|
709 |
"689": "overskirt",
|
|
|
710 |
"690": "oxcart",
|
711 |
"691": "oxygen mask",
|
712 |
"692": "packet",
|
@@ -717,6 +684,8 @@
|
|
717 |
"697": "pajama, pyjama, pj's, jammies",
|
718 |
"698": "palace",
|
719 |
"699": "panpipe, pandean pipe, syrinx",
|
|
|
|
|
720 |
"700": "paper towel",
|
721 |
"701": "parachute, chute",
|
722 |
"702": "parallel bars, bars",
|
@@ -727,6 +696,7 @@
|
|
727 |
"707": "pay-phone, pay-station",
|
728 |
"708": "pedestal, plinth, footstall",
|
729 |
"709": "pencil box, pencil case",
|
|
|
730 |
"710": "pencil sharpener",
|
731 |
"711": "perfume, essence",
|
732 |
"712": "Petri dish",
|
@@ -737,6 +707,7 @@
|
|
737 |
"717": "pickup, pickup truck",
|
738 |
"718": "pier",
|
739 |
"719": "piggy bank, penny bank",
|
|
|
740 |
"720": "pill bottle",
|
741 |
"721": "pillow",
|
742 |
"722": "ping-pong ball",
|
@@ -747,6 +718,7 @@
|
|
747 |
"727": "planetarium",
|
748 |
"728": "plastic bag",
|
749 |
"729": "plate rack",
|
|
|
750 |
"730": "plow, plough",
|
751 |
"731": "plunger, plumber's helper",
|
752 |
"732": "Polaroid camera, Polaroid Land camera",
|
@@ -757,6 +729,7 @@
|
|
757 |
"737": "pop bottle, soda bottle",
|
758 |
"738": "pot, flowerpot",
|
759 |
"739": "potter's wheel",
|
|
|
760 |
"740": "power drill",
|
761 |
"741": "prayer rug, prayer mat",
|
762 |
"742": "printer",
|
@@ -767,6 +740,7 @@
|
|
767 |
"747": "punching bag, punch bag, punching ball, punchball",
|
768 |
"748": "purse",
|
769 |
"749": "quill, quill pen",
|
|
|
770 |
"750": "quilt, comforter, comfort, puff",
|
771 |
"751": "racer, race car, racing car",
|
772 |
"752": "racket, racquet",
|
@@ -777,6 +751,7 @@
|
|
777 |
"757": "recreational vehicle, RV, R.V.",
|
778 |
"758": "reel",
|
779 |
"759": "reflex camera",
|
|
|
780 |
"760": "refrigerator, icebox",
|
781 |
"761": "remote control, remote",
|
782 |
"762": "restaurant, eating house, eating place, eatery",
|
@@ -787,6 +762,7 @@
|
|
787 |
"767": "rubber eraser, rubber, pencil eraser",
|
788 |
"768": "rugby ball",
|
789 |
"769": "rule, ruler",
|
|
|
790 |
"770": "running shoe",
|
791 |
"771": "safe",
|
792 |
"772": "safety pin",
|
@@ -797,6 +773,7 @@
|
|
797 |
"777": "scabbard",
|
798 |
"778": "scale, weighing machine",
|
799 |
"779": "school bus",
|
|
|
800 |
"780": "schooner",
|
801 |
"781": "scoreboard",
|
802 |
"782": "screen, CRT screen",
|
@@ -807,6 +784,7 @@
|
|
807 |
"787": "shield, buckler",
|
808 |
"788": "shoe shop, shoe-shop, shoe store",
|
809 |
"789": "shoji",
|
|
|
810 |
"790": "shopping basket",
|
811 |
"791": "shopping cart",
|
812 |
"792": "shovel",
|
@@ -817,6 +795,8 @@
|
|
817 |
"797": "sleeping bag",
|
818 |
"798": "slide rule, slipstick",
|
819 |
"799": "sliding door",
|
|
|
|
|
820 |
"800": "slot, one-armed bandit",
|
821 |
"801": "snorkel",
|
822 |
"802": "snowmobile",
|
@@ -827,6 +807,7 @@
|
|
827 |
"807": "solar dish, solar collector, solar furnace",
|
828 |
"808": "sombrero",
|
829 |
"809": "soup bowl",
|
|
|
830 |
"810": "space bar",
|
831 |
"811": "space heater",
|
832 |
"812": "space shuttle",
|
@@ -837,6 +818,7 @@
|
|
837 |
"817": "sports car, sport car",
|
838 |
"818": "spotlight, spot",
|
839 |
"819": "stage",
|
|
|
840 |
"820": "steam locomotive",
|
841 |
"821": "steel arch bridge",
|
842 |
"822": "steel drum",
|
@@ -847,6 +829,7 @@
|
|
847 |
"827": "stove",
|
848 |
"828": "strainer",
|
849 |
"829": "streetcar, tram, tramcar, trolley, trolley car",
|
|
|
850 |
"830": "stretcher",
|
851 |
"831": "studio couch, day bed",
|
852 |
"832": "stupa, tope",
|
@@ -857,6 +840,7 @@
|
|
857 |
"837": "sunglasses, dark glasses, shades",
|
858 |
"838": "sunscreen, sunblock, sun blocker",
|
859 |
"839": "suspension bridge",
|
|
|
860 |
"840": "swab, swob, mop",
|
861 |
"841": "sweatshirt",
|
862 |
"842": "swimming trunks, bathing trunks",
|
@@ -867,6 +851,7 @@
|
|
867 |
"847": "tank, army tank, armored combat vehicle, armoured combat vehicle",
|
868 |
"848": "tape player",
|
869 |
"849": "teapot",
|
|
|
870 |
"850": "teddy, teddy bear",
|
871 |
"851": "television, television system",
|
872 |
"852": "tennis ball",
|
@@ -877,6 +862,7 @@
|
|
877 |
"857": "throne",
|
878 |
"858": "tile roof",
|
879 |
"859": "toaster",
|
|
|
880 |
"860": "tobacco shop, tobacconist shop, tobacconist",
|
881 |
"861": "toilet seat",
|
882 |
"862": "torch",
|
@@ -887,6 +873,7 @@
|
|
887 |
"867": "trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi",
|
888 |
"868": "tray",
|
889 |
"869": "trench coat",
|
|
|
890 |
"870": "tricycle, trike, velocipede",
|
891 |
"871": "trimaran",
|
892 |
"872": "tripod",
|
@@ -897,6 +884,7 @@
|
|
897 |
"877": "turnstile",
|
898 |
"878": "typewriter keyboard",
|
899 |
"879": "umbrella",
|
|
|
900 |
"880": "unicycle, monocycle",
|
901 |
"881": "upright, upright piano",
|
902 |
"882": "vacuum, vacuum cleaner",
|
@@ -907,6 +895,7 @@
|
|
907 |
"887": "vestment",
|
908 |
"888": "viaduct",
|
909 |
"889": "violin, fiddle",
|
|
|
910 |
"890": "volleyball",
|
911 |
"891": "waffle iron",
|
912 |
"892": "wall clock",
|
@@ -917,6 +906,8 @@
|
|
917 |
"897": "washer, automatic washer, washing machine",
|
918 |
"898": "water bottle",
|
919 |
"899": "water jug",
|
|
|
|
|
920 |
"900": "water tower",
|
921 |
"901": "whiskey jug",
|
922 |
"902": "whistle",
|
@@ -927,6 +918,7 @@
|
|
927 |
"907": "wine bottle",
|
928 |
"908": "wing",
|
929 |
"909": "wok",
|
|
|
930 |
"910": "wooden spoon",
|
931 |
"911": "wool, woolen, woollen",
|
932 |
"912": "worm fence, snake fence, snake-rail fence, Virginia fence",
|
@@ -937,6 +929,7 @@
|
|
937 |
"917": "comic book",
|
938 |
"918": "crossword puzzle, crossword",
|
939 |
"919": "street sign",
|
|
|
940 |
"920": "traffic light, traffic signal, stoplight",
|
941 |
"921": "book jacket, dust cover, dust jacket, dust wrapper",
|
942 |
"922": "menu",
|
@@ -947,6 +940,7 @@
|
|
947 |
"927": "trifle",
|
948 |
"928": "ice cream, icecream",
|
949 |
"929": "ice lolly, lolly, lollipop, popsicle",
|
|
|
950 |
"930": "French loaf",
|
951 |
"931": "bagel, beigel",
|
952 |
"932": "pretzel",
|
@@ -957,6 +951,7 @@
|
|
957 |
"937": "broccoli",
|
958 |
"938": "cauliflower",
|
959 |
"939": "zucchini, courgette",
|
|
|
960 |
"940": "spaghetti squash",
|
961 |
"941": "acorn squash",
|
962 |
"942": "butternut squash",
|
@@ -967,6 +962,7 @@
|
|
967 |
"947": "mushroom",
|
968 |
"948": "Granny Smith",
|
969 |
"949": "strawberry",
|
|
|
970 |
"950": "orange",
|
971 |
"951": "lemon",
|
972 |
"952": "fig",
|
@@ -977,6 +973,7 @@
|
|
977 |
"957": "pomegranate",
|
978 |
"958": "hay",
|
979 |
"959": "carbonara",
|
|
|
980 |
"960": "chocolate sauce, chocolate syrup",
|
981 |
"961": "dough",
|
982 |
"962": "meat loaf, meatloaf",
|
@@ -987,6 +984,7 @@
|
|
987 |
"967": "espresso",
|
988 |
"968": "cup",
|
989 |
"969": "eggnog",
|
|
|
990 |
"970": "alp",
|
991 |
"971": "bubble",
|
992 |
"972": "cliff, drop, drop-off",
|
@@ -997,6 +995,7 @@
|
|
997 |
"977": "sandbar, sand bar",
|
998 |
"978": "seashore, coast, seacoast, sea-coast",
|
999 |
"979": "valley, vale",
|
|
|
1000 |
"980": "volcano",
|
1001 |
"981": "ballplayer, baseball player",
|
1002 |
"982": "groom, bridegroom",
|
@@ -1007,6 +1006,7 @@
|
|
1007 |
"987": "corn",
|
1008 |
"988": "acorn",
|
1009 |
"989": "hip, rose hip, rosehip",
|
|
|
1010 |
"990": "buckeye, horse chestnut, conker",
|
1011 |
"991": "coral fungus",
|
1012 |
"992": "agaric",
|
@@ -2052,4 +2052,4 @@
|
|
2052 |
"transformers_version": "4.44.0",
|
2053 |
"use_absolute_embeddings": false,
|
2054 |
"window_size": 7
|
2055 |
-
}
|
|
|
19 |
"id2label": {
|
20 |
"0": "tench, Tinca tinca",
|
21 |
"1": "goldfish, Carassius auratus",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
"10": "brambling, Fringilla montifringilla",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
"100": "black swan, Cygnus atratus",
|
24 |
"101": "tusker",
|
25 |
"102": "echidna, spiny anteater, anteater",
|
|
|
30 |
"107": "jellyfish",
|
31 |
"108": "sea anemone, anemone",
|
32 |
"109": "brain coral",
|
33 |
+
"11": "goldfinch, Carduelis carduelis",
|
34 |
"110": "flatworm, platyhelminth",
|
35 |
"111": "nematode, nematode worm, roundworm",
|
36 |
"112": "conch",
|
|
|
41 |
"117": "chambered nautilus, pearly nautilus, nautilus",
|
42 |
"118": "Dungeness crab, Cancer magister",
|
43 |
"119": "rock crab, Cancer irroratus",
|
44 |
+
"12": "house finch, linnet, Carpodacus mexicanus",
|
45 |
"120": "fiddler crab",
|
46 |
"121": "king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica",
|
47 |
"122": "American lobster, Northern lobster, Maine lobster, Homarus americanus",
|
|
|
52 |
"127": "white stork, Ciconia ciconia",
|
53 |
"128": "black stork, Ciconia nigra",
|
54 |
"129": "spoonbill",
|
55 |
+
"13": "junco, snowbird",
|
56 |
"130": "flamingo",
|
57 |
"131": "little blue heron, Egretta caerulea",
|
58 |
"132": "American egret, great white heron, Egretta albus",
|
|
|
63 |
"137": "American coot, marsh hen, mud hen, water hen, Fulica americana",
|
64 |
"138": "bustard",
|
65 |
"139": "ruddy turnstone, Arenaria interpres",
|
66 |
+
"14": "indigo bunting, indigo finch, indigo bird, Passerina cyanea",
|
67 |
"140": "red-backed sandpiper, dunlin, Erolia alpina",
|
68 |
"141": "redshank, Tringa totanus",
|
69 |
"142": "dowitcher",
|
|
|
74 |
"147": "grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus",
|
75 |
"148": "killer whale, killer, orca, grampus, sea wolf, Orcinus orca",
|
76 |
"149": "dugong, Dugong dugon",
|
77 |
+
"15": "robin, American robin, Turdus migratorius",
|
78 |
"150": "sea lion",
|
79 |
"151": "Chihuahua",
|
80 |
"152": "Japanese spaniel",
|
|
|
85 |
"157": "papillon",
|
86 |
"158": "toy terrier",
|
87 |
"159": "Rhodesian ridgeback",
|
88 |
+
"16": "bulbul",
|
89 |
"160": "Afghan hound, Afghan",
|
90 |
"161": "basset, basset hound",
|
91 |
"162": "beagle",
|
|
|
96 |
"167": "English foxhound",
|
97 |
"168": "redbone",
|
98 |
"169": "borzoi, Russian wolfhound",
|
99 |
+
"17": "jay",
|
100 |
"170": "Irish wolfhound",
|
101 |
"171": "Italian greyhound",
|
102 |
"172": "whippet",
|
|
|
107 |
"177": "Scottish deerhound, deerhound",
|
108 |
"178": "Weimaraner",
|
109 |
"179": "Staffordshire bullterrier, Staffordshire bull terrier",
|
110 |
+
"18": "magpie",
|
111 |
"180": "American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier",
|
112 |
"181": "Bedlington terrier",
|
113 |
"182": "Border terrier",
|
|
|
118 |
"187": "Yorkshire terrier",
|
119 |
"188": "wire-haired fox terrier",
|
120 |
"189": "Lakeland terrier",
|
121 |
+
"19": "chickadee",
|
122 |
"190": "Sealyham terrier, Sealyham",
|
123 |
"191": "Airedale, Airedale terrier",
|
124 |
"192": "cairn, cairn terrier",
|
|
|
129 |
"197": "giant schnauzer",
|
130 |
"198": "standard schnauzer",
|
131 |
"199": "Scotch terrier, Scottish terrier, Scottie",
|
132 |
+
"2": "great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias",
|
133 |
+
"20": "water ouzel, dipper",
|
134 |
"200": "Tibetan terrier, chrysanthemum dog",
|
135 |
"201": "silky terrier, Sydney silky",
|
136 |
"202": "soft-coated wheaten terrier",
|
|
|
141 |
"207": "golden retriever",
|
142 |
"208": "Labrador retriever",
|
143 |
"209": "Chesapeake Bay retriever",
|
144 |
+
"21": "kite",
|
145 |
"210": "German short-haired pointer",
|
146 |
"211": "vizsla, Hungarian pointer",
|
147 |
"212": "English setter",
|
|
|
152 |
"217": "English springer, English springer spaniel",
|
153 |
"218": "Welsh springer spaniel",
|
154 |
"219": "cocker spaniel, English cocker spaniel, cocker",
|
155 |
+
"22": "bald eagle, American eagle, Haliaeetus leucocephalus",
|
156 |
"220": "Sussex spaniel",
|
157 |
"221": "Irish water spaniel",
|
158 |
"222": "kuvasz",
|
|
|
163 |
"227": "kelpie",
|
164 |
"228": "komondor",
|
165 |
"229": "Old English sheepdog, bobtail",
|
166 |
+
"23": "vulture",
|
167 |
"230": "Shetland sheepdog, Shetland sheep dog, Shetland",
|
168 |
"231": "collie",
|
169 |
"232": "Border collie",
|
|
|
174 |
"237": "miniature pinscher",
|
175 |
"238": "Greater Swiss Mountain dog",
|
176 |
"239": "Bernese mountain dog",
|
177 |
+
"24": "great grey owl, great gray owl, Strix nebulosa",
|
178 |
"240": "Appenzeller",
|
179 |
"241": "EntleBucher",
|
180 |
"242": "boxer",
|
|
|
185 |
"247": "Saint Bernard, St Bernard",
|
186 |
"248": "Eskimo dog, husky",
|
187 |
"249": "malamute, malemute, Alaskan malamute",
|
188 |
+
"25": "European fire salamander, Salamandra salamandra",
|
189 |
"250": "Siberian husky",
|
190 |
"251": "dalmatian, coach dog, carriage dog",
|
191 |
"252": "affenpinscher, monkey pinscher, monkey dog",
|
|
|
196 |
"257": "Great Pyrenees",
|
197 |
"258": "Samoyed, Samoyede",
|
198 |
"259": "Pomeranian",
|
199 |
+
"26": "common newt, Triturus vulgaris",
|
200 |
"260": "chow, chow chow",
|
201 |
"261": "keeshond",
|
202 |
"262": "Brabancon griffon",
|
|
|
207 |
"267": "standard poodle",
|
208 |
"268": "Mexican hairless",
|
209 |
"269": "timber wolf, grey wolf, gray wolf, Canis lupus",
|
210 |
+
"27": "eft",
|
211 |
"270": "white wolf, Arctic wolf, Canis lupus tundrarum",
|
212 |
"271": "red wolf, maned wolf, Canis rufus, Canis niger",
|
213 |
"272": "coyote, prairie wolf, brush wolf, Canis latrans",
|
|
|
218 |
"277": "red fox, Vulpes vulpes",
|
219 |
"278": "kit fox, Vulpes macrotis",
|
220 |
"279": "Arctic fox, white fox, Alopex lagopus",
|
221 |
+
"28": "spotted salamander, Ambystoma maculatum",
|
222 |
"280": "grey fox, gray fox, Urocyon cinereoargenteus",
|
223 |
"281": "tabby, tabby cat",
|
224 |
"282": "tiger cat",
|
|
|
229 |
"287": "lynx, catamount",
|
230 |
"288": "leopard, Panthera pardus",
|
231 |
"289": "snow leopard, ounce, Panthera uncia",
|
232 |
+
"29": "axolotl, mud puppy, Ambystoma mexicanum",
|
233 |
"290": "jaguar, panther, Panthera onca, Felis onca",
|
234 |
"291": "lion, king of beasts, Panthera leo",
|
235 |
"292": "tiger, Panthera tigris",
|
|
|
240 |
"297": "sloth bear, Melursus ursinus, Ursus ursinus",
|
241 |
"298": "mongoose",
|
242 |
"299": "meerkat, mierkat",
|
243 |
+
"3": "tiger shark, Galeocerdo cuvieri",
|
244 |
+
"30": "bullfrog, Rana catesbeiana",
|
245 |
"300": "tiger beetle",
|
246 |
"301": "ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle",
|
247 |
"302": "ground beetle, carabid beetle",
|
|
|
252 |
"307": "weevil",
|
253 |
"308": "fly",
|
254 |
"309": "bee",
|
255 |
+
"31": "tree frog, tree-frog",
|
256 |
"310": "ant, emmet, pismire",
|
257 |
"311": "grasshopper, hopper",
|
258 |
"312": "cricket",
|
|
|
263 |
"317": "leafhopper",
|
264 |
"318": "lacewing, lacewing fly",
|
265 |
"319": "dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk",
|
266 |
+
"32": "tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui",
|
267 |
"320": "damselfly",
|
268 |
"321": "admiral",
|
269 |
"322": "ringlet, ringlet butterfly",
|
|
|
274 |
"327": "starfish, sea star",
|
275 |
"328": "sea urchin",
|
276 |
"329": "sea cucumber, holothurian",
|
277 |
+
"33": "loggerhead, loggerhead turtle, Caretta caretta",
|
278 |
"330": "wood rabbit, cottontail, cottontail rabbit",
|
279 |
"331": "hare",
|
280 |
"332": "Angora, Angora rabbit",
|
|
|
285 |
"337": "beaver",
|
286 |
"338": "guinea pig, Cavia cobaya",
|
287 |
"339": "sorrel",
|
288 |
+
"34": "leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea",
|
289 |
"340": "zebra",
|
290 |
"341": "hog, pig, grunter, squealer, Sus scrofa",
|
291 |
"342": "wild boar, boar, Sus scrofa",
|
|
|
296 |
"347": "bison",
|
297 |
"348": "ram, tup",
|
298 |
"349": "bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis",
|
299 |
+
"35": "mud turtle",
|
300 |
"350": "ibex, Capra ibex",
|
301 |
"351": "hartebeest",
|
302 |
"352": "impala, Aepyceros melampus",
|
|
|
307 |
"357": "mink",
|
308 |
"358": "polecat, fitch, foulmart, foumart, Mustela putorius",
|
309 |
"359": "black-footed ferret, ferret, Mustela nigripes",
|
310 |
+
"36": "terrapin",
|
311 |
"360": "otter",
|
312 |
"361": "skunk, polecat, wood pussy",
|
313 |
"362": "badger",
|
|
|
318 |
"367": "chimpanzee, chimp, Pan troglodytes",
|
319 |
"368": "gibbon, Hylobates lar",
|
320 |
"369": "siamang, Hylobates syndactylus, Symphalangus syndactylus",
|
321 |
+
"37": "box turtle, box tortoise",
|
322 |
"370": "guenon, guenon monkey",
|
323 |
"371": "patas, hussar monkey, Erythrocebus patas",
|
324 |
"372": "baboon",
|
|
|
329 |
"377": "marmoset",
|
330 |
"378": "capuchin, ringtail, Cebus capucinus",
|
331 |
"379": "howler monkey, howler",
|
332 |
+
"38": "banded gecko",
|
333 |
"380": "titi, titi monkey",
|
334 |
"381": "spider monkey, Ateles geoffroyi",
|
335 |
"382": "squirrel monkey, Saimiri sciureus",
|
|
|
340 |
"387": "lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens",
|
341 |
"388": "giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca",
|
342 |
"389": "barracouta, snoek",
|
343 |
+
"39": "common iguana, iguana, Iguana iguana",
|
344 |
"390": "eel",
|
345 |
"391": "coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch",
|
346 |
"392": "rock beauty, Holocanthus tricolor",
|
|
|
351 |
"397": "puffer, pufferfish, blowfish, globefish",
|
352 |
"398": "abacus",
|
353 |
"399": "abaya",
|
354 |
+
"4": "hammerhead, hammerhead shark",
|
355 |
+
"40": "American chameleon, anole, Anolis carolinensis",
|
356 |
"400": "academic gown, academic robe, judge's robe",
|
357 |
"401": "accordion, piano accordion, squeeze box",
|
358 |
"402": "acoustic guitar",
|
|
|
363 |
"407": "ambulance",
|
364 |
"408": "amphibian, amphibious vehicle",
|
365 |
"409": "analog clock",
|
366 |
+
"41": "whiptail, whiptail lizard",
|
367 |
"410": "apiary, bee house",
|
368 |
"411": "apron",
|
369 |
"412": "ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin",
|
|
|
374 |
"417": "balloon",
|
375 |
"418": "ballpoint, ballpoint pen, ballpen, Biro",
|
376 |
"419": "Band Aid",
|
377 |
+
"42": "agama",
|
378 |
"420": "banjo",
|
379 |
"421": "bannister, banister, balustrade, balusters, handrail",
|
380 |
"422": "barbell",
|
|
|
385 |
"427": "barrel, cask",
|
386 |
"428": "barrow, garden cart, lawn cart, wheelbarrow",
|
387 |
"429": "baseball",
|
388 |
+
"43": "frilled lizard, Chlamydosaurus kingi",
|
389 |
"430": "basketball",
|
390 |
"431": "bassinet",
|
391 |
"432": "bassoon",
|
|
|
396 |
"437": "beacon, lighthouse, beacon light, pharos",
|
397 |
"438": "beaker",
|
398 |
"439": "bearskin, busby, shako",
|
399 |
+
"44": "alligator lizard",
|
400 |
"440": "beer bottle",
|
401 |
"441": "beer glass",
|
402 |
"442": "bell cote, bell cot",
|
|
|
407 |
"447": "binoculars, field glasses, opera glasses",
|
408 |
"448": "birdhouse",
|
409 |
"449": "boathouse",
|
410 |
+
"45": "Gila monster, Heloderma suspectum",
|
411 |
"450": "bobsled, bobsleigh, bob",
|
412 |
"451": "bolo tie, bolo, bola tie, bola",
|
413 |
"452": "bonnet, poke bonnet",
|
|
|
418 |
"457": "bow tie, bow-tie, bowtie",
|
419 |
"458": "brass, memorial tablet, plaque",
|
420 |
"459": "brassiere, bra, bandeau",
|
421 |
+
"46": "green lizard, Lacerta viridis",
|
422 |
"460": "breakwater, groin, groyne, mole, bulwark, seawall, jetty",
|
423 |
"461": "breastplate, aegis, egis",
|
424 |
"462": "broom",
|
|
|
429 |
"467": "butcher shop, meat market",
|
430 |
"468": "cab, hack, taxi, taxicab",
|
431 |
"469": "caldron, cauldron",
|
432 |
+
"47": "African chameleon, Chamaeleo chamaeleon",
|
433 |
"470": "candle, taper, wax light",
|
434 |
"471": "cannon",
|
435 |
"472": "canoe",
|
|
|
440 |
"477": "carpenter's kit, tool kit",
|
441 |
"478": "carton",
|
442 |
"479": "car wheel",
|
443 |
+
"48": "Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis",
|
444 |
"480": "cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM",
|
445 |
"481": "cassette",
|
446 |
"482": "cassette player",
|
|
|
451 |
"487": "cellular telephone, cellular phone, cellphone, cell, mobile phone",
|
452 |
"488": "chain",
|
453 |
"489": "chainlink fence",
|
454 |
+
"49": "African crocodile, Nile crocodile, Crocodylus niloticus",
|
455 |
"490": "chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour",
|
456 |
"491": "chain saw, chainsaw",
|
457 |
"492": "chest",
|
|
|
462 |
"497": "church, church building",
|
463 |
"498": "cinema, movie theater, movie theatre, movie house, picture palace",
|
464 |
"499": "cleaver, meat cleaver, chopper",
|
465 |
+
"5": "electric ray, crampfish, numbfish, torpedo",
|
466 |
+
"50": "American alligator, Alligator mississipiensis",
|
467 |
"500": "cliff dwelling",
|
468 |
"501": "cloak",
|
469 |
"502": "clog, geta, patten, sabot",
|
|
|
474 |
"507": "combination lock",
|
475 |
"508": "computer keyboard, keypad",
|
476 |
"509": "confectionery, confectionary, candy store",
|
477 |
+
"51": "triceratops",
|
478 |
"510": "container ship, containership, container vessel",
|
479 |
"511": "convertible",
|
480 |
"512": "corkscrew, bottle screw",
|
|
|
485 |
"517": "crane",
|
486 |
"518": "crash helmet",
|
487 |
"519": "crate",
|
488 |
+
"52": "thunder snake, worm snake, Carphophis amoenus",
|
489 |
"520": "crib, cot",
|
490 |
"521": "Crock Pot",
|
491 |
"522": "croquet ball",
|
|
|
496 |
"527": "desktop computer",
|
497 |
"528": "dial telephone, dial phone",
|
498 |
"529": "diaper, nappy, napkin",
|
499 |
+
"53": "ringneck snake, ring-necked snake, ring snake",
|
500 |
"530": "digital clock",
|
501 |
"531": "digital watch",
|
502 |
"532": "dining table, board",
|
|
|
507 |
"537": "dogsled, dog sled, dog sleigh",
|
508 |
"538": "dome",
|
509 |
"539": "doormat, welcome mat",
|
510 |
+
"54": "hognose snake, puff adder, sand viper",
|
511 |
"540": "drilling platform, offshore rig",
|
512 |
"541": "drum, membranophone, tympan",
|
513 |
"542": "drumstick",
|
|
|
518 |
"547": "electric locomotive",
|
519 |
"548": "entertainment center",
|
520 |
"549": "envelope",
|
521 |
+
"55": "green snake, grass snake",
|
522 |
"550": "espresso maker",
|
523 |
"551": "face powder",
|
524 |
"552": "feather boa, boa",
|
|
|
529 |
"557": "flagpole, flagstaff",
|
530 |
"558": "flute, transverse flute",
|
531 |
"559": "folding chair",
|
532 |
+
"56": "king snake, kingsnake",
|
533 |
"560": "football helmet",
|
534 |
"561": "forklift",
|
535 |
"562": "fountain",
|
|
|
540 |
"567": "frying pan, frypan, skillet",
|
541 |
"568": "fur coat",
|
542 |
"569": "garbage truck, dustcart",
|
543 |
+
"57": "garter snake, grass snake",
|
544 |
"570": "gasmask, respirator, gas helmet",
|
545 |
"571": "gas pump, gasoline pump, petrol pump, island dispenser",
|
546 |
"572": "goblet",
|
|
|
551 |
"577": "gong, tam-tam",
|
552 |
"578": "gown",
|
553 |
"579": "grand piano, grand",
|
554 |
+
"58": "water snake",
|
555 |
"580": "greenhouse, nursery, glasshouse",
|
556 |
"581": "grille, radiator grille",
|
557 |
"582": "grocery store, grocery, food market, market",
|
|
|
562 |
"587": "hammer",
|
563 |
"588": "hamper",
|
564 |
"589": "hand blower, blow dryer, blow drier, hair dryer, hair drier",
|
565 |
+
"59": "vine snake",
|
566 |
"590": "hand-held computer, hand-held microcomputer",
|
567 |
"591": "handkerchief, hankie, hanky, hankey",
|
568 |
"592": "hard disc, hard disk, fixed disk",
|
|
|
573 |
"597": "holster",
|
574 |
"598": "home theater, home theatre",
|
575 |
"599": "honeycomb",
|
576 |
+
"6": "stingray",
|
577 |
+
"60": "night snake, Hypsiglena torquata",
|
578 |
"600": "hook, claw",
|
579 |
"601": "hoopskirt, crinoline",
|
580 |
"602": "horizontal bar, high bar",
|
|
|
585 |
"607": "jack-o'-lantern",
|
586 |
"608": "jean, blue jean, denim",
|
587 |
"609": "jeep, landrover",
|
588 |
+
"61": "boa constrictor, Constrictor constrictor",
|
589 |
"610": "jersey, T-shirt, tee shirt",
|
590 |
"611": "jigsaw puzzle",
|
591 |
"612": "jinrikisha, ricksha, rickshaw",
|
|
|
596 |
"617": "lab coat, laboratory coat",
|
597 |
"618": "ladle",
|
598 |
"619": "lampshade, lamp shade",
|
599 |
+
"62": "rock python, rock snake, Python sebae",
|
600 |
"620": "laptop, laptop computer",
|
601 |
"621": "lawn mower, mower",
|
602 |
"622": "lens cap, lens cover",
|
|
|
607 |
"627": "limousine, limo",
|
608 |
"628": "liner, ocean liner",
|
609 |
"629": "lipstick, lip rouge",
|
610 |
+
"63": "Indian cobra, Naja naja",
|
611 |
"630": "Loafer",
|
612 |
"631": "lotion",
|
613 |
"632": "loudspeaker, speaker, speaker unit, loudspeaker system, speaker system",
|
|
|
618 |
"637": "mailbox, letter box",
|
619 |
"638": "maillot",
|
620 |
"639": "maillot, tank suit",
|
621 |
+
"64": "green mamba",
|
622 |
"640": "manhole cover",
|
623 |
"641": "maraca",
|
624 |
"642": "marimba, xylophone",
|
|
|
629 |
"647": "measuring cup",
|
630 |
"648": "medicine chest, medicine cabinet",
|
631 |
"649": "megalith, megalithic structure",
|
632 |
+
"65": "sea snake",
|
633 |
"650": "microphone, mike",
|
634 |
"651": "microwave, microwave oven",
|
635 |
"652": "military uniform",
|
|
|
640 |
"657": "missile",
|
641 |
"658": "mitten",
|
642 |
"659": "mixing bowl",
|
643 |
+
"66": "horned viper, cerastes, sand viper, horned asp, Cerastes cornutus",
|
644 |
"660": "mobile home, manufactured home",
|
645 |
"661": "Model T",
|
646 |
"662": "modem",
|
|
|
651 |
"667": "mortarboard",
|
652 |
"668": "mosque",
|
653 |
"669": "mosquito net",
|
654 |
+
"67": "diamondback, diamondback rattlesnake, Crotalus adamanteus",
|
655 |
"670": "motor scooter, scooter",
|
656 |
"671": "mountain bike, all-terrain bike, off-roader",
|
657 |
"672": "mountain tent",
|
|
|
662 |
"677": "nail",
|
663 |
"678": "neck brace",
|
664 |
"679": "necklace",
|
665 |
+
"68": "sidewinder, horned rattlesnake, Crotalus cerastes",
|
666 |
"680": "nipple",
|
667 |
"681": "notebook, notebook computer",
|
668 |
"682": "obelisk",
|
|
|
673 |
"687": "organ, pipe organ",
|
674 |
"688": "oscilloscope, scope, cathode-ray oscilloscope, CRO",
|
675 |
"689": "overskirt",
|
676 |
+
"69": "trilobite",
|
677 |
"690": "oxcart",
|
678 |
"691": "oxygen mask",
|
679 |
"692": "packet",
|
|
|
684 |
"697": "pajama, pyjama, pj's, jammies",
|
685 |
"698": "palace",
|
686 |
"699": "panpipe, pandean pipe, syrinx",
|
687 |
+
"7": "cock",
|
688 |
+
"70": "harvestman, daddy longlegs, Phalangium opilio",
|
689 |
"700": "paper towel",
|
690 |
"701": "parachute, chute",
|
691 |
"702": "parallel bars, bars",
|
|
|
696 |
"707": "pay-phone, pay-station",
|
697 |
"708": "pedestal, plinth, footstall",
|
698 |
"709": "pencil box, pencil case",
|
699 |
+
"71": "scorpion",
|
700 |
"710": "pencil sharpener",
|
701 |
"711": "perfume, essence",
|
702 |
"712": "Petri dish",
|
|
|
707 |
"717": "pickup, pickup truck",
|
708 |
"718": "pier",
|
709 |
"719": "piggy bank, penny bank",
|
710 |
+
"72": "black and gold garden spider, Argiope aurantia",
|
711 |
"720": "pill bottle",
|
712 |
"721": "pillow",
|
713 |
"722": "ping-pong ball",
|
|
|
718 |
"727": "planetarium",
|
719 |
"728": "plastic bag",
|
720 |
"729": "plate rack",
|
721 |
+
"73": "barn spider, Araneus cavaticus",
|
722 |
"730": "plow, plough",
|
723 |
"731": "plunger, plumber's helper",
|
724 |
"732": "Polaroid camera, Polaroid Land camera",
|
|
|
729 |
"737": "pop bottle, soda bottle",
|
730 |
"738": "pot, flowerpot",
|
731 |
"739": "potter's wheel",
|
732 |
+
"74": "garden spider, Aranea diademata",
|
733 |
"740": "power drill",
|
734 |
"741": "prayer rug, prayer mat",
|
735 |
"742": "printer",
|
|
|
740 |
"747": "punching bag, punch bag, punching ball, punchball",
|
741 |
"748": "purse",
|
742 |
"749": "quill, quill pen",
|
743 |
+
"75": "black widow, Latrodectus mactans",
|
744 |
"750": "quilt, comforter, comfort, puff",
|
745 |
"751": "racer, race car, racing car",
|
746 |
"752": "racket, racquet",
|
|
|
751 |
"757": "recreational vehicle, RV, R.V.",
|
752 |
"758": "reel",
|
753 |
"759": "reflex camera",
|
754 |
+
"76": "tarantula",
|
755 |
"760": "refrigerator, icebox",
|
756 |
"761": "remote control, remote",
|
757 |
"762": "restaurant, eating house, eating place, eatery",
|
|
|
762 |
"767": "rubber eraser, rubber, pencil eraser",
|
763 |
"768": "rugby ball",
|
764 |
"769": "rule, ruler",
|
765 |
+
"77": "wolf spider, hunting spider",
|
766 |
"770": "running shoe",
|
767 |
"771": "safe",
|
768 |
"772": "safety pin",
|
|
|
773 |
"777": "scabbard",
|
774 |
"778": "scale, weighing machine",
|
775 |
"779": "school bus",
|
776 |
+
"78": "tick",
|
777 |
"780": "schooner",
|
778 |
"781": "scoreboard",
|
779 |
"782": "screen, CRT screen",
|
|
|
784 |
"787": "shield, buckler",
|
785 |
"788": "shoe shop, shoe-shop, shoe store",
|
786 |
"789": "shoji",
|
787 |
+
"79": "centipede",
|
788 |
"790": "shopping basket",
|
789 |
"791": "shopping cart",
|
790 |
"792": "shovel",
|
|
|
795 |
"797": "sleeping bag",
|
796 |
"798": "slide rule, slipstick",
|
797 |
"799": "sliding door",
|
798 |
+
"8": "hen",
|
799 |
+
"80": "black grouse",
|
800 |
"800": "slot, one-armed bandit",
|
801 |
"801": "snorkel",
|
802 |
"802": "snowmobile",
|
|
|
807 |
"807": "solar dish, solar collector, solar furnace",
|
808 |
"808": "sombrero",
|
809 |
"809": "soup bowl",
|
810 |
+
"81": "ptarmigan",
|
811 |
"810": "space bar",
|
812 |
"811": "space heater",
|
813 |
"812": "space shuttle",
|
|
|
818 |
"817": "sports car, sport car",
|
819 |
"818": "spotlight, spot",
|
820 |
"819": "stage",
|
821 |
+
"82": "ruffed grouse, partridge, Bonasa umbellus",
|
822 |
"820": "steam locomotive",
|
823 |
"821": "steel arch bridge",
|
824 |
"822": "steel drum",
|
|
|
829 |
"827": "stove",
|
830 |
"828": "strainer",
|
831 |
"829": "streetcar, tram, tramcar, trolley, trolley car",
|
832 |
+
"83": "prairie chicken, prairie grouse, prairie fowl",
|
833 |
"830": "stretcher",
|
834 |
"831": "studio couch, day bed",
|
835 |
"832": "stupa, tope",
|
|
|
840 |
"837": "sunglasses, dark glasses, shades",
|
841 |
"838": "sunscreen, sunblock, sun blocker",
|
842 |
"839": "suspension bridge",
|
843 |
+
"84": "peacock",
|
844 |
"840": "swab, swob, mop",
|
845 |
"841": "sweatshirt",
|
846 |
"842": "swimming trunks, bathing trunks",
|
|
|
851 |
"847": "tank, army tank, armored combat vehicle, armoured combat vehicle",
|
852 |
"848": "tape player",
|
853 |
"849": "teapot",
|
854 |
+
"85": "quail",
|
855 |
"850": "teddy, teddy bear",
|
856 |
"851": "television, television system",
|
857 |
"852": "tennis ball",
|
|
|
862 |
"857": "throne",
|
863 |
"858": "tile roof",
|
864 |
"859": "toaster",
|
865 |
+
"86": "partridge",
|
866 |
"860": "tobacco shop, tobacconist shop, tobacconist",
|
867 |
"861": "toilet seat",
|
868 |
"862": "torch",
|
|
|
873 |
"867": "trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi",
|
874 |
"868": "tray",
|
875 |
"869": "trench coat",
|
876 |
+
"87": "African grey, African gray, Psittacus erithacus",
|
877 |
"870": "tricycle, trike, velocipede",
|
878 |
"871": "trimaran",
|
879 |
"872": "tripod",
|
|
|
884 |
"877": "turnstile",
|
885 |
"878": "typewriter keyboard",
|
886 |
"879": "umbrella",
|
887 |
+
"88": "macaw",
|
888 |
"880": "unicycle, monocycle",
|
889 |
"881": "upright, upright piano",
|
890 |
"882": "vacuum, vacuum cleaner",
|
|
|
895 |
"887": "vestment",
|
896 |
"888": "viaduct",
|
897 |
"889": "violin, fiddle",
|
898 |
+
"89": "sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita",
|
899 |
"890": "volleyball",
|
900 |
"891": "waffle iron",
|
901 |
"892": "wall clock",
|
|
|
906 |
"897": "washer, automatic washer, washing machine",
|
907 |
"898": "water bottle",
|
908 |
"899": "water jug",
|
909 |
+
"9": "ostrich, Struthio camelus",
|
910 |
+
"90": "lorikeet",
|
911 |
"900": "water tower",
|
912 |
"901": "whiskey jug",
|
913 |
"902": "whistle",
|
|
|
918 |
"907": "wine bottle",
|
919 |
"908": "wing",
|
920 |
"909": "wok",
|
921 |
+
"91": "coucal",
|
922 |
"910": "wooden spoon",
|
923 |
"911": "wool, woolen, woollen",
|
924 |
"912": "worm fence, snake fence, snake-rail fence, Virginia fence",
|
|
|
929 |
"917": "comic book",
|
930 |
"918": "crossword puzzle, crossword",
|
931 |
"919": "street sign",
|
932 |
+
"92": "bee eater",
|
933 |
"920": "traffic light, traffic signal, stoplight",
|
934 |
"921": "book jacket, dust cover, dust jacket, dust wrapper",
|
935 |
"922": "menu",
|
|
|
940 |
"927": "trifle",
|
941 |
"928": "ice cream, icecream",
|
942 |
"929": "ice lolly, lolly, lollipop, popsicle",
|
943 |
+
"93": "hornbill",
|
944 |
"930": "French loaf",
|
945 |
"931": "bagel, beigel",
|
946 |
"932": "pretzel",
|
|
|
951 |
"937": "broccoli",
|
952 |
"938": "cauliflower",
|
953 |
"939": "zucchini, courgette",
|
954 |
+
"94": "hummingbird",
|
955 |
"940": "spaghetti squash",
|
956 |
"941": "acorn squash",
|
957 |
"942": "butternut squash",
|
|
|
962 |
"947": "mushroom",
|
963 |
"948": "Granny Smith",
|
964 |
"949": "strawberry",
|
965 |
+
"95": "jacamar",
|
966 |
"950": "orange",
|
967 |
"951": "lemon",
|
968 |
"952": "fig",
|
|
|
973 |
"957": "pomegranate",
|
974 |
"958": "hay",
|
975 |
"959": "carbonara",
|
976 |
+
"96": "toucan",
|
977 |
"960": "chocolate sauce, chocolate syrup",
|
978 |
"961": "dough",
|
979 |
"962": "meat loaf, meatloaf",
|
|
|
984 |
"967": "espresso",
|
985 |
"968": "cup",
|
986 |
"969": "eggnog",
|
987 |
+
"97": "drake",
|
988 |
"970": "alp",
|
989 |
"971": "bubble",
|
990 |
"972": "cliff, drop, drop-off",
|
|
|
995 |
"977": "sandbar, sand bar",
|
996 |
"978": "seashore, coast, seacoast, sea-coast",
|
997 |
"979": "valley, vale",
|
998 |
+
"98": "red-breasted merganser, Mergus serrator",
|
999 |
"980": "volcano",
|
1000 |
"981": "ballplayer, baseball player",
|
1001 |
"982": "groom, bridegroom",
|
|
|
1006 |
"987": "corn",
|
1007 |
"988": "acorn",
|
1008 |
"989": "hip, rose hip, rosehip",
|
1009 |
+
"99": "goose",
|
1010 |
"990": "buckeye, horse chestnut, conker",
|
1011 |
"991": "coral fungus",
|
1012 |
"992": "agaric",
|
|
|
2052 |
"transformers_version": "4.44.0",
|
2053 |
"use_absolute_embeddings": false,
|
2054 |
"window_size": 7
|
2055 |
+
}
|