keras-hub-nightly 0.15.0.dev20240911134614__py3-none-any.whl → 0.16.0.dev2024092017__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- keras_hub/__init__.py +0 -6
- keras_hub/api/__init__.py +1 -0
- keras_hub/api/models/__init__.py +22 -17
- keras_hub/{src/models/llama3/llama3_preprocessor.py → api/utils/__init__.py} +7 -8
- keras_hub/src/api_export.py +15 -9
- keras_hub/src/models/albert/albert_text_classifier.py +6 -1
- keras_hub/src/models/bert/bert_text_classifier.py +6 -1
- keras_hub/src/models/deberta_v3/deberta_v3_text_classifier.py +6 -1
- keras_hub/src/models/densenet/densenet_backbone.py +1 -1
- keras_hub/src/models/distil_bert/distil_bert_text_classifier.py +6 -1
- keras_hub/src/models/f_net/f_net_text_classifier.py +6 -1
- keras_hub/src/models/gemma/gemma_decoder_block.py +1 -1
- keras_hub/src/models/gpt2/gpt2_preprocessor.py +7 -78
- keras_hub/src/models/pali_gemma/pali_gemma_tokenizer.py +1 -1
- keras_hub/src/models/preprocessor.py +1 -5
- keras_hub/src/models/resnet/resnet_backbone.py +3 -16
- keras_hub/src/models/resnet/resnet_image_classifier.py +26 -3
- keras_hub/src/models/resnet/resnet_presets.py +12 -12
- keras_hub/src/models/retinanet/__init__.py +13 -0
- keras_hub/src/models/retinanet/anchor_generator.py +175 -0
- keras_hub/src/models/retinanet/box_matcher.py +259 -0
- keras_hub/src/models/retinanet/non_max_supression.py +578 -0
- keras_hub/src/models/roberta/roberta_text_classifier.py +6 -1
- keras_hub/src/models/task.py +6 -6
- keras_hub/src/models/text_classifier.py +12 -1
- keras_hub/src/models/xlm_roberta/xlm_roberta_text_classifier.py +6 -1
- keras_hub/src/tests/test_case.py +21 -0
- keras_hub/src/tokenizers/byte_pair_tokenizer.py +1 -0
- keras_hub/src/tokenizers/sentence_piece_tokenizer.py +1 -0
- keras_hub/src/tokenizers/word_piece_tokenizer.py +1 -0
- keras_hub/src/utils/imagenet/__init__.py +13 -0
- keras_hub/src/utils/imagenet/imagenet_utils.py +1067 -0
- keras_hub/src/utils/preset_utils.py +24 -33
- keras_hub/src/utils/tensor_utils.py +14 -14
- keras_hub/src/utils/timm/convert_resnet.py +0 -1
- keras_hub/src/utils/timm/preset_loader.py +6 -7
- keras_hub/src/version_utils.py +1 -1
- keras_hub_nightly-0.16.0.dev2024092017.dist-info/METADATA +202 -0
- {keras_hub_nightly-0.15.0.dev20240911134614.dist-info → keras_hub_nightly-0.16.0.dev2024092017.dist-info}/RECORD +41 -45
- {keras_hub_nightly-0.15.0.dev20240911134614.dist-info → keras_hub_nightly-0.16.0.dev2024092017.dist-info}/WHEEL +1 -1
- keras_hub/src/models/bart/bart_preprocessor.py +0 -264
- keras_hub/src/models/bloom/bloom_preprocessor.py +0 -178
- keras_hub/src/models/electra/electra_preprocessor.py +0 -155
- keras_hub/src/models/falcon/falcon_preprocessor.py +0 -180
- keras_hub/src/models/gemma/gemma_preprocessor.py +0 -184
- keras_hub/src/models/gpt_neo_x/gpt_neo_x_preprocessor.py +0 -138
- keras_hub/src/models/llama/llama_preprocessor.py +0 -182
- keras_hub/src/models/mistral/mistral_preprocessor.py +0 -183
- keras_hub/src/models/opt/opt_preprocessor.py +0 -181
- keras_hub/src/models/phi3/phi3_preprocessor.py +0 -183
- keras_hub_nightly-0.15.0.dev20240911134614.dist-info/METADATA +0 -33
- {keras_hub_nightly-0.15.0.dev20240911134614.dist-info → keras_hub_nightly-0.16.0.dev2024092017.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1067 @@
|
|
1
|
+
# Copyright 2024 The KerasNLP Authors
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
from keras import ops
|
15
|
+
|
16
|
+
from keras_hub.src.api_export import keras_hub_export
|
17
|
+
|
18
|
+
|
19
|
+
@keras_hub_export("keras_hub.utils.decode_imagenet_predictions")
|
20
|
+
def decode_imagenet_predictions(preds, top=5, include_synset_ids=False):
|
21
|
+
"""Decodes the predictions for an ImageNet-1k prediction.
|
22
|
+
|
23
|
+
Args:
|
24
|
+
preds: NumPy array encoding a batch of predictions.
|
25
|
+
top: Integer, how many top-guesses to return. Defaults to `5`.
|
26
|
+
include_synset_ids: If true, each output tuple with have the form
|
27
|
+
`synset_id, description, score`. If false, each output tuple will
|
28
|
+
have the form `description, score`.
|
29
|
+
|
30
|
+
Returns:
|
31
|
+
A list of list of top class predictions.
|
32
|
+
One list of tuples per sample in batch input.
|
33
|
+
|
34
|
+
Example:
|
35
|
+
```python
|
36
|
+
image_url = "https://upload.wikimedia.org/wikipedia/commons/a/aa/California_quail.jpg"
|
37
|
+
image_path = keras.utils.get_file(origin=image_url)
|
38
|
+
image = keras.utils.load_img(image_path)
|
39
|
+
classifier = keras_hub.models.ImageClassifier.from_preset(
|
40
|
+
"resnet_50_imagenet",
|
41
|
+
activation="softmax",
|
42
|
+
)
|
43
|
+
preds = classifier.predict(np.array([image]))
|
44
|
+
top_labels = keras_hub.utils.decode_imagenet_predictions(preds)
|
45
|
+
```
|
46
|
+
"""
|
47
|
+
if len(preds.shape) != 2 or preds.shape[1] != 1000:
|
48
|
+
raise ValueError(
|
49
|
+
"`decode_imagenet_predictions` expects "
|
50
|
+
"a batch of predictions "
|
51
|
+
"(i.e. a 2D array of shape (samples, 1000)). "
|
52
|
+
f"Received array with shape: {preds.shape}"
|
53
|
+
)
|
54
|
+
results = []
|
55
|
+
preds = ops.convert_to_numpy(preds)
|
56
|
+
for pred in preds:
|
57
|
+
top_indices = pred.argsort()[-top:][::-1]
|
58
|
+
result = [IMAGENET_NAMES[i] + (float(pred[i]),) for i in top_indices]
|
59
|
+
result.sort(key=lambda x: x[2], reverse=True)
|
60
|
+
if not include_synset_ids:
|
61
|
+
result = [(x[1], x[2]) for x in result]
|
62
|
+
results.append(result)
|
63
|
+
return results
|
64
|
+
|
65
|
+
|
66
|
+
IMAGENET_NAMES = {
|
67
|
+
0: ("n01440764", "tench"),
|
68
|
+
1: ("n01443537", "goldfish"),
|
69
|
+
2: ("n01484850", "great_white_shark"),
|
70
|
+
3: ("n01491361", "tiger_shark"),
|
71
|
+
4: ("n01494475", "hammerhead"),
|
72
|
+
5: ("n01496331", "electric_ray"),
|
73
|
+
6: ("n01498041", "stingray"),
|
74
|
+
7: ("n01514668", "cock"),
|
75
|
+
8: ("n01514859", "hen"),
|
76
|
+
9: ("n01518878", "ostrich"),
|
77
|
+
10: ("n01530575", "brambling"),
|
78
|
+
11: ("n01531178", "goldfinch"),
|
79
|
+
12: ("n01532829", "house_finch"),
|
80
|
+
13: ("n01534433", "junco"),
|
81
|
+
14: ("n01537544", "indigo_bunting"),
|
82
|
+
15: ("n01558993", "robin"),
|
83
|
+
16: ("n01560419", "bulbul"),
|
84
|
+
17: ("n01580077", "jay"),
|
85
|
+
18: ("n01582220", "magpie"),
|
86
|
+
19: ("n01592084", "chickadee"),
|
87
|
+
20: ("n01601694", "water_ouzel"),
|
88
|
+
21: ("n01608432", "kite"),
|
89
|
+
22: ("n01614925", "bald_eagle"),
|
90
|
+
23: ("n01616318", "vulture"),
|
91
|
+
24: ("n01622779", "great_grey_owl"),
|
92
|
+
25: ("n01629819", "European_fire_salamander"),
|
93
|
+
26: ("n01630670", "common_newt"),
|
94
|
+
27: ("n01631663", "eft"),
|
95
|
+
28: ("n01632458", "spotted_salamander"),
|
96
|
+
29: ("n01632777", "axolotl"),
|
97
|
+
30: ("n01641577", "bullfrog"),
|
98
|
+
31: ("n01644373", "tree_frog"),
|
99
|
+
32: ("n01644900", "tailed_frog"),
|
100
|
+
33: ("n01664065", "loggerhead"),
|
101
|
+
34: ("n01665541", "leatherback_turtle"),
|
102
|
+
35: ("n01667114", "mud_turtle"),
|
103
|
+
36: ("n01667778", "terrapin"),
|
104
|
+
37: ("n01669191", "box_turtle"),
|
105
|
+
38: ("n01675722", "banded_gecko"),
|
106
|
+
39: ("n01677366", "common_iguana"),
|
107
|
+
40: ("n01682714", "American_chameleon"),
|
108
|
+
41: ("n01685808", "whiptail"),
|
109
|
+
42: ("n01687978", "agama"),
|
110
|
+
43: ("n01688243", "frilled_lizard"),
|
111
|
+
44: ("n01689811", "alligator_lizard"),
|
112
|
+
45: ("n01692333", "Gila_monster"),
|
113
|
+
46: ("n01693334", "green_lizard"),
|
114
|
+
47: ("n01694178", "African_chameleon"),
|
115
|
+
48: ("n01695060", "Komodo_dragon"),
|
116
|
+
49: ("n01697457", "African_crocodile"),
|
117
|
+
50: ("n01698640", "American_alligator"),
|
118
|
+
51: ("n01704323", "triceratops"),
|
119
|
+
52: ("n01728572", "thunder_snake"),
|
120
|
+
53: ("n01728920", "ringneck_snake"),
|
121
|
+
54: ("n01729322", "hognose_snake"),
|
122
|
+
55: ("n01729977", "green_snake"),
|
123
|
+
56: ("n01734418", "king_snake"),
|
124
|
+
57: ("n01735189", "garter_snake"),
|
125
|
+
58: ("n01737021", "water_snake"),
|
126
|
+
59: ("n01739381", "vine_snake"),
|
127
|
+
60: ("n01740131", "night_snake"),
|
128
|
+
61: ("n01742172", "boa_constrictor"),
|
129
|
+
62: ("n01744401", "rock_python"),
|
130
|
+
63: ("n01748264", "Indian_cobra"),
|
131
|
+
64: ("n01749939", "green_mamba"),
|
132
|
+
65: ("n01751748", "sea_snake"),
|
133
|
+
66: ("n01753488", "horned_viper"),
|
134
|
+
67: ("n01755581", "diamondback"),
|
135
|
+
68: ("n01756291", "sidewinder"),
|
136
|
+
69: ("n01768244", "trilobite"),
|
137
|
+
70: ("n01770081", "harvestman"),
|
138
|
+
71: ("n01770393", "scorpion"),
|
139
|
+
72: ("n01773157", "black_and_gold_garden_spider"),
|
140
|
+
73: ("n01773549", "barn_spider"),
|
141
|
+
74: ("n01773797", "garden_spider"),
|
142
|
+
75: ("n01774384", "black_widow"),
|
143
|
+
76: ("n01774750", "tarantula"),
|
144
|
+
77: ("n01775062", "wolf_spider"),
|
145
|
+
78: ("n01776313", "tick"),
|
146
|
+
79: ("n01784675", "centipede"),
|
147
|
+
80: ("n01795545", "black_grouse"),
|
148
|
+
81: ("n01796340", "ptarmigan"),
|
149
|
+
82: ("n01797886", "ruffed_grouse"),
|
150
|
+
83: ("n01798484", "prairie_chicken"),
|
151
|
+
84: ("n01806143", "peacock"),
|
152
|
+
85: ("n01806567", "quail"),
|
153
|
+
86: ("n01807496", "partridge"),
|
154
|
+
87: ("n01817953", "African_grey"),
|
155
|
+
88: ("n01818515", "macaw"),
|
156
|
+
89: ("n01819313", "sulphur-crested_cockatoo"),
|
157
|
+
90: ("n01820546", "lorikeet"),
|
158
|
+
91: ("n01824575", "coucal"),
|
159
|
+
92: ("n01828970", "bee_eater"),
|
160
|
+
93: ("n01829413", "hornbill"),
|
161
|
+
94: ("n01833805", "hummingbird"),
|
162
|
+
95: ("n01843065", "jacamar"),
|
163
|
+
96: ("n01843383", "toucan"),
|
164
|
+
97: ("n01847000", "drake"),
|
165
|
+
98: ("n01855032", "red-breasted_merganser"),
|
166
|
+
99: ("n01855672", "goose"),
|
167
|
+
100: ("n01860187", "black_swan"),
|
168
|
+
101: ("n01871265", "tusker"),
|
169
|
+
102: ("n01872401", "echidna"),
|
170
|
+
103: ("n01873310", "platypus"),
|
171
|
+
104: ("n01877812", "wallaby"),
|
172
|
+
105: ("n01882714", "koala"),
|
173
|
+
106: ("n01883070", "wombat"),
|
174
|
+
107: ("n01910747", "jellyfish"),
|
175
|
+
108: ("n01914609", "sea_anemone"),
|
176
|
+
109: ("n01917289", "brain_coral"),
|
177
|
+
110: ("n01924916", "flatworm"),
|
178
|
+
111: ("n01930112", "nematode"),
|
179
|
+
112: ("n01943899", "conch"),
|
180
|
+
113: ("n01944390", "snail"),
|
181
|
+
114: ("n01945685", "slug"),
|
182
|
+
115: ("n01950731", "sea_slug"),
|
183
|
+
116: ("n01955084", "chiton"),
|
184
|
+
117: ("n01968897", "chambered_nautilus"),
|
185
|
+
118: ("n01978287", "Dungeness_crab"),
|
186
|
+
119: ("n01978455", "rock_crab"),
|
187
|
+
120: ("n01980166", "fiddler_crab"),
|
188
|
+
121: ("n01981276", "king_crab"),
|
189
|
+
122: ("n01983481", "American_lobster"),
|
190
|
+
123: ("n01984695", "spiny_lobster"),
|
191
|
+
124: ("n01985128", "crayfish"),
|
192
|
+
125: ("n01986214", "hermit_crab"),
|
193
|
+
126: ("n01990800", "isopod"),
|
194
|
+
127: ("n02002556", "white_stork"),
|
195
|
+
128: ("n02002724", "black_stork"),
|
196
|
+
129: ("n02006656", "spoonbill"),
|
197
|
+
130: ("n02007558", "flamingo"),
|
198
|
+
131: ("n02009229", "little_blue_heron"),
|
199
|
+
132: ("n02009912", "American_egret"),
|
200
|
+
133: ("n02011460", "bittern"),
|
201
|
+
134: ("n02012849", "crane"),
|
202
|
+
135: ("n02013706", "limpkin"),
|
203
|
+
136: ("n02017213", "European_gallinule"),
|
204
|
+
137: ("n02018207", "American_coot"),
|
205
|
+
138: ("n02018795", "bustard"),
|
206
|
+
139: ("n02025239", "ruddy_turnstone"),
|
207
|
+
140: ("n02027492", "red-backed_sandpiper"),
|
208
|
+
141: ("n02028035", "redshank"),
|
209
|
+
142: ("n02033041", "dowitcher"),
|
210
|
+
143: ("n02037110", "oystercatcher"),
|
211
|
+
144: ("n02051845", "pelican"),
|
212
|
+
145: ("n02056570", "king_penguin"),
|
213
|
+
146: ("n02058221", "albatross"),
|
214
|
+
147: ("n02066245", "grey_whale"),
|
215
|
+
148: ("n02071294", "killer_whale"),
|
216
|
+
149: ("n02074367", "dugong"),
|
217
|
+
150: ("n02077923", "sea_lion"),
|
218
|
+
151: ("n02085620", "Chihuahua"),
|
219
|
+
152: ("n02085782", "Japanese_spaniel"),
|
220
|
+
153: ("n02085936", "Maltese_dog"),
|
221
|
+
154: ("n02086079", "Pekinese"),
|
222
|
+
155: ("n02086240", "Shih-Tzu"),
|
223
|
+
156: ("n02086646", "Blenheim_spaniel"),
|
224
|
+
157: ("n02086910", "papillon"),
|
225
|
+
158: ("n02087046", "toy_terrier"),
|
226
|
+
159: ("n02087394", "Rhodesian_ridgeback"),
|
227
|
+
160: ("n02088094", "Afghan_hound"),
|
228
|
+
161: ("n02088238", "basset"),
|
229
|
+
162: ("n02088364", "beagle"),
|
230
|
+
163: ("n02088466", "bloodhound"),
|
231
|
+
164: ("n02088632", "bluetick"),
|
232
|
+
165: ("n02089078", "black-and-tan_coonhound"),
|
233
|
+
166: ("n02089867", "Walker_hound"),
|
234
|
+
167: ("n02089973", "English_foxhound"),
|
235
|
+
168: ("n02090379", "redbone"),
|
236
|
+
169: ("n02090622", "borzoi"),
|
237
|
+
170: ("n02090721", "Irish_wolfhound"),
|
238
|
+
171: ("n02091032", "Italian_greyhound"),
|
239
|
+
172: ("n02091134", "whippet"),
|
240
|
+
173: ("n02091244", "Ibizan_hound"),
|
241
|
+
174: ("n02091467", "Norwegian_elkhound"),
|
242
|
+
175: ("n02091635", "otterhound"),
|
243
|
+
176: ("n02091831", "Saluki"),
|
244
|
+
177: ("n02092002", "Scottish_deerhound"),
|
245
|
+
178: ("n02092339", "Weimaraner"),
|
246
|
+
179: ("n02093256", "Staffordshire_bullterrier"),
|
247
|
+
180: ("n02093428", "American_Staffordshire_terrier"),
|
248
|
+
181: ("n02093647", "Bedlington_terrier"),
|
249
|
+
182: ("n02093754", "Border_terrier"),
|
250
|
+
183: ("n02093859", "Kerry_blue_terrier"),
|
251
|
+
184: ("n02093991", "Irish_terrier"),
|
252
|
+
185: ("n02094114", "Norfolk_terrier"),
|
253
|
+
186: ("n02094258", "Norwich_terrier"),
|
254
|
+
187: ("n02094433", "Yorkshire_terrier"),
|
255
|
+
188: ("n02095314", "wire-haired_fox_terrier"),
|
256
|
+
189: ("n02095570", "Lakeland_terrier"),
|
257
|
+
190: ("n02095889", "Sealyham_terrier"),
|
258
|
+
191: ("n02096051", "Airedale"),
|
259
|
+
192: ("n02096177", "cairn"),
|
260
|
+
193: ("n02096294", "Australian_terrier"),
|
261
|
+
194: ("n02096437", "Dandie_Dinmont"),
|
262
|
+
195: ("n02096585", "Boston_bull"),
|
263
|
+
196: ("n02097047", "miniature_schnauzer"),
|
264
|
+
197: ("n02097130", "giant_schnauzer"),
|
265
|
+
198: ("n02097209", "standard_schnauzer"),
|
266
|
+
199: ("n02097298", "Scotch_terrier"),
|
267
|
+
200: ("n02097474", "Tibetan_terrier"),
|
268
|
+
201: ("n02097658", "silky_terrier"),
|
269
|
+
202: ("n02098105", "soft-coated_wheaten_terrier"),
|
270
|
+
203: ("n02098286", "West_Highland_white_terrier"),
|
271
|
+
204: ("n02098413", "Lhasa"),
|
272
|
+
205: ("n02099267", "flat-coated_retriever"),
|
273
|
+
206: ("n02099429", "curly-coated_retriever"),
|
274
|
+
207: ("n02099601", "golden_retriever"),
|
275
|
+
208: ("n02099712", "Labrador_retriever"),
|
276
|
+
209: ("n02099849", "Chesapeake_Bay_retriever"),
|
277
|
+
210: ("n02100236", "German_short-haired_pointer"),
|
278
|
+
211: ("n02100583", "vizsla"),
|
279
|
+
212: ("n02100735", "English_setter"),
|
280
|
+
213: ("n02100877", "Irish_setter"),
|
281
|
+
214: ("n02101006", "Gordon_setter"),
|
282
|
+
215: ("n02101388", "Brittany_spaniel"),
|
283
|
+
216: ("n02101556", "clumber"),
|
284
|
+
217: ("n02102040", "English_springer"),
|
285
|
+
218: ("n02102177", "Welsh_springer_spaniel"),
|
286
|
+
219: ("n02102318", "cocker_spaniel"),
|
287
|
+
220: ("n02102480", "Sussex_spaniel"),
|
288
|
+
221: ("n02102973", "Irish_water_spaniel"),
|
289
|
+
222: ("n02104029", "kuvasz"),
|
290
|
+
223: ("n02104365", "schipperke"),
|
291
|
+
224: ("n02105056", "groenendael"),
|
292
|
+
225: ("n02105162", "malinois"),
|
293
|
+
226: ("n02105251", "briard"),
|
294
|
+
227: ("n02105412", "kelpie"),
|
295
|
+
228: ("n02105505", "komondor"),
|
296
|
+
229: ("n02105641", "Old_English_sheepdog"),
|
297
|
+
230: ("n02105855", "Shetland_sheepdog"),
|
298
|
+
231: ("n02106030", "collie"),
|
299
|
+
232: ("n02106166", "Border_collie"),
|
300
|
+
233: ("n02106382", "Bouvier_des_Flandres"),
|
301
|
+
234: ("n02106550", "Rottweiler"),
|
302
|
+
235: ("n02106662", "German_shepherd"),
|
303
|
+
236: ("n02107142", "Doberman"),
|
304
|
+
237: ("n02107312", "miniature_pinscher"),
|
305
|
+
238: ("n02107574", "Greater_Swiss_Mountain_dog"),
|
306
|
+
239: ("n02107683", "Bernese_mountain_dog"),
|
307
|
+
240: ("n02107908", "Appenzeller"),
|
308
|
+
241: ("n02108000", "EntleBucher"),
|
309
|
+
242: ("n02108089", "boxer"),
|
310
|
+
243: ("n02108422", "bull_mastiff"),
|
311
|
+
244: ("n02108551", "Tibetan_mastiff"),
|
312
|
+
245: ("n02108915", "French_bulldog"),
|
313
|
+
246: ("n02109047", "Great_Dane"),
|
314
|
+
247: ("n02109525", "Saint_Bernard"),
|
315
|
+
248: ("n02109961", "Eskimo_dog"),
|
316
|
+
249: ("n02110063", "malamute"),
|
317
|
+
250: ("n02110185", "Siberian_husky"),
|
318
|
+
251: ("n02110341", "dalmatian"),
|
319
|
+
252: ("n02110627", "affenpinscher"),
|
320
|
+
253: ("n02110806", "basenji"),
|
321
|
+
254: ("n02110958", "pug"),
|
322
|
+
255: ("n02111129", "Leonberg"),
|
323
|
+
256: ("n02111277", "Newfoundland"),
|
324
|
+
257: ("n02111500", "Great_Pyrenees"),
|
325
|
+
258: ("n02111889", "Samoyed"),
|
326
|
+
259: ("n02112018", "Pomeranian"),
|
327
|
+
260: ("n02112137", "chow"),
|
328
|
+
261: ("n02112350", "keeshond"),
|
329
|
+
262: ("n02112706", "Brabancon_griffon"),
|
330
|
+
263: ("n02113023", "Pembroke"),
|
331
|
+
264: ("n02113186", "Cardigan"),
|
332
|
+
265: ("n02113624", "toy_poodle"),
|
333
|
+
266: ("n02113712", "miniature_poodle"),
|
334
|
+
267: ("n02113799", "standard_poodle"),
|
335
|
+
268: ("n02113978", "Mexican_hairless"),
|
336
|
+
269: ("n02114367", "timber_wolf"),
|
337
|
+
270: ("n02114548", "white_wolf"),
|
338
|
+
271: ("n02114712", "red_wolf"),
|
339
|
+
272: ("n02114855", "coyote"),
|
340
|
+
273: ("n02115641", "dingo"),
|
341
|
+
274: ("n02115913", "dhole"),
|
342
|
+
275: ("n02116738", "African_hunting_dog"),
|
343
|
+
276: ("n02117135", "hyena"),
|
344
|
+
277: ("n02119022", "red_fox"),
|
345
|
+
278: ("n02119789", "kit_fox"),
|
346
|
+
279: ("n02120079", "Arctic_fox"),
|
347
|
+
280: ("n02120505", "grey_fox"),
|
348
|
+
281: ("n02123045", "tabby"),
|
349
|
+
282: ("n02123159", "tiger_cat"),
|
350
|
+
283: ("n02123394", "Persian_cat"),
|
351
|
+
284: ("n02123597", "Siamese_cat"),
|
352
|
+
285: ("n02124075", "Egyptian_cat"),
|
353
|
+
286: ("n02125311", "cougar"),
|
354
|
+
287: ("n02127052", "lynx"),
|
355
|
+
288: ("n02128385", "leopard"),
|
356
|
+
289: ("n02128757", "snow_leopard"),
|
357
|
+
290: ("n02128925", "jaguar"),
|
358
|
+
291: ("n02129165", "lion"),
|
359
|
+
292: ("n02129604", "tiger"),
|
360
|
+
293: ("n02130308", "cheetah"),
|
361
|
+
294: ("n02132136", "brown_bear"),
|
362
|
+
295: ("n02133161", "American_black_bear"),
|
363
|
+
296: ("n02134084", "ice_bear"),
|
364
|
+
297: ("n02134418", "sloth_bear"),
|
365
|
+
298: ("n02137549", "mongoose"),
|
366
|
+
299: ("n02138441", "meerkat"),
|
367
|
+
300: ("n02165105", "tiger_beetle"),
|
368
|
+
301: ("n02165456", "ladybug"),
|
369
|
+
302: ("n02167151", "ground_beetle"),
|
370
|
+
303: ("n02168699", "long-horned_beetle"),
|
371
|
+
304: ("n02169497", "leaf_beetle"),
|
372
|
+
305: ("n02172182", "dung_beetle"),
|
373
|
+
306: ("n02174001", "rhinoceros_beetle"),
|
374
|
+
307: ("n02177972", "weevil"),
|
375
|
+
308: ("n02190166", "fly"),
|
376
|
+
309: ("n02206856", "bee"),
|
377
|
+
310: ("n02219486", "ant"),
|
378
|
+
311: ("n02226429", "grasshopper"),
|
379
|
+
312: ("n02229544", "cricket"),
|
380
|
+
313: ("n02231487", "walking_stick"),
|
381
|
+
314: ("n02233338", "cockroach"),
|
382
|
+
315: ("n02236044", "mantis"),
|
383
|
+
316: ("n02256656", "cicada"),
|
384
|
+
317: ("n02259212", "leafhopper"),
|
385
|
+
318: ("n02264363", "lacewing"),
|
386
|
+
319: ("n02268443", "dragonfly"),
|
387
|
+
320: ("n02268853", "damselfly"),
|
388
|
+
321: ("n02276258", "admiral"),
|
389
|
+
322: ("n02277742", "ringlet"),
|
390
|
+
323: ("n02279972", "monarch"),
|
391
|
+
324: ("n02280649", "cabbage_butterfly"),
|
392
|
+
325: ("n02281406", "sulphur_butterfly"),
|
393
|
+
326: ("n02281787", "lycaenid"),
|
394
|
+
327: ("n02317335", "starfish"),
|
395
|
+
328: ("n02319095", "sea_urchin"),
|
396
|
+
329: ("n02321529", "sea_cucumber"),
|
397
|
+
330: ("n02325366", "wood_rabbit"),
|
398
|
+
331: ("n02326432", "hare"),
|
399
|
+
332: ("n02328150", "Angora"),
|
400
|
+
333: ("n02342885", "hamster"),
|
401
|
+
334: ("n02346627", "porcupine"),
|
402
|
+
335: ("n02356798", "fox_squirrel"),
|
403
|
+
336: ("n02361337", "marmot"),
|
404
|
+
337: ("n02363005", "beaver"),
|
405
|
+
338: ("n02364673", "guinea_pig"),
|
406
|
+
339: ("n02389026", "sorrel"),
|
407
|
+
340: ("n02391049", "zebra"),
|
408
|
+
341: ("n02395406", "hog"),
|
409
|
+
342: ("n02396427", "wild_boar"),
|
410
|
+
343: ("n02397096", "warthog"),
|
411
|
+
344: ("n02398521", "hippopotamus"),
|
412
|
+
345: ("n02403003", "ox"),
|
413
|
+
346: ("n02408429", "water_buffalo"),
|
414
|
+
347: ("n02410509", "bison"),
|
415
|
+
348: ("n02412080", "ram"),
|
416
|
+
349: ("n02415577", "bighorn"),
|
417
|
+
350: ("n02417914", "ibex"),
|
418
|
+
351: ("n02422106", "hartebeest"),
|
419
|
+
352: ("n02422699", "impala"),
|
420
|
+
353: ("n02423022", "gazelle"),
|
421
|
+
354: ("n02437312", "Arabian_camel"),
|
422
|
+
355: ("n02437616", "llama"),
|
423
|
+
356: ("n02441942", "weasel"),
|
424
|
+
357: ("n02442845", "mink"),
|
425
|
+
358: ("n02443114", "polecat"),
|
426
|
+
359: ("n02443484", "black-footed_ferret"),
|
427
|
+
360: ("n02444819", "otter"),
|
428
|
+
361: ("n02445715", "skunk"),
|
429
|
+
362: ("n02447366", "badger"),
|
430
|
+
363: ("n02454379", "armadillo"),
|
431
|
+
364: ("n02457408", "three-toed_sloth"),
|
432
|
+
365: ("n02480495", "orangutan"),
|
433
|
+
366: ("n02480855", "gorilla"),
|
434
|
+
367: ("n02481823", "chimpanzee"),
|
435
|
+
368: ("n02483362", "gibbon"),
|
436
|
+
369: ("n02483708", "siamang"),
|
437
|
+
370: ("n02484975", "guenon"),
|
438
|
+
371: ("n02486261", "patas"),
|
439
|
+
372: ("n02486410", "baboon"),
|
440
|
+
373: ("n02487347", "macaque"),
|
441
|
+
374: ("n02488291", "langur"),
|
442
|
+
375: ("n02488702", "colobus"),
|
443
|
+
376: ("n02489166", "proboscis_monkey"),
|
444
|
+
377: ("n02490219", "marmoset"),
|
445
|
+
378: ("n02492035", "capuchin"),
|
446
|
+
379: ("n02492660", "howler_monkey"),
|
447
|
+
380: ("n02493509", "titi"),
|
448
|
+
381: ("n02493793", "spider_monkey"),
|
449
|
+
382: ("n02494079", "squirrel_monkey"),
|
450
|
+
383: ("n02497673", "Madagascar_cat"),
|
451
|
+
384: ("n02500267", "indri"),
|
452
|
+
385: ("n02504013", "Indian_elephant"),
|
453
|
+
386: ("n02504458", "African_elephant"),
|
454
|
+
387: ("n02509815", "lesser_panda"),
|
455
|
+
388: ("n02510455", "giant_panda"),
|
456
|
+
389: ("n02514041", "barracouta"),
|
457
|
+
390: ("n02526121", "eel"),
|
458
|
+
391: ("n02536864", "coho"),
|
459
|
+
392: ("n02606052", "rock_beauty"),
|
460
|
+
393: ("n02607072", "anemone_fish"),
|
461
|
+
394: ("n02640242", "sturgeon"),
|
462
|
+
395: ("n02641379", "gar"),
|
463
|
+
396: ("n02643566", "lionfish"),
|
464
|
+
397: ("n02655020", "puffer"),
|
465
|
+
398: ("n02666196", "abacus"),
|
466
|
+
399: ("n02667093", "abaya"),
|
467
|
+
400: ("n02669723", "academic_gown"),
|
468
|
+
401: ("n02672831", "accordion"),
|
469
|
+
402: ("n02676566", "acoustic_guitar"),
|
470
|
+
403: ("n02687172", "aircraft_carrier"),
|
471
|
+
404: ("n02690373", "airliner"),
|
472
|
+
405: ("n02692877", "airship"),
|
473
|
+
406: ("n02699494", "altar"),
|
474
|
+
407: ("n02701002", "ambulance"),
|
475
|
+
408: ("n02704792", "amphibian"),
|
476
|
+
409: ("n02708093", "analog_clock"),
|
477
|
+
410: ("n02727426", "apiary"),
|
478
|
+
411: ("n02730930", "apron"),
|
479
|
+
412: ("n02747177", "ashcan"),
|
480
|
+
413: ("n02749479", "assault_rifle"),
|
481
|
+
414: ("n02769748", "backpack"),
|
482
|
+
415: ("n02776631", "bakery"),
|
483
|
+
416: ("n02777292", "balance_beam"),
|
484
|
+
417: ("n02782093", "balloon"),
|
485
|
+
418: ("n02783161", "ballpoint"),
|
486
|
+
419: ("n02786058", "Band_Aid"),
|
487
|
+
420: ("n02787622", "banjo"),
|
488
|
+
421: ("n02788148", "bannister"),
|
489
|
+
422: ("n02790996", "barbell"),
|
490
|
+
423: ("n02791124", "barber_chair"),
|
491
|
+
424: ("n02791270", "barbershop"),
|
492
|
+
425: ("n02793495", "barn"),
|
493
|
+
426: ("n02794156", "barometer"),
|
494
|
+
427: ("n02795169", "barrel"),
|
495
|
+
428: ("n02797295", "barrow"),
|
496
|
+
429: ("n02799071", "baseball"),
|
497
|
+
430: ("n02802426", "basketball"),
|
498
|
+
431: ("n02804414", "bassinet"),
|
499
|
+
432: ("n02804610", "bassoon"),
|
500
|
+
433: ("n02807133", "bathing_cap"),
|
501
|
+
434: ("n02808304", "bath_towel"),
|
502
|
+
435: ("n02808440", "bathtub"),
|
503
|
+
436: ("n02814533", "beach_wagon"),
|
504
|
+
437: ("n02814860", "beacon"),
|
505
|
+
438: ("n02815834", "beaker"),
|
506
|
+
439: ("n02817516", "bearskin"),
|
507
|
+
440: ("n02823428", "beer_bottle"),
|
508
|
+
441: ("n02823750", "beer_glass"),
|
509
|
+
442: ("n02825657", "bell_cote"),
|
510
|
+
443: ("n02834397", "bib"),
|
511
|
+
444: ("n02835271", "bicycle-built-for-two"),
|
512
|
+
445: ("n02837789", "bikini"),
|
513
|
+
446: ("n02840245", "binder"),
|
514
|
+
447: ("n02841315", "binoculars"),
|
515
|
+
448: ("n02843684", "birdhouse"),
|
516
|
+
449: ("n02859443", "boathouse"),
|
517
|
+
450: ("n02860847", "bobsled"),
|
518
|
+
451: ("n02865351", "bolo_tie"),
|
519
|
+
452: ("n02869837", "bonnet"),
|
520
|
+
453: ("n02870880", "bookcase"),
|
521
|
+
454: ("n02871525", "bookshop"),
|
522
|
+
455: ("n02877765", "bottlecap"),
|
523
|
+
456: ("n02879718", "bow"),
|
524
|
+
457: ("n02883205", "bow_tie"),
|
525
|
+
458: ("n02892201", "brass"),
|
526
|
+
459: ("n02892767", "brassiere"),
|
527
|
+
460: ("n02894605", "breakwater"),
|
528
|
+
461: ("n02895154", "breastplate"),
|
529
|
+
462: ("n02906734", "broom"),
|
530
|
+
463: ("n02909870", "bucket"),
|
531
|
+
464: ("n02910353", "buckle"),
|
532
|
+
465: ("n02916936", "bulletproof_vest"),
|
533
|
+
466: ("n02917067", "bullet_train"),
|
534
|
+
467: ("n02927161", "butcher_shop"),
|
535
|
+
468: ("n02930766", "cab"),
|
536
|
+
469: ("n02939185", "caldron"),
|
537
|
+
470: ("n02948072", "candle"),
|
538
|
+
471: ("n02950826", "cannon"),
|
539
|
+
472: ("n02951358", "canoe"),
|
540
|
+
473: ("n02951585", "can_opener"),
|
541
|
+
474: ("n02963159", "cardigan"),
|
542
|
+
475: ("n02965783", "car_mirror"),
|
543
|
+
476: ("n02966193", "carousel"),
|
544
|
+
477: ("n02966687", "carpenter's_kit"),
|
545
|
+
478: ("n02971356", "carton"),
|
546
|
+
479: ("n02974003", "car_wheel"),
|
547
|
+
480: ("n02977058", "cash_machine"),
|
548
|
+
481: ("n02978881", "cassette"),
|
549
|
+
482: ("n02979186", "cassette_player"),
|
550
|
+
483: ("n02980441", "castle"),
|
551
|
+
484: ("n02981792", "catamaran"),
|
552
|
+
485: ("n02988304", "CD_player"),
|
553
|
+
486: ("n02992211", "cello"),
|
554
|
+
487: ("n02992529", "cellular_telephone"),
|
555
|
+
488: ("n02999410", "chain"),
|
556
|
+
489: ("n03000134", "chainlink_fence"),
|
557
|
+
490: ("n03000247", "chain_mail"),
|
558
|
+
491: ("n03000684", "chain_saw"),
|
559
|
+
492: ("n03014705", "chest"),
|
560
|
+
493: ("n03016953", "chiffonier"),
|
561
|
+
494: ("n03017168", "chime"),
|
562
|
+
495: ("n03018349", "china_cabinet"),
|
563
|
+
496: ("n03026506", "Christmas_stocking"),
|
564
|
+
497: ("n03028079", "church"),
|
565
|
+
498: ("n03032252", "cinema"),
|
566
|
+
499: ("n03041632", "cleaver"),
|
567
|
+
500: ("n03042490", "cliff_dwelling"),
|
568
|
+
501: ("n03045698", "cloak"),
|
569
|
+
502: ("n03047690", "clog"),
|
570
|
+
503: ("n03062245", "cocktail_shaker"),
|
571
|
+
504: ("n03063599", "coffee_mug"),
|
572
|
+
505: ("n03063689", "coffeepot"),
|
573
|
+
506: ("n03065424", "coil"),
|
574
|
+
507: ("n03075370", "combination_lock"),
|
575
|
+
508: ("n03085013", "computer_keyboard"),
|
576
|
+
509: ("n03089624", "confectionery"),
|
577
|
+
510: ("n03095699", "container_ship"),
|
578
|
+
511: ("n03100240", "convertible"),
|
579
|
+
512: ("n03109150", "corkscrew"),
|
580
|
+
513: ("n03110669", "cornet"),
|
581
|
+
514: ("n03124043", "cowboy_boot"),
|
582
|
+
515: ("n03124170", "cowboy_hat"),
|
583
|
+
516: ("n03125729", "cradle"),
|
584
|
+
517: ("n03126707", "crane"),
|
585
|
+
518: ("n03127747", "crash_helmet"),
|
586
|
+
519: ("n03127925", "crate"),
|
587
|
+
520: ("n03131574", "crib"),
|
588
|
+
521: ("n03133878", "Crock_Pot"),
|
589
|
+
522: ("n03134739", "croquet_ball"),
|
590
|
+
523: ("n03141823", "crutch"),
|
591
|
+
524: ("n03146219", "cuirass"),
|
592
|
+
525: ("n03160309", "dam"),
|
593
|
+
526: ("n03179701", "desk"),
|
594
|
+
527: ("n03180011", "desktop_computer"),
|
595
|
+
528: ("n03187595", "dial_telephone"),
|
596
|
+
529: ("n03188531", "diaper"),
|
597
|
+
530: ("n03196217", "digital_clock"),
|
598
|
+
531: ("n03197337", "digital_watch"),
|
599
|
+
532: ("n03201208", "dining_table"),
|
600
|
+
533: ("n03207743", "dishrag"),
|
601
|
+
534: ("n03207941", "dishwasher"),
|
602
|
+
535: ("n03208938", "disk_brake"),
|
603
|
+
536: ("n03216828", "dock"),
|
604
|
+
537: ("n03218198", "dogsled"),
|
605
|
+
538: ("n03220513", "dome"),
|
606
|
+
539: ("n03223299", "doormat"),
|
607
|
+
540: ("n03240683", "drilling_platform"),
|
608
|
+
541: ("n03249569", "drum"),
|
609
|
+
542: ("n03250847", "drumstick"),
|
610
|
+
543: ("n03255030", "dumbbell"),
|
611
|
+
544: ("n03259280", "Dutch_oven"),
|
612
|
+
545: ("n03271574", "electric_fan"),
|
613
|
+
546: ("n03272010", "electric_guitar"),
|
614
|
+
547: ("n03272562", "electric_locomotive"),
|
615
|
+
548: ("n03290653", "entertainment_center"),
|
616
|
+
549: ("n03291819", "envelope"),
|
617
|
+
550: ("n03297495", "espresso_maker"),
|
618
|
+
551: ("n03314780", "face_powder"),
|
619
|
+
552: ("n03325584", "feather_boa"),
|
620
|
+
553: ("n03337140", "file"),
|
621
|
+
554: ("n03344393", "fireboat"),
|
622
|
+
555: ("n03345487", "fire_engine"),
|
623
|
+
556: ("n03347037", "fire_screen"),
|
624
|
+
557: ("n03355925", "flagpole"),
|
625
|
+
558: ("n03372029", "flute"),
|
626
|
+
559: ("n03376595", "folding_chair"),
|
627
|
+
560: ("n03379051", "football_helmet"),
|
628
|
+
561: ("n03384352", "forklift"),
|
629
|
+
562: ("n03388043", "fountain"),
|
630
|
+
563: ("n03388183", "fountain_pen"),
|
631
|
+
564: ("n03388549", "four-poster"),
|
632
|
+
565: ("n03393912", "freight_car"),
|
633
|
+
566: ("n03394916", "French_horn"),
|
634
|
+
567: ("n03400231", "frying_pan"),
|
635
|
+
568: ("n03404251", "fur_coat"),
|
636
|
+
569: ("n03417042", "garbage_truck"),
|
637
|
+
570: ("n03424325", "gasmask"),
|
638
|
+
571: ("n03425413", "gas_pump"),
|
639
|
+
572: ("n03443371", "goblet"),
|
640
|
+
573: ("n03444034", "go-kart"),
|
641
|
+
574: ("n03445777", "golf_ball"),
|
642
|
+
575: ("n03445924", "golfcart"),
|
643
|
+
576: ("n03447447", "gondola"),
|
644
|
+
577: ("n03447721", "gong"),
|
645
|
+
578: ("n03450230", "gown"),
|
646
|
+
579: ("n03452741", "grand_piano"),
|
647
|
+
580: ("n03457902", "greenhouse"),
|
648
|
+
581: ("n03459775", "grille"),
|
649
|
+
582: ("n03461385", "grocery_store"),
|
650
|
+
583: ("n03467068", "guillotine"),
|
651
|
+
584: ("n03476684", "hair_slide"),
|
652
|
+
585: ("n03476991", "hair_spray"),
|
653
|
+
586: ("n03478589", "half_track"),
|
654
|
+
587: ("n03481172", "hammer"),
|
655
|
+
588: ("n03482405", "hamper"),
|
656
|
+
589: ("n03483316", "hand_blower"),
|
657
|
+
590: ("n03485407", "hand-held_computer"),
|
658
|
+
591: ("n03485794", "handkerchief"),
|
659
|
+
592: ("n03492542", "hard_disc"),
|
660
|
+
593: ("n03494278", "harmonica"),
|
661
|
+
594: ("n03495258", "harp"),
|
662
|
+
595: ("n03496892", "harvester"),
|
663
|
+
596: ("n03498962", "hatchet"),
|
664
|
+
597: ("n03527444", "holster"),
|
665
|
+
598: ("n03529860", "home_theater"),
|
666
|
+
599: ("n03530642", "honeycomb"),
|
667
|
+
600: ("n03532672", "hook"),
|
668
|
+
601: ("n03534580", "hoopskirt"),
|
669
|
+
602: ("n03535780", "horizontal_bar"),
|
670
|
+
603: ("n03538406", "horse_cart"),
|
671
|
+
604: ("n03544143", "hourglass"),
|
672
|
+
605: ("n03584254", "iPod"),
|
673
|
+
606: ("n03584829", "iron"),
|
674
|
+
607: ("n03590841", "jack-o'-lantern"),
|
675
|
+
608: ("n03594734", "jean"),
|
676
|
+
609: ("n03594945", "jeep"),
|
677
|
+
610: ("n03595614", "jersey"),
|
678
|
+
611: ("n03598930", "jigsaw_puzzle"),
|
679
|
+
612: ("n03599486", "jinrikisha"),
|
680
|
+
613: ("n03602883", "joystick"),
|
681
|
+
614: ("n03617480", "kimono"),
|
682
|
+
615: ("n03623198", "knee_pad"),
|
683
|
+
616: ("n03627232", "knot"),
|
684
|
+
617: ("n03630383", "lab_coat"),
|
685
|
+
618: ("n03633091", "ladle"),
|
686
|
+
619: ("n03637318", "lampshade"),
|
687
|
+
620: ("n03642806", "laptop"),
|
688
|
+
621: ("n03649909", "lawn_mower"),
|
689
|
+
622: ("n03657121", "lens_cap"),
|
690
|
+
623: ("n03658185", "letter_opener"),
|
691
|
+
624: ("n03661043", "library"),
|
692
|
+
625: ("n03662601", "lifeboat"),
|
693
|
+
626: ("n03666591", "lighter"),
|
694
|
+
627: ("n03670208", "limousine"),
|
695
|
+
628: ("n03673027", "liner"),
|
696
|
+
629: ("n03676483", "lipstick"),
|
697
|
+
630: ("n03680355", "Loafer"),
|
698
|
+
631: ("n03690938", "lotion"),
|
699
|
+
632: ("n03691459", "loudspeaker"),
|
700
|
+
633: ("n03692522", "loupe"),
|
701
|
+
634: ("n03697007", "lumbermill"),
|
702
|
+
635: ("n03706229", "magnetic_compass"),
|
703
|
+
636: ("n03709823", "mailbag"),
|
704
|
+
637: ("n03710193", "mailbox"),
|
705
|
+
638: ("n03710637", "maillot"),
|
706
|
+
639: ("n03710721", "maillot"),
|
707
|
+
640: ("n03717622", "manhole_cover"),
|
708
|
+
641: ("n03720891", "maraca"),
|
709
|
+
642: ("n03721384", "marimba"),
|
710
|
+
643: ("n03724870", "mask"),
|
711
|
+
644: ("n03729826", "matchstick"),
|
712
|
+
645: ("n03733131", "maypole"),
|
713
|
+
646: ("n03733281", "maze"),
|
714
|
+
647: ("n03733805", "measuring_cup"),
|
715
|
+
648: ("n03742115", "medicine_chest"),
|
716
|
+
649: ("n03743016", "megalith"),
|
717
|
+
650: ("n03759954", "microphone"),
|
718
|
+
651: ("n03761084", "microwave"),
|
719
|
+
652: ("n03763968", "military_uniform"),
|
720
|
+
653: ("n03764736", "milk_can"),
|
721
|
+
654: ("n03769881", "minibus"),
|
722
|
+
655: ("n03770439", "miniskirt"),
|
723
|
+
656: ("n03770679", "minivan"),
|
724
|
+
657: ("n03773504", "missile"),
|
725
|
+
658: ("n03775071", "mitten"),
|
726
|
+
659: ("n03775546", "mixing_bowl"),
|
727
|
+
660: ("n03776460", "mobile_home"),
|
728
|
+
661: ("n03777568", "Model_T"),
|
729
|
+
662: ("n03777754", "modem"),
|
730
|
+
663: ("n03781244", "monastery"),
|
731
|
+
664: ("n03782006", "monitor"),
|
732
|
+
665: ("n03785016", "moped"),
|
733
|
+
666: ("n03786901", "mortar"),
|
734
|
+
667: ("n03787032", "mortarboard"),
|
735
|
+
668: ("n03788195", "mosque"),
|
736
|
+
669: ("n03788365", "mosquito_net"),
|
737
|
+
670: ("n03791053", "motor_scooter"),
|
738
|
+
671: ("n03792782", "mountain_bike"),
|
739
|
+
672: ("n03792972", "mountain_tent"),
|
740
|
+
673: ("n03793489", "mouse"),
|
741
|
+
674: ("n03794056", "mousetrap"),
|
742
|
+
675: ("n03796401", "moving_van"),
|
743
|
+
676: ("n03803284", "muzzle"),
|
744
|
+
677: ("n03804744", "nail"),
|
745
|
+
678: ("n03814639", "neck_brace"),
|
746
|
+
679: ("n03814906", "necklace"),
|
747
|
+
680: ("n03825788", "nipple"),
|
748
|
+
681: ("n03832673", "notebook"),
|
749
|
+
682: ("n03837869", "obelisk"),
|
750
|
+
683: ("n03838899", "oboe"),
|
751
|
+
684: ("n03840681", "ocarina"),
|
752
|
+
685: ("n03841143", "odometer"),
|
753
|
+
686: ("n03843555", "oil_filter"),
|
754
|
+
687: ("n03854065", "organ"),
|
755
|
+
688: ("n03857828", "oscilloscope"),
|
756
|
+
689: ("n03866082", "overskirt"),
|
757
|
+
690: ("n03868242", "oxcart"),
|
758
|
+
691: ("n03868863", "oxygen_mask"),
|
759
|
+
692: ("n03871628", "packet"),
|
760
|
+
693: ("n03873416", "paddle"),
|
761
|
+
694: ("n03874293", "paddlewheel"),
|
762
|
+
695: ("n03874599", "padlock"),
|
763
|
+
696: ("n03876231", "paintbrush"),
|
764
|
+
697: ("n03877472", "pajama"),
|
765
|
+
698: ("n03877845", "palace"),
|
766
|
+
699: ("n03884397", "panpipe"),
|
767
|
+
700: ("n03887697", "paper_towel"),
|
768
|
+
701: ("n03888257", "parachute"),
|
769
|
+
702: ("n03888605", "parallel_bars"),
|
770
|
+
703: ("n03891251", "park_bench"),
|
771
|
+
704: ("n03891332", "parking_meter"),
|
772
|
+
705: ("n03895866", "passenger_car"),
|
773
|
+
706: ("n03899768", "patio"),
|
774
|
+
707: ("n03902125", "pay-phone"),
|
775
|
+
708: ("n03903868", "pedestal"),
|
776
|
+
709: ("n03908618", "pencil_box"),
|
777
|
+
710: ("n03908714", "pencil_sharpener"),
|
778
|
+
711: ("n03916031", "perfume"),
|
779
|
+
712: ("n03920288", "Petri_dish"),
|
780
|
+
713: ("n03924679", "photocopier"),
|
781
|
+
714: ("n03929660", "pick"),
|
782
|
+
715: ("n03929855", "pickelhaube"),
|
783
|
+
716: ("n03930313", "picket_fence"),
|
784
|
+
717: ("n03930630", "pickup"),
|
785
|
+
718: ("n03933933", "pier"),
|
786
|
+
719: ("n03935335", "piggy_bank"),
|
787
|
+
720: ("n03937543", "pill_bottle"),
|
788
|
+
721: ("n03938244", "pillow"),
|
789
|
+
722: ("n03942813", "ping-pong_ball"),
|
790
|
+
723: ("n03944341", "pinwheel"),
|
791
|
+
724: ("n03947888", "pirate"),
|
792
|
+
725: ("n03950228", "pitcher"),
|
793
|
+
726: ("n03954731", "plane"),
|
794
|
+
727: ("n03956157", "planetarium"),
|
795
|
+
728: ("n03958227", "plastic_bag"),
|
796
|
+
729: ("n03961711", "plate_rack"),
|
797
|
+
730: ("n03967562", "plow"),
|
798
|
+
731: ("n03970156", "plunger"),
|
799
|
+
732: ("n03976467", "Polaroid_camera"),
|
800
|
+
733: ("n03976657", "pole"),
|
801
|
+
734: ("n03977966", "police_van"),
|
802
|
+
735: ("n03980874", "poncho"),
|
803
|
+
736: ("n03982430", "pool_table"),
|
804
|
+
737: ("n03983396", "pop_bottle"),
|
805
|
+
738: ("n03991062", "pot"),
|
806
|
+
739: ("n03992509", "potter's_wheel"),
|
807
|
+
740: ("n03995372", "power_drill"),
|
808
|
+
741: ("n03998194", "prayer_rug"),
|
809
|
+
742: ("n04004767", "printer"),
|
810
|
+
743: ("n04005630", "prison"),
|
811
|
+
744: ("n04008634", "projectile"),
|
812
|
+
745: ("n04009552", "projector"),
|
813
|
+
746: ("n04019541", "puck"),
|
814
|
+
747: ("n04023962", "punching_bag"),
|
815
|
+
748: ("n04026417", "purse"),
|
816
|
+
749: ("n04033901", "quill"),
|
817
|
+
750: ("n04033995", "quilt"),
|
818
|
+
751: ("n04037443", "racer"),
|
819
|
+
752: ("n04039381", "racket"),
|
820
|
+
753: ("n04040759", "radiator"),
|
821
|
+
754: ("n04041544", "radio"),
|
822
|
+
755: ("n04044716", "radio_telescope"),
|
823
|
+
756: ("n04049303", "rain_barrel"),
|
824
|
+
757: ("n04065272", "recreational_vehicle"),
|
825
|
+
758: ("n04067472", "reel"),
|
826
|
+
759: ("n04069434", "reflex_camera"),
|
827
|
+
760: ("n04070727", "refrigerator"),
|
828
|
+
761: ("n04074963", "remote_control"),
|
829
|
+
762: ("n04081281", "restaurant"),
|
830
|
+
763: ("n04086273", "revolver"),
|
831
|
+
764: ("n04090263", "rifle"),
|
832
|
+
765: ("n04099969", "rocking_chair"),
|
833
|
+
766: ("n04111531", "rotisserie"),
|
834
|
+
767: ("n04116512", "rubber_eraser"),
|
835
|
+
768: ("n04118538", "rugby_ball"),
|
836
|
+
769: ("n04118776", "rule"),
|
837
|
+
770: ("n04120489", "running_shoe"),
|
838
|
+
771: ("n04125021", "safe"),
|
839
|
+
772: ("n04127249", "safety_pin"),
|
840
|
+
773: ("n04131690", "saltshaker"),
|
841
|
+
774: ("n04133789", "sandal"),
|
842
|
+
775: ("n04136333", "sarong"),
|
843
|
+
776: ("n04141076", "sax"),
|
844
|
+
777: ("n04141327", "scabbard"),
|
845
|
+
778: ("n04141975", "scale"),
|
846
|
+
779: ("n04146614", "school_bus"),
|
847
|
+
780: ("n04147183", "schooner"),
|
848
|
+
781: ("n04149813", "scoreboard"),
|
849
|
+
782: ("n04152593", "screen"),
|
850
|
+
783: ("n04153751", "screw"),
|
851
|
+
784: ("n04154565", "screwdriver"),
|
852
|
+
785: ("n04162706", "seat_belt"),
|
853
|
+
786: ("n04179913", "sewing_machine"),
|
854
|
+
787: ("n04192698", "shield"),
|
855
|
+
788: ("n04200800", "shoe_shop"),
|
856
|
+
789: ("n04201297", "shoji"),
|
857
|
+
790: ("n04204238", "shopping_basket"),
|
858
|
+
791: ("n04204347", "shopping_cart"),
|
859
|
+
792: ("n04208210", "shovel"),
|
860
|
+
793: ("n04209133", "shower_cap"),
|
861
|
+
794: ("n04209239", "shower_curtain"),
|
862
|
+
795: ("n04228054", "ski"),
|
863
|
+
796: ("n04229816", "ski_mask"),
|
864
|
+
797: ("n04235860", "sleeping_bag"),
|
865
|
+
798: ("n04238763", "slide_rule"),
|
866
|
+
799: ("n04239074", "sliding_door"),
|
867
|
+
800: ("n04243546", "slot"),
|
868
|
+
801: ("n04251144", "snorkel"),
|
869
|
+
802: ("n04252077", "snowmobile"),
|
870
|
+
803: ("n04252225", "snowplow"),
|
871
|
+
804: ("n04254120", "soap_dispenser"),
|
872
|
+
805: ("n04254680", "soccer_ball"),
|
873
|
+
806: ("n04254777", "sock"),
|
874
|
+
807: ("n04258138", "solar_dish"),
|
875
|
+
808: ("n04259630", "sombrero"),
|
876
|
+
809: ("n04263257", "soup_bowl"),
|
877
|
+
810: ("n04264628", "space_bar"),
|
878
|
+
811: ("n04265275", "space_heater"),
|
879
|
+
812: ("n04266014", "space_shuttle"),
|
880
|
+
813: ("n04270147", "spatula"),
|
881
|
+
814: ("n04273569", "speedboat"),
|
882
|
+
815: ("n04275548", "spider_web"),
|
883
|
+
816: ("n04277352", "spindle"),
|
884
|
+
817: ("n04285008", "sports_car"),
|
885
|
+
818: ("n04286575", "spotlight"),
|
886
|
+
819: ("n04296562", "stage"),
|
887
|
+
820: ("n04310018", "steam_locomotive"),
|
888
|
+
821: ("n04311004", "steel_arch_bridge"),
|
889
|
+
822: ("n04311174", "steel_drum"),
|
890
|
+
823: ("n04317175", "stethoscope"),
|
891
|
+
824: ("n04325704", "stole"),
|
892
|
+
825: ("n04326547", "stone_wall"),
|
893
|
+
826: ("n04328186", "stopwatch"),
|
894
|
+
827: ("n04330267", "stove"),
|
895
|
+
828: ("n04332243", "strainer"),
|
896
|
+
829: ("n04335435", "streetcar"),
|
897
|
+
830: ("n04336792", "stretcher"),
|
898
|
+
831: ("n04344873", "studio_couch"),
|
899
|
+
832: ("n04346328", "stupa"),
|
900
|
+
833: ("n04347754", "submarine"),
|
901
|
+
834: ("n04350905", "suit"),
|
902
|
+
835: ("n04355338", "sundial"),
|
903
|
+
836: ("n04355933", "sunglass"),
|
904
|
+
837: ("n04356056", "sunglasses"),
|
905
|
+
838: ("n04357314", "sunscreen"),
|
906
|
+
839: ("n04366367", "suspension_bridge"),
|
907
|
+
840: ("n04367480", "swab"),
|
908
|
+
841: ("n04370456", "sweatshirt"),
|
909
|
+
842: ("n04371430", "swimming_trunks"),
|
910
|
+
843: ("n04371774", "swing"),
|
911
|
+
844: ("n04372370", "switch"),
|
912
|
+
845: ("n04376876", "syringe"),
|
913
|
+
846: ("n04380533", "table_lamp"),
|
914
|
+
847: ("n04389033", "tank"),
|
915
|
+
848: ("n04392985", "tape_player"),
|
916
|
+
849: ("n04398044", "teapot"),
|
917
|
+
850: ("n04399382", "teddy"),
|
918
|
+
851: ("n04404412", "television"),
|
919
|
+
852: ("n04409515", "tennis_ball"),
|
920
|
+
853: ("n04417672", "thatch"),
|
921
|
+
854: ("n04418357", "theater_curtain"),
|
922
|
+
855: ("n04423845", "thimble"),
|
923
|
+
856: ("n04428191", "thresher"),
|
924
|
+
857: ("n04429376", "throne"),
|
925
|
+
858: ("n04435653", "tile_roof"),
|
926
|
+
859: ("n04442312", "toaster"),
|
927
|
+
860: ("n04443257", "tobacco_shop"),
|
928
|
+
861: ("n04447861", "toilet_seat"),
|
929
|
+
862: ("n04456115", "torch"),
|
930
|
+
863: ("n04458633", "totem_pole"),
|
931
|
+
864: ("n04461696", "tow_truck"),
|
932
|
+
865: ("n04462240", "toyshop"),
|
933
|
+
866: ("n04465501", "tractor"),
|
934
|
+
867: ("n04467665", "trailer_truck"),
|
935
|
+
868: ("n04476259", "tray"),
|
936
|
+
869: ("n04479046", "trench_coat"),
|
937
|
+
870: ("n04482393", "tricycle"),
|
938
|
+
871: ("n04483307", "trimaran"),
|
939
|
+
872: ("n04485082", "tripod"),
|
940
|
+
873: ("n04486054", "triumphal_arch"),
|
941
|
+
874: ("n04487081", "trolleybus"),
|
942
|
+
875: ("n04487394", "trombone"),
|
943
|
+
876: ("n04493381", "tub"),
|
944
|
+
877: ("n04501370", "turnstile"),
|
945
|
+
878: ("n04505470", "typewriter_keyboard"),
|
946
|
+
879: ("n04507155", "umbrella"),
|
947
|
+
880: ("n04509417", "unicycle"),
|
948
|
+
881: ("n04515003", "upright"),
|
949
|
+
882: ("n04517823", "vacuum"),
|
950
|
+
883: ("n04522168", "vase"),
|
951
|
+
884: ("n04523525", "vault"),
|
952
|
+
885: ("n04525038", "velvet"),
|
953
|
+
886: ("n04525305", "vending_machine"),
|
954
|
+
887: ("n04532106", "vestment"),
|
955
|
+
888: ("n04532670", "viaduct"),
|
956
|
+
889: ("n04536866", "violin"),
|
957
|
+
890: ("n04540053", "volleyball"),
|
958
|
+
891: ("n04542943", "waffle_iron"),
|
959
|
+
892: ("n04548280", "wall_clock"),
|
960
|
+
893: ("n04548362", "wallet"),
|
961
|
+
894: ("n04550184", "wardrobe"),
|
962
|
+
895: ("n04552348", "warplane"),
|
963
|
+
896: ("n04553703", "washbasin"),
|
964
|
+
897: ("n04554684", "washer"),
|
965
|
+
898: ("n04557648", "water_bottle"),
|
966
|
+
899: ("n04560804", "water_jug"),
|
967
|
+
900: ("n04562935", "water_tower"),
|
968
|
+
901: ("n04579145", "whiskey_jug"),
|
969
|
+
902: ("n04579432", "whistle"),
|
970
|
+
903: ("n04584207", "wig"),
|
971
|
+
904: ("n04589890", "window_screen"),
|
972
|
+
905: ("n04590129", "window_shade"),
|
973
|
+
906: ("n04591157", "Windsor_tie"),
|
974
|
+
907: ("n04591713", "wine_bottle"),
|
975
|
+
908: ("n04592741", "wing"),
|
976
|
+
909: ("n04596742", "wok"),
|
977
|
+
910: ("n04597913", "wooden_spoon"),
|
978
|
+
911: ("n04599235", "wool"),
|
979
|
+
912: ("n04604644", "worm_fence"),
|
980
|
+
913: ("n04606251", "wreck"),
|
981
|
+
914: ("n04612504", "yawl"),
|
982
|
+
915: ("n04613696", "yurt"),
|
983
|
+
916: ("n06359193", "web_site"),
|
984
|
+
917: ("n06596364", "comic_book"),
|
985
|
+
918: ("n06785654", "crossword_puzzle"),
|
986
|
+
919: ("n06794110", "street_sign"),
|
987
|
+
920: ("n06874185", "traffic_light"),
|
988
|
+
921: ("n07248320", "book_jacket"),
|
989
|
+
922: ("n07565083", "menu"),
|
990
|
+
923: ("n07579787", "plate"),
|
991
|
+
924: ("n07583066", "guacamole"),
|
992
|
+
925: ("n07584110", "consomme"),
|
993
|
+
926: ("n07590611", "hot_pot"),
|
994
|
+
927: ("n07613480", "trifle"),
|
995
|
+
928: ("n07614500", "ice_cream"),
|
996
|
+
929: ("n07615774", "ice_lolly"),
|
997
|
+
930: ("n07684084", "French_loaf"),
|
998
|
+
931: ("n07693725", "bagel"),
|
999
|
+
932: ("n07695742", "pretzel"),
|
1000
|
+
933: ("n07697313", "cheeseburger"),
|
1001
|
+
934: ("n07697537", "hotdog"),
|
1002
|
+
935: ("n07711569", "mashed_potato"),
|
1003
|
+
936: ("n07714571", "head_cabbage"),
|
1004
|
+
937: ("n07714990", "broccoli"),
|
1005
|
+
938: ("n07715103", "cauliflower"),
|
1006
|
+
939: ("n07716358", "zucchini"),
|
1007
|
+
940: ("n07716906", "spaghetti_squash"),
|
1008
|
+
941: ("n07717410", "acorn_squash"),
|
1009
|
+
942: ("n07717556", "butternut_squash"),
|
1010
|
+
943: ("n07718472", "cucumber"),
|
1011
|
+
944: ("n07718747", "artichoke"),
|
1012
|
+
945: ("n07720875", "bell_pepper"),
|
1013
|
+
946: ("n07730033", "cardoon"),
|
1014
|
+
947: ("n07734744", "mushroom"),
|
1015
|
+
948: ("n07742313", "Granny_Smith"),
|
1016
|
+
949: ("n07745940", "strawberry"),
|
1017
|
+
950: ("n07747607", "orange"),
|
1018
|
+
951: ("n07749582", "lemon"),
|
1019
|
+
952: ("n07753113", "fig"),
|
1020
|
+
953: ("n07753275", "pineapple"),
|
1021
|
+
954: ("n07753592", "banana"),
|
1022
|
+
955: ("n07754684", "jackfruit"),
|
1023
|
+
956: ("n07760859", "custard_apple"),
|
1024
|
+
957: ("n07768694", "pomegranate"),
|
1025
|
+
958: ("n07802026", "hay"),
|
1026
|
+
959: ("n07831146", "carbonara"),
|
1027
|
+
960: ("n07836838", "chocolate_sauce"),
|
1028
|
+
961: ("n07860988", "dough"),
|
1029
|
+
962: ("n07871810", "meat_loaf"),
|
1030
|
+
963: ("n07873807", "pizza"),
|
1031
|
+
964: ("n07875152", "potpie"),
|
1032
|
+
965: ("n07880968", "burrito"),
|
1033
|
+
966: ("n07892512", "red_wine"),
|
1034
|
+
967: ("n07920052", "espresso"),
|
1035
|
+
968: ("n07930864", "cup"),
|
1036
|
+
969: ("n07932039", "eggnog"),
|
1037
|
+
970: ("n09193705", "alp"),
|
1038
|
+
971: ("n09229709", "bubble"),
|
1039
|
+
972: ("n09246464", "cliff"),
|
1040
|
+
973: ("n09256479", "coral_reef"),
|
1041
|
+
974: ("n09288635", "geyser"),
|
1042
|
+
975: ("n09332890", "lakeside"),
|
1043
|
+
976: ("n09399592", "promontory"),
|
1044
|
+
977: ("n09421951", "sandbar"),
|
1045
|
+
978: ("n09428293", "seashore"),
|
1046
|
+
979: ("n09468604", "valley"),
|
1047
|
+
980: ("n09472597", "volcano"),
|
1048
|
+
981: ("n09835506", "ballplayer"),
|
1049
|
+
982: ("n10148035", "groom"),
|
1050
|
+
983: ("n10565667", "scuba_diver"),
|
1051
|
+
984: ("n11879895", "rapeseed"),
|
1052
|
+
985: ("n11939491", "daisy"),
|
1053
|
+
986: ("n12057211", "yellow_lady's_slipper"),
|
1054
|
+
987: ("n12144580", "corn"),
|
1055
|
+
988: ("n12267677", "acorn"),
|
1056
|
+
989: ("n12620546", "hip"),
|
1057
|
+
990: ("n12768682", "buckeye"),
|
1058
|
+
991: ("n12985857", "coral_fungus"),
|
1059
|
+
992: ("n12998815", "agaric"),
|
1060
|
+
993: ("n13037406", "gyromitra"),
|
1061
|
+
994: ("n13040303", "stinkhorn"),
|
1062
|
+
995: ("n13044778", "earthstar"),
|
1063
|
+
996: ("n13052670", "hen-of-the-woods"),
|
1064
|
+
997: ("n13054560", "bolete"),
|
1065
|
+
998: ("n13133613", "ear"),
|
1066
|
+
999: ("n15075141", "toilet_tissue"),
|
1067
|
+
}
|