tarekziade commited on
Commit
a15b008
·
verified ·
1 Parent(s): d85acbe

Upload 20 files

Browse files
README.md CHANGED
@@ -1,3 +1,78 @@
1
  ---
 
 
 
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ tags:
3
+ - image-to-text
4
+ - image-captioning
5
  license: apache-2.0
6
+ metrics:
7
+ - rouge
8
+ datasets:
9
+ - Mozilla/flickr30k-transformed-captions
10
+ widget:
11
+ - src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/savanna.jpg
12
+ example_title: Savanna
13
+ - src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/football-match.jpg
14
+ example_title: Football Match
15
+ - src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/airport.jpg
16
+ example_title: Airport
17
+ base_model:
18
+ - google/vit-base-patch16-224-in21k
19
+
20
+ model-index:
21
+ - name: mozilla/distilvit
22
+ results:
23
+ - task:
24
+ type: image-to-text
25
+ name: Image To Text
26
+ dataset:
27
+ name: Mozilla/flickr30k-transformed-captions
28
+ type: Mozilla/flickr30k-transformed-captions
29
+ metrics:
30
+ - name: ROUGE-1
31
+ type: rouge
32
+ value: 43.006
33
+ verified: true
34
+ - name: ROUGE-2
35
+ type: rouge
36
+ value: 16.9939
37
+ verified: true
38
+ - name: ROUGE-L
39
+ type: rouge
40
+ value: 38.8923
41
+ verified: true
42
+ - name: ROUGE-LSUM
43
+ type: rouge
44
+ value: 38.8877
45
+ verified: true
46
+ - name: loss
47
+ type: loss
48
+ value: 0.19939416646957397
49
+ - name: gen_len
50
+ type: gen_len
51
+ value: 11.327256736227712
52
+ verified: true
53
  ---
54
+
55
+ # distilvit
56
+
57
+ This model is a work in progress. Fine-tuned version of those base models:
58
+
59
+ - a VIT model for the image encoder: https://huggingface.co/google/vit-base-patch16-224-in21k
60
+ - a Distilled GPT-2 model for the text decoder: https://huggingface.co/distilbert/distilgpt2
61
+
62
+ This model was trained on:
63
+
64
+ - Flickr30k : https://huggingface.co/datasets/nlphuji/flickr30k
65
+ - COCO 2017: https://cocodataset.org
66
+
67
+ You can get that checkpoint using the 3083a3cef6e3c8dd90df3f088074bbe836b0f403 commit.
68
+
69
+ It was then further fine-tuned on :
70
+
71
+ - [Flickr30k debiased](https://huggingface.co/datasets/Mozilla/flickr30k-transformed-captions)
72
+ - [DocOrNot](https://huggingface.co/datasets/Mozilla/docornot)
73
+ - [Alt Text Validation](https://huggingface.co/datasets/Mozilla/alt-text-validation)
74
+
75
+ For the latter, the dataset was annotated by our team to correct the alt text generated by the model,
76
+ using the [checkvite tool](https://github.com/mozila/checkvite).
77
+
78
+ You can find the code used to create the model here: https://github.com/mozilla/distilvit
config.json CHANGED
@@ -1,183 +1,2178 @@
1
- {
2
- "_name_or_path": "/Volumes/SSD/vit-base-patch16-224-distilgpt2",
3
- "architectures": [
4
- "VisionEncoderDecoderModel"
5
- ],
6
- "decoder": {
7
- "_name_or_path": "distilbert/distilgpt2",
8
- "_num_labels": 1,
9
- "activation_function": "gelu_new",
10
- "add_cross_attention": true,
11
- "architectures": [
12
- "GPT2LMHeadModel"
13
- ],
14
- "attn_pdrop": 0.1,
15
- "bad_words_ids": null,
16
- "begin_suppress_tokens": null,
17
- "bos_token_id": 50256,
18
- "chunk_size_feed_forward": 0,
19
- "cross_attention_hidden_size": null,
20
- "decoder_start_token_id": null,
21
- "diversity_penalty": 0.0,
22
- "do_sample": false,
23
- "early_stopping": false,
24
- "embd_pdrop": 0.1,
25
- "encoder_no_repeat_ngram_size": 0,
26
- "eos_token_id": 50256,
27
- "exponential_decay_length_penalty": null,
28
- "finetuning_task": null,
29
- "forced_bos_token_id": null,
30
- "forced_eos_token_id": null,
31
- "id2label": {
32
- "0": "LABEL_0"
33
- },
34
- "initializer_range": 0.02,
35
- "is_decoder": true,
36
- "is_encoder_decoder": false,
37
- "label2id": {
38
- "LABEL_0": 0
39
- },
40
- "layer_norm_epsilon": 1e-05,
41
- "length_penalty": 1.0,
42
- "max_length": 20,
43
- "min_length": 0,
44
- "model_type": "gpt2",
45
- "n_ctx": 1024,
46
- "n_embd": 768,
47
- "n_head": 12,
48
- "n_inner": null,
49
- "n_layer": 6,
50
- "n_positions": 1024,
51
- "no_repeat_ngram_size": 0,
52
- "num_beam_groups": 1,
53
- "num_beams": 1,
54
- "num_return_sequences": 1,
55
- "output_attentions": false,
56
- "output_hidden_states": false,
57
- "output_scores": false,
58
- "pad_token_id": null,
59
- "prefix": null,
60
- "problem_type": null,
61
- "pruned_heads": {},
62
- "remove_invalid_values": false,
63
- "reorder_and_upcast_attn": false,
64
- "repetition_penalty": 1.0,
65
- "resid_pdrop": 0.1,
66
- "return_dict": true,
67
- "return_dict_in_generate": false,
68
- "scale_attn_by_inverse_layer_idx": false,
69
- "scale_attn_weights": true,
70
- "sep_token_id": null,
71
- "summary_activation": null,
72
- "summary_first_dropout": 0.1,
73
- "summary_proj_to_labels": true,
74
- "summary_type": "cls_index",
75
- "summary_use_proj": true,
76
- "suppress_tokens": null,
77
- "task_specific_params": {
78
- "text-generation": {
79
- "do_sample": true,
80
- "max_length": 50
81
- }
82
- },
83
- "temperature": 1.0,
84
- "tf_legacy_loss": false,
85
- "tie_encoder_decoder": false,
86
- "tie_word_embeddings": true,
87
- "tokenizer_class": null,
88
- "top_k": 50,
89
- "top_p": 1.0,
90
- "torch_dtype": null,
91
- "torchscript": false,
92
- "typical_p": 1.0,
93
- "use_bfloat16": false,
94
- "use_cache": true,
95
- "vocab_size": 50257
96
- },
97
- "decoder_start_token_id": 50256,
98
- "encoder": {
99
- "_name_or_path": "google/vit-base-patch16-224-in21k",
100
- "add_cross_attention": false,
101
- "architectures": [
102
- "ViTModel"
103
- ],
104
- "attention_probs_dropout_prob": 0.0,
105
- "bad_words_ids": null,
106
- "begin_suppress_tokens": null,
107
- "bos_token_id": null,
108
- "chunk_size_feed_forward": 0,
109
- "cross_attention_hidden_size": null,
110
- "decoder_start_token_id": null,
111
- "diversity_penalty": 0.0,
112
- "do_sample": false,
113
- "early_stopping": false,
114
- "encoder_no_repeat_ngram_size": 0,
115
- "encoder_stride": 16,
116
- "eos_token_id": null,
117
- "exponential_decay_length_penalty": null,
118
- "finetuning_task": null,
119
- "forced_bos_token_id": null,
120
- "forced_eos_token_id": null,
121
- "hidden_act": "gelu",
122
- "hidden_dropout_prob": 0.0,
123
- "hidden_size": 768,
124
- "id2label": {
125
- "0": "LABEL_0",
126
- "1": "LABEL_1"
127
- },
128
- "image_size": 224,
129
- "initializer_range": 0.02,
130
- "intermediate_size": 3072,
131
- "is_decoder": false,
132
- "is_encoder_decoder": false,
133
- "label2id": {
134
- "LABEL_0": 0,
135
- "LABEL_1": 1
136
- },
137
- "layer_norm_eps": 1e-12,
138
- "length_penalty": 1.0,
139
- "max_length": 20,
140
- "min_length": 0,
141
- "model_type": "vit",
142
- "no_repeat_ngram_size": 0,
143
- "num_attention_heads": 12,
144
- "num_beam_groups": 1,
145
- "num_beams": 1,
146
- "num_channels": 3,
147
- "num_hidden_layers": 12,
148
- "num_return_sequences": 1,
149
- "output_attentions": false,
150
- "output_hidden_states": false,
151
- "output_scores": false,
152
- "pad_token_id": null,
153
- "patch_size": 16,
154
- "prefix": null,
155
- "problem_type": null,
156
- "pruned_heads": {},
157
- "qkv_bias": true,
158
- "remove_invalid_values": false,
159
- "repetition_penalty": 1.0,
160
- "return_dict": true,
161
- "return_dict_in_generate": false,
162
- "sep_token_id": null,
163
- "suppress_tokens": null,
164
- "task_specific_params": null,
165
- "temperature": 1.0,
166
- "tf_legacy_loss": false,
167
- "tie_encoder_decoder": false,
168
- "tie_word_embeddings": true,
169
- "tokenizer_class": null,
170
- "top_k": 50,
171
- "top_p": 1.0,
172
- "torch_dtype": null,
173
- "torchscript": false,
174
- "typical_p": 1.0,
175
- "use_bfloat16": false
176
- },
177
- "eos_token_id": 50256,
178
- "is_encoder_decoder": true,
179
- "model_type": "vision-encoder-decoder",
180
- "pad_token_id": 50256,
181
- "tie_word_embeddings": false,
182
- "transformers_version": "4.33.2"
183
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "C:\\Users\\tarek\\Dev\\distilvit\\distilvit\\..\\vit-base-patch16-224-distilgpt2",
3
+ "architectures": [
4
+ "VisionEncoderDecoderModel"
5
+ ],
6
+ "decoder": {
7
+ "_name_or_path": "distilbert/distilgpt2",
8
+ "_num_labels": 1,
9
+ "activation_function": "gelu_new",
10
+ "add_cross_attention": true,
11
+ "architectures": [
12
+ "GPT2LMHeadModel"
13
+ ],
14
+ "attn_pdrop": 0.1,
15
+ "bad_words_ids": null,
16
+ "begin_suppress_tokens": null,
17
+ "bos_token_id": 50256,
18
+ "chunk_size_feed_forward": 0,
19
+ "cross_attention_hidden_size": null,
20
+ "decoder_start_token_id": null,
21
+ "diversity_penalty": 0.0,
22
+ "do_sample": false,
23
+ "early_stopping": false,
24
+ "embd_pdrop": 0.1,
25
+ "encoder_no_repeat_ngram_size": 0,
26
+ "eos_token_id": 50256,
27
+ "exponential_decay_length_penalty": null,
28
+ "finetuning_task": null,
29
+ "forced_bos_token_id": null,
30
+ "forced_eos_token_id": null,
31
+ "id2label": {
32
+ "0": "LABEL_0"
33
+ },
34
+ "initializer_range": 0.02,
35
+ "is_decoder": true,
36
+ "is_encoder_decoder": false,
37
+ "label2id": {
38
+ "LABEL_0": 0
39
+ },
40
+ "layer_norm_epsilon": 1e-05,
41
+ "length_penalty": 1.0,
42
+ "max_length": 20,
43
+ "min_length": 0,
44
+ "model_type": "gpt2",
45
+ "n_ctx": 1024,
46
+ "n_embd": 768,
47
+ "n_head": 12,
48
+ "n_inner": null,
49
+ "n_layer": 6,
50
+ "n_positions": 1024,
51
+ "no_repeat_ngram_size": 0,
52
+ "num_beam_groups": 1,
53
+ "num_beams": 1,
54
+ "num_return_sequences": 1,
55
+ "output_attentions": false,
56
+ "output_hidden_states": false,
57
+ "output_scores": false,
58
+ "pad_token_id": null,
59
+ "prefix": null,
60
+ "problem_type": null,
61
+ "pruned_heads": {},
62
+ "remove_invalid_values": false,
63
+ "reorder_and_upcast_attn": false,
64
+ "repetition_penalty": 1.0,
65
+ "resid_pdrop": 0.1,
66
+ "return_dict": true,
67
+ "return_dict_in_generate": false,
68
+ "scale_attn_by_inverse_layer_idx": false,
69
+ "scale_attn_weights": true,
70
+ "sep_token_id": null,
71
+ "summary_activation": null,
72
+ "summary_first_dropout": 0.1,
73
+ "summary_proj_to_labels": true,
74
+ "summary_type": "cls_index",
75
+ "summary_use_proj": true,
76
+ "suppress_tokens": null,
77
+ "task_specific_params": {
78
+ "text-generation": {
79
+ "do_sample": true,
80
+ "max_length": 50
81
+ }
82
+ },
83
+ "temperature": 1.0,
84
+ "tf_legacy_loss": false,
85
+ "tie_encoder_decoder": false,
86
+ "tie_word_embeddings": true,
87
+ "tokenizer_class": null,
88
+ "top_k": 50,
89
+ "top_p": 1.0,
90
+ "torch_dtype": null,
91
+ "torchscript": false,
92
+ "typical_p": 1.0,
93
+ "use_bfloat16": false,
94
+ "use_cache": true,
95
+ "vocab_size": 50257
96
+ },
97
+ "decoder_start_token_id": 50256,
98
+ "encoder": {
99
+ "_name_or_path": "google/vit-base-patch16-224",
100
+ "add_cross_attention": false,
101
+ "architectures": [
102
+ "ViTForImageClassification"
103
+ ],
104
+ "attention_probs_dropout_prob": 0.0,
105
+ "bad_words_ids": null,
106
+ "begin_suppress_tokens": null,
107
+ "bos_token_id": null,
108
+ "chunk_size_feed_forward": 0,
109
+ "cross_attention_hidden_size": null,
110
+ "decoder_start_token_id": null,
111
+ "diversity_penalty": 0.0,
112
+ "do_sample": false,
113
+ "early_stopping": false,
114
+ "encoder_no_repeat_ngram_size": 0,
115
+ "encoder_stride": 16,
116
+ "eos_token_id": null,
117
+ "exponential_decay_length_penalty": null,
118
+ "finetuning_task": null,
119
+ "forced_bos_token_id": null,
120
+ "forced_eos_token_id": null,
121
+ "hidden_act": "gelu",
122
+ "hidden_dropout_prob": 0.0,
123
+ "hidden_size": 768,
124
+ "id2label": {
125
+ "0": "tench, Tinca tinca",
126
+ "1": "goldfish, Carassius auratus",
127
+ "2": "great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias",
128
+ "3": "tiger shark, Galeocerdo cuvieri",
129
+ "4": "hammerhead, hammerhead shark",
130
+ "5": "electric ray, crampfish, numbfish, torpedo",
131
+ "6": "stingray",
132
+ "7": "cock",
133
+ "8": "hen",
134
+ "9": "ostrich, Struthio camelus",
135
+ "10": "brambling, Fringilla montifringilla",
136
+ "11": "goldfinch, Carduelis carduelis",
137
+ "12": "house finch, linnet, Carpodacus mexicanus",
138
+ "13": "junco, snowbird",
139
+ "14": "indigo bunting, indigo finch, indigo bird, Passerina cyanea",
140
+ "15": "robin, American robin, Turdus migratorius",
141
+ "16": "bulbul",
142
+ "17": "jay",
143
+ "18": "magpie",
144
+ "19": "chickadee",
145
+ "20": "water ouzel, dipper",
146
+ "21": "kite",
147
+ "22": "bald eagle, American eagle, Haliaeetus leucocephalus",
148
+ "23": "vulture",
149
+ "24": "great grey owl, great gray owl, Strix nebulosa",
150
+ "25": "European fire salamander, Salamandra salamandra",
151
+ "26": "common newt, Triturus vulgaris",
152
+ "27": "eft",
153
+ "28": "spotted salamander, Ambystoma maculatum",
154
+ "29": "axolotl, mud puppy, Ambystoma mexicanum",
155
+ "30": "bullfrog, Rana catesbeiana",
156
+ "31": "tree frog, tree-frog",
157
+ "32": "tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui",
158
+ "33": "loggerhead, loggerhead turtle, Caretta caretta",
159
+ "34": "leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea",
160
+ "35": "mud turtle",
161
+ "36": "terrapin",
162
+ "37": "box turtle, box tortoise",
163
+ "38": "banded gecko",
164
+ "39": "common iguana, iguana, Iguana iguana",
165
+ "40": "American chameleon, anole, Anolis carolinensis",
166
+ "41": "whiptail, whiptail lizard",
167
+ "42": "agama",
168
+ "43": "frilled lizard, Chlamydosaurus kingi",
169
+ "44": "alligator lizard",
170
+ "45": "Gila monster, Heloderma suspectum",
171
+ "46": "green lizard, Lacerta viridis",
172
+ "47": "African chameleon, Chamaeleo chamaeleon",
173
+ "48": "Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis",
174
+ "49": "African crocodile, Nile crocodile, Crocodylus niloticus",
175
+ "50": "American alligator, Alligator mississipiensis",
176
+ "51": "triceratops",
177
+ "52": "thunder snake, worm snake, Carphophis amoenus",
178
+ "53": "ringneck snake, ring-necked snake, ring snake",
179
+ "54": "hognose snake, puff adder, sand viper",
180
+ "55": "green snake, grass snake",
181
+ "56": "king snake, kingsnake",
182
+ "57": "garter snake, grass snake",
183
+ "58": "water snake",
184
+ "59": "vine snake",
185
+ "60": "night snake, Hypsiglena torquata",
186
+ "61": "boa constrictor, Constrictor constrictor",
187
+ "62": "rock python, rock snake, Python sebae",
188
+ "63": "Indian cobra, Naja naja",
189
+ "64": "green mamba",
190
+ "65": "sea snake",
191
+ "66": "horned viper, cerastes, sand viper, horned asp, Cerastes cornutus",
192
+ "67": "diamondback, diamondback rattlesnake, Crotalus adamanteus",
193
+ "68": "sidewinder, horned rattlesnake, Crotalus cerastes",
194
+ "69": "trilobite",
195
+ "70": "harvestman, daddy longlegs, Phalangium opilio",
196
+ "71": "scorpion",
197
+ "72": "black and gold garden spider, Argiope aurantia",
198
+ "73": "barn spider, Araneus cavaticus",
199
+ "74": "garden spider, Aranea diademata",
200
+ "75": "black widow, Latrodectus mactans",
201
+ "76": "tarantula",
202
+ "77": "wolf spider, hunting spider",
203
+ "78": "tick",
204
+ "79": "centipede",
205
+ "80": "black grouse",
206
+ "81": "ptarmigan",
207
+ "82": "ruffed grouse, partridge, Bonasa umbellus",
208
+ "83": "prairie chicken, prairie grouse, prairie fowl",
209
+ "84": "peacock",
210
+ "85": "quail",
211
+ "86": "partridge",
212
+ "87": "African grey, African gray, Psittacus erithacus",
213
+ "88": "macaw",
214
+ "89": "sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita",
215
+ "90": "lorikeet",
216
+ "91": "coucal",
217
+ "92": "bee eater",
218
+ "93": "hornbill",
219
+ "94": "hummingbird",
220
+ "95": "jacamar",
221
+ "96": "toucan",
222
+ "97": "drake",
223
+ "98": "red-breasted merganser, Mergus serrator",
224
+ "99": "goose",
225
+ "100": "black swan, Cygnus atratus",
226
+ "101": "tusker",
227
+ "102": "echidna, spiny anteater, anteater",
228
+ "103": "platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus",
229
+ "104": "wallaby, brush kangaroo",
230
+ "105": "koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus",
231
+ "106": "wombat",
232
+ "107": "jellyfish",
233
+ "108": "sea anemone, anemone",
234
+ "109": "brain coral",
235
+ "110": "flatworm, platyhelminth",
236
+ "111": "nematode, nematode worm, roundworm",
237
+ "112": "conch",
238
+ "113": "snail",
239
+ "114": "slug",
240
+ "115": "sea slug, nudibranch",
241
+ "116": "chiton, coat-of-mail shell, sea cradle, polyplacophore",
242
+ "117": "chambered nautilus, pearly nautilus, nautilus",
243
+ "118": "Dungeness crab, Cancer magister",
244
+ "119": "rock crab, Cancer irroratus",
245
+ "120": "fiddler crab",
246
+ "121": "king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica",
247
+ "122": "American lobster, Northern lobster, Maine lobster, Homarus americanus",
248
+ "123": "spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish",
249
+ "124": "crayfish, crawfish, crawdad, crawdaddy",
250
+ "125": "hermit crab",
251
+ "126": "isopod",
252
+ "127": "white stork, Ciconia ciconia",
253
+ "128": "black stork, Ciconia nigra",
254
+ "129": "spoonbill",
255
+ "130": "flamingo",
256
+ "131": "little blue heron, Egretta caerulea",
257
+ "132": "American egret, great white heron, Egretta albus",
258
+ "133": "bittern",
259
+ "134": "crane",
260
+ "135": "limpkin, Aramus pictus",
261
+ "136": "European gallinule, Porphyrio porphyrio",
262
+ "137": "American coot, marsh hen, mud hen, water hen, Fulica americana",
263
+ "138": "bustard",
264
+ "139": "ruddy turnstone, Arenaria interpres",
265
+ "140": "red-backed sandpiper, dunlin, Erolia alpina",
266
+ "141": "redshank, Tringa totanus",
267
+ "142": "dowitcher",
268
+ "143": "oystercatcher, oyster catcher",
269
+ "144": "pelican",
270
+ "145": "king penguin, Aptenodytes patagonica",
271
+ "146": "albatross, mollymawk",
272
+ "147": "grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus",
273
+ "148": "killer whale, killer, orca, grampus, sea wolf, Orcinus orca",
274
+ "149": "dugong, Dugong dugon",
275
+ "150": "sea lion",
276
+ "151": "Chihuahua",
277
+ "152": "Japanese spaniel",
278
+ "153": "Maltese dog, Maltese terrier, Maltese",
279
+ "154": "Pekinese, Pekingese, Peke",
280
+ "155": "Shih-Tzu",
281
+ "156": "Blenheim spaniel",
282
+ "157": "papillon",
283
+ "158": "toy terrier",
284
+ "159": "Rhodesian ridgeback",
285
+ "160": "Afghan hound, Afghan",
286
+ "161": "basset, basset hound",
287
+ "162": "beagle",
288
+ "163": "bloodhound, sleuthhound",
289
+ "164": "bluetick",
290
+ "165": "black-and-tan coonhound",
291
+ "166": "Walker hound, Walker foxhound",
292
+ "167": "English foxhound",
293
+ "168": "redbone",
294
+ "169": "borzoi, Russian wolfhound",
295
+ "170": "Irish wolfhound",
296
+ "171": "Italian greyhound",
297
+ "172": "whippet",
298
+ "173": "Ibizan hound, Ibizan Podenco",
299
+ "174": "Norwegian elkhound, elkhound",
300
+ "175": "otterhound, otter hound",
301
+ "176": "Saluki, gazelle hound",
302
+ "177": "Scottish deerhound, deerhound",
303
+ "178": "Weimaraner",
304
+ "179": "Staffordshire bullterrier, Staffordshire bull terrier",
305
+ "180": "American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier",
306
+ "181": "Bedlington terrier",
307
+ "182": "Border terrier",
308
+ "183": "Kerry blue terrier",
309
+ "184": "Irish terrier",
310
+ "185": "Norfolk terrier",
311
+ "186": "Norwich terrier",
312
+ "187": "Yorkshire terrier",
313
+ "188": "wire-haired fox terrier",
314
+ "189": "Lakeland terrier",
315
+ "190": "Sealyham terrier, Sealyham",
316
+ "191": "Airedale, Airedale terrier",
317
+ "192": "cairn, cairn terrier",
318
+ "193": "Australian terrier",
319
+ "194": "Dandie Dinmont, Dandie Dinmont terrier",
320
+ "195": "Boston bull, Boston terrier",
321
+ "196": "miniature schnauzer",
322
+ "197": "giant schnauzer",
323
+ "198": "standard schnauzer",
324
+ "199": "Scotch terrier, Scottish terrier, Scottie",
325
+ "200": "Tibetan terrier, chrysanthemum dog",
326
+ "201": "silky terrier, Sydney silky",
327
+ "202": "soft-coated wheaten terrier",
328
+ "203": "West Highland white terrier",
329
+ "204": "Lhasa, Lhasa apso",
330
+ "205": "flat-coated retriever",
331
+ "206": "curly-coated retriever",
332
+ "207": "golden retriever",
333
+ "208": "Labrador retriever",
334
+ "209": "Chesapeake Bay retriever",
335
+ "210": "German short-haired pointer",
336
+ "211": "vizsla, Hungarian pointer",
337
+ "212": "English setter",
338
+ "213": "Irish setter, red setter",
339
+ "214": "Gordon setter",
340
+ "215": "Brittany spaniel",
341
+ "216": "clumber, clumber spaniel",
342
+ "217": "English springer, English springer spaniel",
343
+ "218": "Welsh springer spaniel",
344
+ "219": "cocker spaniel, English cocker spaniel, cocker",
345
+ "220": "Sussex spaniel",
346
+ "221": "Irish water spaniel",
347
+ "222": "kuvasz",
348
+ "223": "schipperke",
349
+ "224": "groenendael",
350
+ "225": "malinois",
351
+ "226": "briard",
352
+ "227": "kelpie",
353
+ "228": "komondor",
354
+ "229": "Old English sheepdog, bobtail",
355
+ "230": "Shetland sheepdog, Shetland sheep dog, Shetland",
356
+ "231": "collie",
357
+ "232": "Border collie",
358
+ "233": "Bouvier des Flandres, Bouviers des Flandres",
359
+ "234": "Rottweiler",
360
+ "235": "German shepherd, German shepherd dog, German police dog, alsatian",
361
+ "236": "Doberman, Doberman pinscher",
362
+ "237": "miniature pinscher",
363
+ "238": "Greater Swiss Mountain dog",
364
+ "239": "Bernese mountain dog",
365
+ "240": "Appenzeller",
366
+ "241": "EntleBucher",
367
+ "242": "boxer",
368
+ "243": "bull mastiff",
369
+ "244": "Tibetan mastiff",
370
+ "245": "French bulldog",
371
+ "246": "Great Dane",
372
+ "247": "Saint Bernard, St Bernard",
373
+ "248": "Eskimo dog, husky",
374
+ "249": "malamute, malemute, Alaskan malamute",
375
+ "250": "Siberian husky",
376
+ "251": "dalmatian, coach dog, carriage dog",
377
+ "252": "affenpinscher, monkey pinscher, monkey dog",
378
+ "253": "basenji",
379
+ "254": "pug, pug-dog",
380
+ "255": "Leonberg",
381
+ "256": "Newfoundland, Newfoundland dog",
382
+ "257": "Great Pyrenees",
383
+ "258": "Samoyed, Samoyede",
384
+ "259": "Pomeranian",
385
+ "260": "chow, chow chow",
386
+ "261": "keeshond",
387
+ "262": "Brabancon griffon",
388
+ "263": "Pembroke, Pembroke Welsh corgi",
389
+ "264": "Cardigan, Cardigan Welsh corgi",
390
+ "265": "toy poodle",
391
+ "266": "miniature poodle",
392
+ "267": "standard poodle",
393
+ "268": "Mexican hairless",
394
+ "269": "timber wolf, grey wolf, gray wolf, Canis lupus",
395
+ "270": "white wolf, Arctic wolf, Canis lupus tundrarum",
396
+ "271": "red wolf, maned wolf, Canis rufus, Canis niger",
397
+ "272": "coyote, prairie wolf, brush wolf, Canis latrans",
398
+ "273": "dingo, warrigal, warragal, Canis dingo",
399
+ "274": "dhole, Cuon alpinus",
400
+ "275": "African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus",
401
+ "276": "hyena, hyaena",
402
+ "277": "red fox, Vulpes vulpes",
403
+ "278": "kit fox, Vulpes macrotis",
404
+ "279": "Arctic fox, white fox, Alopex lagopus",
405
+ "280": "grey fox, gray fox, Urocyon cinereoargenteus",
406
+ "281": "tabby, tabby cat",
407
+ "282": "tiger cat",
408
+ "283": "Persian cat",
409
+ "284": "Siamese cat, Siamese",
410
+ "285": "Egyptian cat",
411
+ "286": "cougar, puma, catamount, mountain lion, painter, panther, Felis concolor",
412
+ "287": "lynx, catamount",
413
+ "288": "leopard, Panthera pardus",
414
+ "289": "snow leopard, ounce, Panthera uncia",
415
+ "290": "jaguar, panther, Panthera onca, Felis onca",
416
+ "291": "lion, king of beasts, Panthera leo",
417
+ "292": "tiger, Panthera tigris",
418
+ "293": "cheetah, chetah, Acinonyx jubatus",
419
+ "294": "brown bear, bruin, Ursus arctos",
420
+ "295": "American black bear, black bear, Ursus americanus, Euarctos americanus",
421
+ "296": "ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus",
422
+ "297": "sloth bear, Melursus ursinus, Ursus ursinus",
423
+ "298": "mongoose",
424
+ "299": "meerkat, mierkat",
425
+ "300": "tiger beetle",
426
+ "301": "ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle",
427
+ "302": "ground beetle, carabid beetle",
428
+ "303": "long-horned beetle, longicorn, longicorn beetle",
429
+ "304": "leaf beetle, chrysomelid",
430
+ "305": "dung beetle",
431
+ "306": "rhinoceros beetle",
432
+ "307": "weevil",
433
+ "308": "fly",
434
+ "309": "bee",
435
+ "310": "ant, emmet, pismire",
436
+ "311": "grasshopper, hopper",
437
+ "312": "cricket",
438
+ "313": "walking stick, walkingstick, stick insect",
439
+ "314": "cockroach, roach",
440
+ "315": "mantis, mantid",
441
+ "316": "cicada, cicala",
442
+ "317": "leafhopper",
443
+ "318": "lacewing, lacewing fly",
444
+ "319": "dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk",
445
+ "320": "damselfly",
446
+ "321": "admiral",
447
+ "322": "ringlet, ringlet butterfly",
448
+ "323": "monarch, monarch butterfly, milkweed butterfly, Danaus plexippus",
449
+ "324": "cabbage butterfly",
450
+ "325": "sulphur butterfly, sulfur butterfly",
451
+ "326": "lycaenid, lycaenid butterfly",
452
+ "327": "starfish, sea star",
453
+ "328": "sea urchin",
454
+ "329": "sea cucumber, holothurian",
455
+ "330": "wood rabbit, cottontail, cottontail rabbit",
456
+ "331": "hare",
457
+ "332": "Angora, Angora rabbit",
458
+ "333": "hamster",
459
+ "334": "porcupine, hedgehog",
460
+ "335": "fox squirrel, eastern fox squirrel, Sciurus niger",
461
+ "336": "marmot",
462
+ "337": "beaver",
463
+ "338": "guinea pig, Cavia cobaya",
464
+ "339": "sorrel",
465
+ "340": "zebra",
466
+ "341": "hog, pig, grunter, squealer, Sus scrofa",
467
+ "342": "wild boar, boar, Sus scrofa",
468
+ "343": "warthog",
469
+ "344": "hippopotamus, hippo, river horse, Hippopotamus amphibius",
470
+ "345": "ox",
471
+ "346": "water buffalo, water ox, Asiatic buffalo, Bubalus bubalis",
472
+ "347": "bison",
473
+ "348": "ram, tup",
474
+ "349": "bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis",
475
+ "350": "ibex, Capra ibex",
476
+ "351": "hartebeest",
477
+ "352": "impala, Aepyceros melampus",
478
+ "353": "gazelle",
479
+ "354": "Arabian camel, dromedary, Camelus dromedarius",
480
+ "355": "llama",
481
+ "356": "weasel",
482
+ "357": "mink",
483
+ "358": "polecat, fitch, foulmart, foumart, Mustela putorius",
484
+ "359": "black-footed ferret, ferret, Mustela nigripes",
485
+ "360": "otter",
486
+ "361": "skunk, polecat, wood pussy",
487
+ "362": "badger",
488
+ "363": "armadillo",
489
+ "364": "three-toed sloth, ai, Bradypus tridactylus",
490
+ "365": "orangutan, orang, orangutang, Pongo pygmaeus",
491
+ "366": "gorilla, Gorilla gorilla",
492
+ "367": "chimpanzee, chimp, Pan troglodytes",
493
+ "368": "gibbon, Hylobates lar",
494
+ "369": "siamang, Hylobates syndactylus, Symphalangus syndactylus",
495
+ "370": "guenon, guenon monkey",
496
+ "371": "patas, hussar monkey, Erythrocebus patas",
497
+ "372": "baboon",
498
+ "373": "macaque",
499
+ "374": "langur",
500
+ "375": "colobus, colobus monkey",
501
+ "376": "proboscis monkey, Nasalis larvatus",
502
+ "377": "marmoset",
503
+ "378": "capuchin, ringtail, Cebus capucinus",
504
+ "379": "howler monkey, howler",
505
+ "380": "titi, titi monkey",
506
+ "381": "spider monkey, Ateles geoffroyi",
507
+ "382": "squirrel monkey, Saimiri sciureus",
508
+ "383": "Madagascar cat, ring-tailed lemur, Lemur catta",
509
+ "384": "indri, indris, Indri indri, Indri brevicaudatus",
510
+ "385": "Indian elephant, Elephas maximus",
511
+ "386": "African elephant, Loxodonta africana",
512
+ "387": "lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens",
513
+ "388": "giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca",
514
+ "389": "barracouta, snoek",
515
+ "390": "eel",
516
+ "391": "coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch",
517
+ "392": "rock beauty, Holocanthus tricolor",
518
+ "393": "anemone fish",
519
+ "394": "sturgeon",
520
+ "395": "gar, garfish, garpike, billfish, Lepisosteus osseus",
521
+ "396": "lionfish",
522
+ "397": "puffer, pufferfish, blowfish, globefish",
523
+ "398": "abacus",
524
+ "399": "abaya",
525
+ "400": "academic gown, academic robe, judge's robe",
526
+ "401": "accordion, piano accordion, squeeze box",
527
+ "402": "acoustic guitar",
528
+ "403": "aircraft carrier, carrier, flattop, attack aircraft carrier",
529
+ "404": "airliner",
530
+ "405": "airship, dirigible",
531
+ "406": "altar",
532
+ "407": "ambulance",
533
+ "408": "amphibian, amphibious vehicle",
534
+ "409": "analog clock",
535
+ "410": "apiary, bee house",
536
+ "411": "apron",
537
+ "412": "ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin",
538
+ "413": "assault rifle, assault gun",
539
+ "414": "backpack, back pack, knapsack, packsack, rucksack, haversack",
540
+ "415": "bakery, bakeshop, bakehouse",
541
+ "416": "balance beam, beam",
542
+ "417": "balloon",
543
+ "418": "ballpoint, ballpoint pen, ballpen, Biro",
544
+ "419": "Band Aid",
545
+ "420": "banjo",
546
+ "421": "bannister, banister, balustrade, balusters, handrail",
547
+ "422": "barbell",
548
+ "423": "barber chair",
549
+ "424": "barbershop",
550
+ "425": "barn",
551
+ "426": "barometer",
552
+ "427": "barrel, cask",
553
+ "428": "barrow, garden cart, lawn cart, wheelbarrow",
554
+ "429": "baseball",
555
+ "430": "basketball",
556
+ "431": "bassinet",
557
+ "432": "bassoon",
558
+ "433": "bathing cap, swimming cap",
559
+ "434": "bath towel",
560
+ "435": "bathtub, bathing tub, bath, tub",
561
+ "436": "beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon",
562
+ "437": "beacon, lighthouse, beacon light, pharos",
563
+ "438": "beaker",
564
+ "439": "bearskin, busby, shako",
565
+ "440": "beer bottle",
566
+ "441": "beer glass",
567
+ "442": "bell cote, bell cot",
568
+ "443": "bib",
569
+ "444": "bicycle-built-for-two, tandem bicycle, tandem",
570
+ "445": "bikini, two-piece",
571
+ "446": "binder, ring-binder",
572
+ "447": "binoculars, field glasses, opera glasses",
573
+ "448": "birdhouse",
574
+ "449": "boathouse",
575
+ "450": "bobsled, bobsleigh, bob",
576
+ "451": "bolo tie, bolo, bola tie, bola",
577
+ "452": "bonnet, poke bonnet",
578
+ "453": "bookcase",
579
+ "454": "bookshop, bookstore, bookstall",
580
+ "455": "bottlecap",
581
+ "456": "bow",
582
+ "457": "bow tie, bow-tie, bowtie",
583
+ "458": "brass, memorial tablet, plaque",
584
+ "459": "brassiere, bra, bandeau",
585
+ "460": "breakwater, groin, groyne, mole, bulwark, seawall, jetty",
586
+ "461": "breastplate, aegis, egis",
587
+ "462": "broom",
588
+ "463": "bucket, pail",
589
+ "464": "buckle",
590
+ "465": "bulletproof vest",
591
+ "466": "bullet train, bullet",
592
+ "467": "butcher shop, meat market",
593
+ "468": "cab, hack, taxi, taxicab",
594
+ "469": "caldron, cauldron",
595
+ "470": "candle, taper, wax light",
596
+ "471": "cannon",
597
+ "472": "canoe",
598
+ "473": "can opener, tin opener",
599
+ "474": "cardigan",
600
+ "475": "car mirror",
601
+ "476": "carousel, carrousel, merry-go-round, roundabout, whirligig",
602
+ "477": "carpenter's kit, tool kit",
603
+ "478": "carton",
604
+ "479": "car wheel",
605
+ "480": "cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM",
606
+ "481": "cassette",
607
+ "482": "cassette player",
608
+ "483": "castle",
609
+ "484": "catamaran",
610
+ "485": "CD player",
611
+ "486": "cello, violoncello",
612
+ "487": "cellular telephone, cellular phone, cellphone, cell, mobile phone",
613
+ "488": "chain",
614
+ "489": "chainlink fence",
615
+ "490": "chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour",
616
+ "491": "chain saw, chainsaw",
617
+ "492": "chest",
618
+ "493": "chiffonier, commode",
619
+ "494": "chime, bell, gong",
620
+ "495": "china cabinet, china closet",
621
+ "496": "Christmas stocking",
622
+ "497": "church, church building",
623
+ "498": "cinema, movie theater, movie theatre, movie house, picture palace",
624
+ "499": "cleaver, meat cleaver, chopper",
625
+ "500": "cliff dwelling",
626
+ "501": "cloak",
627
+ "502": "clog, geta, patten, sabot",
628
+ "503": "cocktail shaker",
629
+ "504": "coffee mug",
630
+ "505": "coffeepot",
631
+ "506": "coil, spiral, volute, whorl, helix",
632
+ "507": "combination lock",
633
+ "508": "computer keyboard, keypad",
634
+ "509": "confectionery, confectionary, candy store",
635
+ "510": "container ship, containership, container vessel",
636
+ "511": "convertible",
637
+ "512": "corkscrew, bottle screw",
638
+ "513": "cornet, horn, trumpet, trump",
639
+ "514": "cowboy boot",
640
+ "515": "cowboy hat, ten-gallon hat",
641
+ "516": "cradle",
642
+ "517": "crane",
643
+ "518": "crash helmet",
644
+ "519": "crate",
645
+ "520": "crib, cot",
646
+ "521": "Crock Pot",
647
+ "522": "croquet ball",
648
+ "523": "crutch",
649
+ "524": "cuirass",
650
+ "525": "dam, dike, dyke",
651
+ "526": "desk",
652
+ "527": "desktop computer",
653
+ "528": "dial telephone, dial phone",
654
+ "529": "diaper, nappy, napkin",
655
+ "530": "digital clock",
656
+ "531": "digital watch",
657
+ "532": "dining table, board",
658
+ "533": "dishrag, dishcloth",
659
+ "534": "dishwasher, dish washer, dishwashing machine",
660
+ "535": "disk brake, disc brake",
661
+ "536": "dock, dockage, docking facility",
662
+ "537": "dogsled, dog sled, dog sleigh",
663
+ "538": "dome",
664
+ "539": "doormat, welcome mat",
665
+ "540": "drilling platform, offshore rig",
666
+ "541": "drum, membranophone, tympan",
667
+ "542": "drumstick",
668
+ "543": "dumbbell",
669
+ "544": "Dutch oven",
670
+ "545": "electric fan, blower",
671
+ "546": "electric guitar",
672
+ "547": "electric locomotive",
673
+ "548": "entertainment center",
674
+ "549": "envelope",
675
+ "550": "espresso maker",
676
+ "551": "face powder",
677
+ "552": "feather boa, boa",
678
+ "553": "file, file cabinet, filing cabinet",
679
+ "554": "fireboat",
680
+ "555": "fire engine, fire truck",
681
+ "556": "fire screen, fireguard",
682
+ "557": "flagpole, flagstaff",
683
+ "558": "flute, transverse flute",
684
+ "559": "folding chair",
685
+ "560": "football helmet",
686
+ "561": "forklift",
687
+ "562": "fountain",
688
+ "563": "fountain pen",
689
+ "564": "four-poster",
690
+ "565": "freight car",
691
+ "566": "French horn, horn",
692
+ "567": "frying pan, frypan, skillet",
693
+ "568": "fur coat",
694
+ "569": "garbage truck, dustcart",
695
+ "570": "gasmask, respirator, gas helmet",
696
+ "571": "gas pump, gasoline pump, petrol pump, island dispenser",
697
+ "572": "goblet",
698
+ "573": "go-kart",
699
+ "574": "golf ball",
700
+ "575": "golfcart, golf cart",
701
+ "576": "gondola",
702
+ "577": "gong, tam-tam",
703
+ "578": "gown",
704
+ "579": "grand piano, grand",
705
+ "580": "greenhouse, nursery, glasshouse",
706
+ "581": "grille, radiator grille",
707
+ "582": "grocery store, grocery, food market, market",
708
+ "583": "guillotine",
709
+ "584": "hair slide",
710
+ "585": "hair spray",
711
+ "586": "half track",
712
+ "587": "hammer",
713
+ "588": "hamper",
714
+ "589": "hand blower, blow dryer, blow drier, hair dryer, hair drier",
715
+ "590": "hand-held computer, hand-held microcomputer",
716
+ "591": "handkerchief, hankie, hanky, hankey",
717
+ "592": "hard disc, hard disk, fixed disk",
718
+ "593": "harmonica, mouth organ, harp, mouth harp",
719
+ "594": "harp",
720
+ "595": "harvester, reaper",
721
+ "596": "hatchet",
722
+ "597": "holster",
723
+ "598": "home theater, home theatre",
724
+ "599": "honeycomb",
725
+ "600": "hook, claw",
726
+ "601": "hoopskirt, crinoline",
727
+ "602": "horizontal bar, high bar",
728
+ "603": "horse cart, horse-cart",
729
+ "604": "hourglass",
730
+ "605": "iPod",
731
+ "606": "iron, smoothing iron",
732
+ "607": "jack-o'-lantern",
733
+ "608": "jean, blue jean, denim",
734
+ "609": "jeep, landrover",
735
+ "610": "jersey, T-shirt, tee shirt",
736
+ "611": "jigsaw puzzle",
737
+ "612": "jinrikisha, ricksha, rickshaw",
738
+ "613": "joystick",
739
+ "614": "kimono",
740
+ "615": "knee pad",
741
+ "616": "knot",
742
+ "617": "lab coat, laboratory coat",
743
+ "618": "ladle",
744
+ "619": "lampshade, lamp shade",
745
+ "620": "laptop, laptop computer",
746
+ "621": "lawn mower, mower",
747
+ "622": "lens cap, lens cover",
748
+ "623": "letter opener, paper knife, paperknife",
749
+ "624": "library",
750
+ "625": "lifeboat",
751
+ "626": "lighter, light, igniter, ignitor",
752
+ "627": "limousine, limo",
753
+ "628": "liner, ocean liner",
754
+ "629": "lipstick, lip rouge",
755
+ "630": "Loafer",
756
+ "631": "lotion",
757
+ "632": "loudspeaker, speaker, speaker unit, loudspeaker system, speaker system",
758
+ "633": "loupe, jeweler's loupe",
759
+ "634": "lumbermill, sawmill",
760
+ "635": "magnetic compass",
761
+ "636": "mailbag, postbag",
762
+ "637": "mailbox, letter box",
763
+ "638": "maillot",
764
+ "639": "maillot, tank suit",
765
+ "640": "manhole cover",
766
+ "641": "maraca",
767
+ "642": "marimba, xylophone",
768
+ "643": "mask",
769
+ "644": "matchstick",
770
+ "645": "maypole",
771
+ "646": "maze, labyrinth",
772
+ "647": "measuring cup",
773
+ "648": "medicine chest, medicine cabinet",
774
+ "649": "megalith, megalithic structure",
775
+ "650": "microphone, mike",
776
+ "651": "microwave, microwave oven",
777
+ "652": "military uniform",
778
+ "653": "milk can",
779
+ "654": "minibus",
780
+ "655": "miniskirt, mini",
781
+ "656": "minivan",
782
+ "657": "missile",
783
+ "658": "mitten",
784
+ "659": "mixing bowl",
785
+ "660": "mobile home, manufactured home",
786
+ "661": "Model T",
787
+ "662": "modem",
788
+ "663": "monastery",
789
+ "664": "monitor",
790
+ "665": "moped",
791
+ "666": "mortar",
792
+ "667": "mortarboard",
793
+ "668": "mosque",
794
+ "669": "mosquito net",
795
+ "670": "motor scooter, scooter",
796
+ "671": "mountain bike, all-terrain bike, off-roader",
797
+ "672": "mountain tent",
798
+ "673": "mouse, computer mouse",
799
+ "674": "mousetrap",
800
+ "675": "moving van",
801
+ "676": "muzzle",
802
+ "677": "nail",
803
+ "678": "neck brace",
804
+ "679": "necklace",
805
+ "680": "nipple",
806
+ "681": "notebook, notebook computer",
807
+ "682": "obelisk",
808
+ "683": "oboe, hautboy, hautbois",
809
+ "684": "ocarina, sweet potato",
810
+ "685": "odometer, hodometer, mileometer, milometer",
811
+ "686": "oil filter",
812
+ "687": "organ, pipe organ",
813
+ "688": "oscilloscope, scope, cathode-ray oscilloscope, CRO",
814
+ "689": "overskirt",
815
+ "690": "oxcart",
816
+ "691": "oxygen mask",
817
+ "692": "packet",
818
+ "693": "paddle, boat paddle",
819
+ "694": "paddlewheel, paddle wheel",
820
+ "695": "padlock",
821
+ "696": "paintbrush",
822
+ "697": "pajama, pyjama, pj's, jammies",
823
+ "698": "palace",
824
+ "699": "panpipe, pandean pipe, syrinx",
825
+ "700": "paper towel",
826
+ "701": "parachute, chute",
827
+ "702": "parallel bars, bars",
828
+ "703": "park bench",
829
+ "704": "parking meter",
830
+ "705": "passenger car, coach, carriage",
831
+ "706": "patio, terrace",
832
+ "707": "pay-phone, pay-station",
833
+ "708": "pedestal, plinth, footstall",
834
+ "709": "pencil box, pencil case",
835
+ "710": "pencil sharpener",
836
+ "711": "perfume, essence",
837
+ "712": "Petri dish",
838
+ "713": "photocopier",
839
+ "714": "pick, plectrum, plectron",
840
+ "715": "pickelhaube",
841
+ "716": "picket fence, paling",
842
+ "717": "pickup, pickup truck",
843
+ "718": "pier",
844
+ "719": "piggy bank, penny bank",
845
+ "720": "pill bottle",
846
+ "721": "pillow",
847
+ "722": "ping-pong ball",
848
+ "723": "pinwheel",
849
+ "724": "pirate, pirate ship",
850
+ "725": "pitcher, ewer",
851
+ "726": "plane, carpenter's plane, woodworking plane",
852
+ "727": "planetarium",
853
+ "728": "plastic bag",
854
+ "729": "plate rack",
855
+ "730": "plow, plough",
856
+ "731": "plunger, plumber's helper",
857
+ "732": "Polaroid camera, Polaroid Land camera",
858
+ "733": "pole",
859
+ "734": "police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria",
860
+ "735": "poncho",
861
+ "736": "pool table, billiard table, snooker table",
862
+ "737": "pop bottle, soda bottle",
863
+ "738": "pot, flowerpot",
864
+ "739": "potter's wheel",
865
+ "740": "power drill",
866
+ "741": "prayer rug, prayer mat",
867
+ "742": "printer",
868
+ "743": "prison, prison house",
869
+ "744": "projectile, missile",
870
+ "745": "projector",
871
+ "746": "puck, hockey puck",
872
+ "747": "punching bag, punch bag, punching ball, punchball",
873
+ "748": "purse",
874
+ "749": "quill, quill pen",
875
+ "750": "quilt, comforter, comfort, puff",
876
+ "751": "racer, race car, racing car",
877
+ "752": "racket, racquet",
878
+ "753": "radiator",
879
+ "754": "radio, wireless",
880
+ "755": "radio telescope, radio reflector",
881
+ "756": "rain barrel",
882
+ "757": "recreational vehicle, RV, R.V.",
883
+ "758": "reel",
884
+ "759": "reflex camera",
885
+ "760": "refrigerator, icebox",
886
+ "761": "remote control, remote",
887
+ "762": "restaurant, eating house, eating place, eatery",
888
+ "763": "revolver, six-gun, six-shooter",
889
+ "764": "rifle",
890
+ "765": "rocking chair, rocker",
891
+ "766": "rotisserie",
892
+ "767": "rubber eraser, rubber, pencil eraser",
893
+ "768": "rugby ball",
894
+ "769": "rule, ruler",
895
+ "770": "running shoe",
896
+ "771": "safe",
897
+ "772": "safety pin",
898
+ "773": "saltshaker, salt shaker",
899
+ "774": "sandal",
900
+ "775": "sarong",
901
+ "776": "sax, saxophone",
902
+ "777": "scabbard",
903
+ "778": "scale, weighing machine",
904
+ "779": "school bus",
905
+ "780": "schooner",
906
+ "781": "scoreboard",
907
+ "782": "screen, CRT screen",
908
+ "783": "screw",
909
+ "784": "screwdriver",
910
+ "785": "seat belt, seatbelt",
911
+ "786": "sewing machine",
912
+ "787": "shield, buckler",
913
+ "788": "shoe shop, shoe-shop, shoe store",
914
+ "789": "shoji",
915
+ "790": "shopping basket",
916
+ "791": "shopping cart",
917
+ "792": "shovel",
918
+ "793": "shower cap",
919
+ "794": "shower curtain",
920
+ "795": "ski",
921
+ "796": "ski mask",
922
+ "797": "sleeping bag",
923
+ "798": "slide rule, slipstick",
924
+ "799": "sliding door",
925
+ "800": "slot, one-armed bandit",
926
+ "801": "snorkel",
927
+ "802": "snowmobile",
928
+ "803": "snowplow, snowplough",
929
+ "804": "soap dispenser",
930
+ "805": "soccer ball",
931
+ "806": "sock",
932
+ "807": "solar dish, solar collector, solar furnace",
933
+ "808": "sombrero",
934
+ "809": "soup bowl",
935
+ "810": "space bar",
936
+ "811": "space heater",
937
+ "812": "space shuttle",
938
+ "813": "spatula",
939
+ "814": "speedboat",
940
+ "815": "spider web, spider's web",
941
+ "816": "spindle",
942
+ "817": "sports car, sport car",
943
+ "818": "spotlight, spot",
944
+ "819": "stage",
945
+ "820": "steam locomotive",
946
+ "821": "steel arch bridge",
947
+ "822": "steel drum",
948
+ "823": "stethoscope",
949
+ "824": "stole",
950
+ "825": "stone wall",
951
+ "826": "stopwatch, stop watch",
952
+ "827": "stove",
953
+ "828": "strainer",
954
+ "829": "streetcar, tram, tramcar, trolley, trolley car",
955
+ "830": "stretcher",
956
+ "831": "studio couch, day bed",
957
+ "832": "stupa, tope",
958
+ "833": "submarine, pigboat, sub, U-boat",
959
+ "834": "suit, suit of clothes",
960
+ "835": "sundial",
961
+ "836": "sunglass",
962
+ "837": "sunglasses, dark glasses, shades",
963
+ "838": "sunscreen, sunblock, sun blocker",
964
+ "839": "suspension bridge",
965
+ "840": "swab, swob, mop",
966
+ "841": "sweatshirt",
967
+ "842": "swimming trunks, bathing trunks",
968
+ "843": "swing",
969
+ "844": "switch, electric switch, electrical switch",
970
+ "845": "syringe",
971
+ "846": "table lamp",
972
+ "847": "tank, army tank, armored combat vehicle, armoured combat vehicle",
973
+ "848": "tape player",
974
+ "849": "teapot",
975
+ "850": "teddy, teddy bear",
976
+ "851": "television, television system",
977
+ "852": "tennis ball",
978
+ "853": "thatch, thatched roof",
979
+ "854": "theater curtain, theatre curtain",
980
+ "855": "thimble",
981
+ "856": "thresher, thrasher, threshing machine",
982
+ "857": "throne",
983
+ "858": "tile roof",
984
+ "859": "toaster",
985
+ "860": "tobacco shop, tobacconist shop, tobacconist",
986
+ "861": "toilet seat",
987
+ "862": "torch",
988
+ "863": "totem pole",
989
+ "864": "tow truck, tow car, wrecker",
990
+ "865": "toyshop",
991
+ "866": "tractor",
992
+ "867": "trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi",
993
+ "868": "tray",
994
+ "869": "trench coat",
995
+ "870": "tricycle, trike, velocipede",
996
+ "871": "trimaran",
997
+ "872": "tripod",
998
+ "873": "triumphal arch",
999
+ "874": "trolleybus, trolley coach, trackless trolley",
1000
+ "875": "trombone",
1001
+ "876": "tub, vat",
1002
+ "877": "turnstile",
1003
+ "878": "typewriter keyboard",
1004
+ "879": "umbrella",
1005
+ "880": "unicycle, monocycle",
1006
+ "881": "upright, upright piano",
1007
+ "882": "vacuum, vacuum cleaner",
1008
+ "883": "vase",
1009
+ "884": "vault",
1010
+ "885": "velvet",
1011
+ "886": "vending machine",
1012
+ "887": "vestment",
1013
+ "888": "viaduct",
1014
+ "889": "violin, fiddle",
1015
+ "890": "volleyball",
1016
+ "891": "waffle iron",
1017
+ "892": "wall clock",
1018
+ "893": "wallet, billfold, notecase, pocketbook",
1019
+ "894": "wardrobe, closet, press",
1020
+ "895": "warplane, military plane",
1021
+ "896": "washbasin, handbasin, washbowl, lavabo, wash-hand basin",
1022
+ "897": "washer, automatic washer, washing machine",
1023
+ "898": "water bottle",
1024
+ "899": "water jug",
1025
+ "900": "water tower",
1026
+ "901": "whiskey jug",
1027
+ "902": "whistle",
1028
+ "903": "wig",
1029
+ "904": "window screen",
1030
+ "905": "window shade",
1031
+ "906": "Windsor tie",
1032
+ "907": "wine bottle",
1033
+ "908": "wing",
1034
+ "909": "wok",
1035
+ "910": "wooden spoon",
1036
+ "911": "wool, woolen, woollen",
1037
+ "912": "worm fence, snake fence, snake-rail fence, Virginia fence",
1038
+ "913": "wreck",
1039
+ "914": "yawl",
1040
+ "915": "yurt",
1041
+ "916": "web site, website, internet site, site",
1042
+ "917": "comic book",
1043
+ "918": "crossword puzzle, crossword",
1044
+ "919": "street sign",
1045
+ "920": "traffic light, traffic signal, stoplight",
1046
+ "921": "book jacket, dust cover, dust jacket, dust wrapper",
1047
+ "922": "menu",
1048
+ "923": "plate",
1049
+ "924": "guacamole",
1050
+ "925": "consomme",
1051
+ "926": "hot pot, hotpot",
1052
+ "927": "trifle",
1053
+ "928": "ice cream, icecream",
1054
+ "929": "ice lolly, lolly, lollipop, popsicle",
1055
+ "930": "French loaf",
1056
+ "931": "bagel, beigel",
1057
+ "932": "pretzel",
1058
+ "933": "cheeseburger",
1059
+ "934": "hotdog, hot dog, red hot",
1060
+ "935": "mashed potato",
1061
+ "936": "head cabbage",
1062
+ "937": "broccoli",
1063
+ "938": "cauliflower",
1064
+ "939": "zucchini, courgette",
1065
+ "940": "spaghetti squash",
1066
+ "941": "acorn squash",
1067
+ "942": "butternut squash",
1068
+ "943": "cucumber, cuke",
1069
+ "944": "artichoke, globe artichoke",
1070
+ "945": "bell pepper",
1071
+ "946": "cardoon",
1072
+ "947": "mushroom",
1073
+ "948": "Granny Smith",
1074
+ "949": "strawberry",
1075
+ "950": "orange",
1076
+ "951": "lemon",
1077
+ "952": "fig",
1078
+ "953": "pineapple, ananas",
1079
+ "954": "banana",
1080
+ "955": "jackfruit, jak, jack",
1081
+ "956": "custard apple",
1082
+ "957": "pomegranate",
1083
+ "958": "hay",
1084
+ "959": "carbonara",
1085
+ "960": "chocolate sauce, chocolate syrup",
1086
+ "961": "dough",
1087
+ "962": "meat loaf, meatloaf",
1088
+ "963": "pizza, pizza pie",
1089
+ "964": "potpie",
1090
+ "965": "burrito",
1091
+ "966": "red wine",
1092
+ "967": "espresso",
1093
+ "968": "cup",
1094
+ "969": "eggnog",
1095
+ "970": "alp",
1096
+ "971": "bubble",
1097
+ "972": "cliff, drop, drop-off",
1098
+ "973": "coral reef",
1099
+ "974": "geyser",
1100
+ "975": "lakeside, lakeshore",
1101
+ "976": "promontory, headland, head, foreland",
1102
+ "977": "sandbar, sand bar",
1103
+ "978": "seashore, coast, seacoast, sea-coast",
1104
+ "979": "valley, vale",
1105
+ "980": "volcano",
1106
+ "981": "ballplayer, baseball player",
1107
+ "982": "groom, bridegroom",
1108
+ "983": "scuba diver",
1109
+ "984": "rapeseed",
1110
+ "985": "daisy",
1111
+ "986": "yellow lady's slipper, yellow lady-slipper, Cypripedium calceolus, Cypripedium parviflorum",
1112
+ "987": "corn",
1113
+ "988": "acorn",
1114
+ "989": "hip, rose hip, rosehip",
1115
+ "990": "buckeye, horse chestnut, conker",
1116
+ "991": "coral fungus",
1117
+ "992": "agaric",
1118
+ "993": "gyromitra",
1119
+ "994": "stinkhorn, carrion fungus",
1120
+ "995": "earthstar",
1121
+ "996": "hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa",
1122
+ "997": "bolete",
1123
+ "998": "ear, spike, capitulum",
1124
+ "999": "toilet tissue, toilet paper, bathroom tissue"
1125
+ },
1126
+ "image_size": 224,
1127
+ "initializer_range": 0.02,
1128
+ "intermediate_size": 3072,
1129
+ "is_decoder": false,
1130
+ "is_encoder_decoder": false,
1131
+ "label2id": {
1132
+ "Afghan hound, Afghan": 160,
1133
+ "African chameleon, Chamaeleo chamaeleon": 47,
1134
+ "African crocodile, Nile crocodile, Crocodylus niloticus": 49,
1135
+ "African elephant, Loxodonta africana": 386,
1136
+ "African grey, African gray, Psittacus erithacus": 87,
1137
+ "African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus": 275,
1138
+ "Airedale, Airedale terrier": 191,
1139
+ "American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier": 180,
1140
+ "American alligator, Alligator mississipiensis": 50,
1141
+ "American black bear, black bear, Ursus americanus, Euarctos americanus": 295,
1142
+ "American chameleon, anole, Anolis carolinensis": 40,
1143
+ "American coot, marsh hen, mud hen, water hen, Fulica americana": 137,
1144
+ "American egret, great white heron, Egretta albus": 132,
1145
+ "American lobster, Northern lobster, Maine lobster, Homarus americanus": 122,
1146
+ "Angora, Angora rabbit": 332,
1147
+ "Appenzeller": 240,
1148
+ "Arabian camel, dromedary, Camelus dromedarius": 354,
1149
+ "Arctic fox, white fox, Alopex lagopus": 279,
1150
+ "Australian terrier": 193,
1151
+ "Band Aid": 419,
1152
+ "Bedlington terrier": 181,
1153
+ "Bernese mountain dog": 239,
1154
+ "Blenheim spaniel": 156,
1155
+ "Border collie": 232,
1156
+ "Border terrier": 182,
1157
+ "Boston bull, Boston terrier": 195,
1158
+ "Bouvier des Flandres, Bouviers des Flandres": 233,
1159
+ "Brabancon griffon": 262,
1160
+ "Brittany spaniel": 215,
1161
+ "CD player": 485,
1162
+ "Cardigan, Cardigan Welsh corgi": 264,
1163
+ "Chesapeake Bay retriever": 209,
1164
+ "Chihuahua": 151,
1165
+ "Christmas stocking": 496,
1166
+ "Crock Pot": 521,
1167
+ "Dandie Dinmont, Dandie Dinmont terrier": 194,
1168
+ "Doberman, Doberman pinscher": 236,
1169
+ "Dungeness crab, Cancer magister": 118,
1170
+ "Dutch oven": 544,
1171
+ "Egyptian cat": 285,
1172
+ "English foxhound": 167,
1173
+ "English setter": 212,
1174
+ "English springer, English springer spaniel": 217,
1175
+ "EntleBucher": 241,
1176
+ "Eskimo dog, husky": 248,
1177
+ "European fire salamander, Salamandra salamandra": 25,
1178
+ "European gallinule, Porphyrio porphyrio": 136,
1179
+ "French bulldog": 245,
1180
+ "French horn, horn": 566,
1181
+ "French loaf": 930,
1182
+ "German shepherd, German shepherd dog, German police dog, alsatian": 235,
1183
+ "German short-haired pointer": 210,
1184
+ "Gila monster, Heloderma suspectum": 45,
1185
+ "Gordon setter": 214,
1186
+ "Granny Smith": 948,
1187
+ "Great Dane": 246,
1188
+ "Great Pyrenees": 257,
1189
+ "Greater Swiss Mountain dog": 238,
1190
+ "Ibizan hound, Ibizan Podenco": 173,
1191
+ "Indian cobra, Naja naja": 63,
1192
+ "Indian elephant, Elephas maximus": 385,
1193
+ "Irish setter, red setter": 213,
1194
+ "Irish terrier": 184,
1195
+ "Irish water spaniel": 221,
1196
+ "Irish wolfhound": 170,
1197
+ "Italian greyhound": 171,
1198
+ "Japanese spaniel": 152,
1199
+ "Kerry blue terrier": 183,
1200
+ "Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis": 48,
1201
+ "Labrador retriever": 208,
1202
+ "Lakeland terrier": 189,
1203
+ "Leonberg": 255,
1204
+ "Lhasa, Lhasa apso": 204,
1205
+ "Loafer": 630,
1206
+ "Madagascar cat, ring-tailed lemur, Lemur catta": 383,
1207
+ "Maltese dog, Maltese terrier, Maltese": 153,
1208
+ "Mexican hairless": 268,
1209
+ "Model T": 661,
1210
+ "Newfoundland, Newfoundland dog": 256,
1211
+ "Norfolk terrier": 185,
1212
+ "Norwegian elkhound, elkhound": 174,
1213
+ "Norwich terrier": 186,
1214
+ "Old English sheepdog, bobtail": 229,
1215
+ "Pekinese, Pekingese, Peke": 154,
1216
+ "Pembroke, Pembroke Welsh corgi": 263,
1217
+ "Persian cat": 283,
1218
+ "Petri dish": 712,
1219
+ "Polaroid camera, Polaroid Land camera": 732,
1220
+ "Pomeranian": 259,
1221
+ "Rhodesian ridgeback": 159,
1222
+ "Rottweiler": 234,
1223
+ "Saint Bernard, St Bernard": 247,
1224
+ "Saluki, gazelle hound": 176,
1225
+ "Samoyed, Samoyede": 258,
1226
+ "Scotch terrier, Scottish terrier, Scottie": 199,
1227
+ "Scottish deerhound, deerhound": 177,
1228
+ "Sealyham terrier, Sealyham": 190,
1229
+ "Shetland sheepdog, Shetland sheep dog, Shetland": 230,
1230
+ "Shih-Tzu": 155,
1231
+ "Siamese cat, Siamese": 284,
1232
+ "Siberian husky": 250,
1233
+ "Staffordshire bullterrier, Staffordshire bull terrier": 179,
1234
+ "Sussex spaniel": 220,
1235
+ "Tibetan mastiff": 244,
1236
+ "Tibetan terrier, chrysanthemum dog": 200,
1237
+ "Walker hound, Walker foxhound": 166,
1238
+ "Weimaraner": 178,
1239
+ "Welsh springer spaniel": 218,
1240
+ "West Highland white terrier": 203,
1241
+ "Windsor tie": 906,
1242
+ "Yorkshire terrier": 187,
1243
+ "abacus": 398,
1244
+ "abaya": 399,
1245
+ "academic gown, academic robe, judge's robe": 400,
1246
+ "accordion, piano accordion, squeeze box": 401,
1247
+ "acorn": 988,
1248
+ "acorn squash": 941,
1249
+ "acoustic guitar": 402,
1250
+ "admiral": 321,
1251
+ "affenpinscher, monkey pinscher, monkey dog": 252,
1252
+ "agama": 42,
1253
+ "agaric": 992,
1254
+ "aircraft carrier, carrier, flattop, attack aircraft carrier": 403,
1255
+ "airliner": 404,
1256
+ "airship, dirigible": 405,
1257
+ "albatross, mollymawk": 146,
1258
+ "alligator lizard": 44,
1259
+ "alp": 970,
1260
+ "altar": 406,
1261
+ "ambulance": 407,
1262
+ "amphibian, amphibious vehicle": 408,
1263
+ "analog clock": 409,
1264
+ "anemone fish": 393,
1265
+ "ant, emmet, pismire": 310,
1266
+ "apiary, bee house": 410,
1267
+ "apron": 411,
1268
+ "armadillo": 363,
1269
+ "artichoke, globe artichoke": 944,
1270
+ "ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin": 412,
1271
+ "assault rifle, assault gun": 413,
1272
+ "axolotl, mud puppy, Ambystoma mexicanum": 29,
1273
+ "baboon": 372,
1274
+ "backpack, back pack, knapsack, packsack, rucksack, haversack": 414,
1275
+ "badger": 362,
1276
+ "bagel, beigel": 931,
1277
+ "bakery, bakeshop, bakehouse": 415,
1278
+ "balance beam, beam": 416,
1279
+ "bald eagle, American eagle, Haliaeetus leucocephalus": 22,
1280
+ "balloon": 417,
1281
+ "ballplayer, baseball player": 981,
1282
+ "ballpoint, ballpoint pen, ballpen, Biro": 418,
1283
+ "banana": 954,
1284
+ "banded gecko": 38,
1285
+ "banjo": 420,
1286
+ "bannister, banister, balustrade, balusters, handrail": 421,
1287
+ "barbell": 422,
1288
+ "barber chair": 423,
1289
+ "barbershop": 424,
1290
+ "barn": 425,
1291
+ "barn spider, Araneus cavaticus": 73,
1292
+ "barometer": 426,
1293
+ "barracouta, snoek": 389,
1294
+ "barrel, cask": 427,
1295
+ "barrow, garden cart, lawn cart, wheelbarrow": 428,
1296
+ "baseball": 429,
1297
+ "basenji": 253,
1298
+ "basketball": 430,
1299
+ "basset, basset hound": 161,
1300
+ "bassinet": 431,
1301
+ "bassoon": 432,
1302
+ "bath towel": 434,
1303
+ "bathing cap, swimming cap": 433,
1304
+ "bathtub, bathing tub, bath, tub": 435,
1305
+ "beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon": 436,
1306
+ "beacon, lighthouse, beacon light, pharos": 437,
1307
+ "beagle": 162,
1308
+ "beaker": 438,
1309
+ "bearskin, busby, shako": 439,
1310
+ "beaver": 337,
1311
+ "bee": 309,
1312
+ "bee eater": 92,
1313
+ "beer bottle": 440,
1314
+ "beer glass": 441,
1315
+ "bell cote, bell cot": 442,
1316
+ "bell pepper": 945,
1317
+ "bib": 443,
1318
+ "bicycle-built-for-two, tandem bicycle, tandem": 444,
1319
+ "bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis": 349,
1320
+ "bikini, two-piece": 445,
1321
+ "binder, ring-binder": 446,
1322
+ "binoculars, field glasses, opera glasses": 447,
1323
+ "birdhouse": 448,
1324
+ "bison": 347,
1325
+ "bittern": 133,
1326
+ "black and gold garden spider, Argiope aurantia": 72,
1327
+ "black grouse": 80,
1328
+ "black stork, Ciconia nigra": 128,
1329
+ "black swan, Cygnus atratus": 100,
1330
+ "black widow, Latrodectus mactans": 75,
1331
+ "black-and-tan coonhound": 165,
1332
+ "black-footed ferret, ferret, Mustela nigripes": 359,
1333
+ "bloodhound, sleuthhound": 163,
1334
+ "bluetick": 164,
1335
+ "boa constrictor, Constrictor constrictor": 61,
1336
+ "boathouse": 449,
1337
+ "bobsled, bobsleigh, bob": 450,
1338
+ "bolete": 997,
1339
+ "bolo tie, bolo, bola tie, bola": 451,
1340
+ "bonnet, poke bonnet": 452,
1341
+ "book jacket, dust cover, dust jacket, dust wrapper": 921,
1342
+ "bookcase": 453,
1343
+ "bookshop, bookstore, bookstall": 454,
1344
+ "borzoi, Russian wolfhound": 169,
1345
+ "bottlecap": 455,
1346
+ "bow": 456,
1347
+ "bow tie, bow-tie, bowtie": 457,
1348
+ "box turtle, box tortoise": 37,
1349
+ "boxer": 242,
1350
+ "brain coral": 109,
1351
+ "brambling, Fringilla montifringilla": 10,
1352
+ "brass, memorial tablet, plaque": 458,
1353
+ "brassiere, bra, bandeau": 459,
1354
+ "breakwater, groin, groyne, mole, bulwark, seawall, jetty": 460,
1355
+ "breastplate, aegis, egis": 461,
1356
+ "briard": 226,
1357
+ "broccoli": 937,
1358
+ "broom": 462,
1359
+ "brown bear, bruin, Ursus arctos": 294,
1360
+ "bubble": 971,
1361
+ "bucket, pail": 463,
1362
+ "buckeye, horse chestnut, conker": 990,
1363
+ "buckle": 464,
1364
+ "bulbul": 16,
1365
+ "bull mastiff": 243,
1366
+ "bullet train, bullet": 466,
1367
+ "bulletproof vest": 465,
1368
+ "bullfrog, Rana catesbeiana": 30,
1369
+ "burrito": 965,
1370
+ "bustard": 138,
1371
+ "butcher shop, meat market": 467,
1372
+ "butternut squash": 942,
1373
+ "cab, hack, taxi, taxicab": 468,
1374
+ "cabbage butterfly": 324,
1375
+ "cairn, cairn terrier": 192,
1376
+ "caldron, cauldron": 469,
1377
+ "can opener, tin opener": 473,
1378
+ "candle, taper, wax light": 470,
1379
+ "cannon": 471,
1380
+ "canoe": 472,
1381
+ "capuchin, ringtail, Cebus capucinus": 378,
1382
+ "car mirror": 475,
1383
+ "car wheel": 479,
1384
+ "carbonara": 959,
1385
+ "cardigan": 474,
1386
+ "cardoon": 946,
1387
+ "carousel, carrousel, merry-go-round, roundabout, whirligig": 476,
1388
+ "carpenter's kit, tool kit": 477,
1389
+ "carton": 478,
1390
+ "cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM": 480,
1391
+ "cassette": 481,
1392
+ "cassette player": 482,
1393
+ "castle": 483,
1394
+ "catamaran": 484,
1395
+ "cauliflower": 938,
1396
+ "cello, violoncello": 486,
1397
+ "cellular telephone, cellular phone, cellphone, cell, mobile phone": 487,
1398
+ "centipede": 79,
1399
+ "chain": 488,
1400
+ "chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour": 490,
1401
+ "chain saw, chainsaw": 491,
1402
+ "chainlink fence": 489,
1403
+ "chambered nautilus, pearly nautilus, nautilus": 117,
1404
+ "cheeseburger": 933,
1405
+ "cheetah, chetah, Acinonyx jubatus": 293,
1406
+ "chest": 492,
1407
+ "chickadee": 19,
1408
+ "chiffonier, commode": 493,
1409
+ "chime, bell, gong": 494,
1410
+ "chimpanzee, chimp, Pan troglodytes": 367,
1411
+ "china cabinet, china closet": 495,
1412
+ "chiton, coat-of-mail shell, sea cradle, polyplacophore": 116,
1413
+ "chocolate sauce, chocolate syrup": 960,
1414
+ "chow, chow chow": 260,
1415
+ "church, church building": 497,
1416
+ "cicada, cicala": 316,
1417
+ "cinema, movie theater, movie theatre, movie house, picture palace": 498,
1418
+ "cleaver, meat cleaver, chopper": 499,
1419
+ "cliff dwelling": 500,
1420
+ "cliff, drop, drop-off": 972,
1421
+ "cloak": 501,
1422
+ "clog, geta, patten, sabot": 502,
1423
+ "clumber, clumber spaniel": 216,
1424
+ "cock": 7,
1425
+ "cocker spaniel, English cocker spaniel, cocker": 219,
1426
+ "cockroach, roach": 314,
1427
+ "cocktail shaker": 503,
1428
+ "coffee mug": 504,
1429
+ "coffeepot": 505,
1430
+ "coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch": 391,
1431
+ "coil, spiral, volute, whorl, helix": 506,
1432
+ "collie": 231,
1433
+ "colobus, colobus monkey": 375,
1434
+ "combination lock": 507,
1435
+ "comic book": 917,
1436
+ "common iguana, iguana, Iguana iguana": 39,
1437
+ "common newt, Triturus vulgaris": 26,
1438
+ "computer keyboard, keypad": 508,
1439
+ "conch": 112,
1440
+ "confectionery, confectionary, candy store": 509,
1441
+ "consomme": 925,
1442
+ "container ship, containership, container vessel": 510,
1443
+ "convertible": 511,
1444
+ "coral fungus": 991,
1445
+ "coral reef": 973,
1446
+ "corkscrew, bottle screw": 512,
1447
+ "corn": 987,
1448
+ "cornet, horn, trumpet, trump": 513,
1449
+ "coucal": 91,
1450
+ "cougar, puma, catamount, mountain lion, painter, panther, Felis concolor": 286,
1451
+ "cowboy boot": 514,
1452
+ "cowboy hat, ten-gallon hat": 515,
1453
+ "coyote, prairie wolf, brush wolf, Canis latrans": 272,
1454
+ "cradle": 516,
1455
+ "crane": 517,
1456
+ "crash helmet": 518,
1457
+ "crate": 519,
1458
+ "crayfish, crawfish, crawdad, crawdaddy": 124,
1459
+ "crib, cot": 520,
1460
+ "cricket": 312,
1461
+ "croquet ball": 522,
1462
+ "crossword puzzle, crossword": 918,
1463
+ "crutch": 523,
1464
+ "cucumber, cuke": 943,
1465
+ "cuirass": 524,
1466
+ "cup": 968,
1467
+ "curly-coated retriever": 206,
1468
+ "custard apple": 956,
1469
+ "daisy": 985,
1470
+ "dalmatian, coach dog, carriage dog": 251,
1471
+ "dam, dike, dyke": 525,
1472
+ "damselfly": 320,
1473
+ "desk": 526,
1474
+ "desktop computer": 527,
1475
+ "dhole, Cuon alpinus": 274,
1476
+ "dial telephone, dial phone": 528,
1477
+ "diamondback, diamondback rattlesnake, Crotalus adamanteus": 67,
1478
+ "diaper, nappy, napkin": 529,
1479
+ "digital clock": 530,
1480
+ "digital watch": 531,
1481
+ "dingo, warrigal, warragal, Canis dingo": 273,
1482
+ "dining table, board": 532,
1483
+ "dishrag, dishcloth": 533,
1484
+ "dishwasher, dish washer, dishwashing machine": 534,
1485
+ "disk brake, disc brake": 535,
1486
+ "dock, dockage, docking facility": 536,
1487
+ "dogsled, dog sled, dog sleigh": 537,
1488
+ "dome": 538,
1489
+ "doormat, welcome mat": 539,
1490
+ "dough": 961,
1491
+ "dowitcher": 142,
1492
+ "dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk": 319,
1493
+ "drake": 97,
1494
+ "drilling platform, offshore rig": 540,
1495
+ "drum, membranophone, tympan": 541,
1496
+ "drumstick": 542,
1497
+ "dugong, Dugong dugon": 149,
1498
+ "dumbbell": 543,
1499
+ "dung beetle": 305,
1500
+ "ear, spike, capitulum": 998,
1501
+ "earthstar": 995,
1502
+ "echidna, spiny anteater, anteater": 102,
1503
+ "eel": 390,
1504
+ "eft": 27,
1505
+ "eggnog": 969,
1506
+ "electric fan, blower": 545,
1507
+ "electric guitar": 546,
1508
+ "electric locomotive": 547,
1509
+ "electric ray, crampfish, numbfish, torpedo": 5,
1510
+ "entertainment center": 548,
1511
+ "envelope": 549,
1512
+ "espresso": 967,
1513
+ "espresso maker": 550,
1514
+ "face powder": 551,
1515
+ "feather boa, boa": 552,
1516
+ "fiddler crab": 120,
1517
+ "fig": 952,
1518
+ "file, file cabinet, filing cabinet": 553,
1519
+ "fire engine, fire truck": 555,
1520
+ "fire screen, fireguard": 556,
1521
+ "fireboat": 554,
1522
+ "flagpole, flagstaff": 557,
1523
+ "flamingo": 130,
1524
+ "flat-coated retriever": 205,
1525
+ "flatworm, platyhelminth": 110,
1526
+ "flute, transverse flute": 558,
1527
+ "fly": 308,
1528
+ "folding chair": 559,
1529
+ "football helmet": 560,
1530
+ "forklift": 561,
1531
+ "fountain": 562,
1532
+ "fountain pen": 563,
1533
+ "four-poster": 564,
1534
+ "fox squirrel, eastern fox squirrel, Sciurus niger": 335,
1535
+ "freight car": 565,
1536
+ "frilled lizard, Chlamydosaurus kingi": 43,
1537
+ "frying pan, frypan, skillet": 567,
1538
+ "fur coat": 568,
1539
+ "gar, garfish, garpike, billfish, Lepisosteus osseus": 395,
1540
+ "garbage truck, dustcart": 569,
1541
+ "garden spider, Aranea diademata": 74,
1542
+ "garter snake, grass snake": 57,
1543
+ "gas pump, gasoline pump, petrol pump, island dispenser": 571,
1544
+ "gasmask, respirator, gas helmet": 570,
1545
+ "gazelle": 353,
1546
+ "geyser": 974,
1547
+ "giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca": 388,
1548
+ "giant schnauzer": 197,
1549
+ "gibbon, Hylobates lar": 368,
1550
+ "go-kart": 573,
1551
+ "goblet": 572,
1552
+ "golden retriever": 207,
1553
+ "goldfinch, Carduelis carduelis": 11,
1554
+ "goldfish, Carassius auratus": 1,
1555
+ "golf ball": 574,
1556
+ "golfcart, golf cart": 575,
1557
+ "gondola": 576,
1558
+ "gong, tam-tam": 577,
1559
+ "goose": 99,
1560
+ "gorilla, Gorilla gorilla": 366,
1561
+ "gown": 578,
1562
+ "grand piano, grand": 579,
1563
+ "grasshopper, hopper": 311,
1564
+ "great grey owl, great gray owl, Strix nebulosa": 24,
1565
+ "great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias": 2,
1566
+ "green lizard, Lacerta viridis": 46,
1567
+ "green mamba": 64,
1568
+ "green snake, grass snake": 55,
1569
+ "greenhouse, nursery, glasshouse": 580,
1570
+ "grey fox, gray fox, Urocyon cinereoargenteus": 280,
1571
+ "grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus": 147,
1572
+ "grille, radiator grille": 581,
1573
+ "grocery store, grocery, food market, market": 582,
1574
+ "groenendael": 224,
1575
+ "groom, bridegroom": 982,
1576
+ "ground beetle, carabid beetle": 302,
1577
+ "guacamole": 924,
1578
+ "guenon, guenon monkey": 370,
1579
+ "guillotine": 583,
1580
+ "guinea pig, Cavia cobaya": 338,
1581
+ "gyromitra": 993,
1582
+ "hair slide": 584,
1583
+ "hair spray": 585,
1584
+ "half track": 586,
1585
+ "hammer": 587,
1586
+ "hammerhead, hammerhead shark": 4,
1587
+ "hamper": 588,
1588
+ "hamster": 333,
1589
+ "hand blower, blow dryer, blow drier, hair dryer, hair drier": 589,
1590
+ "hand-held computer, hand-held microcomputer": 590,
1591
+ "handkerchief, hankie, hanky, hankey": 591,
1592
+ "hard disc, hard disk, fixed disk": 592,
1593
+ "hare": 331,
1594
+ "harmonica, mouth organ, harp, mouth harp": 593,
1595
+ "harp": 594,
1596
+ "hartebeest": 351,
1597
+ "harvester, reaper": 595,
1598
+ "harvestman, daddy longlegs, Phalangium opilio": 70,
1599
+ "hatchet": 596,
1600
+ "hay": 958,
1601
+ "head cabbage": 936,
1602
+ "hen": 8,
1603
+ "hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa": 996,
1604
+ "hermit crab": 125,
1605
+ "hip, rose hip, rosehip": 989,
1606
+ "hippopotamus, hippo, river horse, Hippopotamus amphibius": 344,
1607
+ "hog, pig, grunter, squealer, Sus scrofa": 341,
1608
+ "hognose snake, puff adder, sand viper": 54,
1609
+ "holster": 597,
1610
+ "home theater, home theatre": 598,
1611
+ "honeycomb": 599,
1612
+ "hook, claw": 600,
1613
+ "hoopskirt, crinoline": 601,
1614
+ "horizontal bar, high bar": 602,
1615
+ "hornbill": 93,
1616
+ "horned viper, cerastes, sand viper, horned asp, Cerastes cornutus": 66,
1617
+ "horse cart, horse-cart": 603,
1618
+ "hot pot, hotpot": 926,
1619
+ "hotdog, hot dog, red hot": 934,
1620
+ "hourglass": 604,
1621
+ "house finch, linnet, Carpodacus mexicanus": 12,
1622
+ "howler monkey, howler": 379,
1623
+ "hummingbird": 94,
1624
+ "hyena, hyaena": 276,
1625
+ "iPod": 605,
1626
+ "ibex, Capra ibex": 350,
1627
+ "ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus": 296,
1628
+ "ice cream, icecream": 928,
1629
+ "ice lolly, lolly, lollipop, popsicle": 929,
1630
+ "impala, Aepyceros melampus": 352,
1631
+ "indigo bunting, indigo finch, indigo bird, Passerina cyanea": 14,
1632
+ "indri, indris, Indri indri, Indri brevicaudatus": 384,
1633
+ "iron, smoothing iron": 606,
1634
+ "isopod": 126,
1635
+ "jacamar": 95,
1636
+ "jack-o'-lantern": 607,
1637
+ "jackfruit, jak, jack": 955,
1638
+ "jaguar, panther, Panthera onca, Felis onca": 290,
1639
+ "jay": 17,
1640
+ "jean, blue jean, denim": 608,
1641
+ "jeep, landrover": 609,
1642
+ "jellyfish": 107,
1643
+ "jersey, T-shirt, tee shirt": 610,
1644
+ "jigsaw puzzle": 611,
1645
+ "jinrikisha, ricksha, rickshaw": 612,
1646
+ "joystick": 613,
1647
+ "junco, snowbird": 13,
1648
+ "keeshond": 261,
1649
+ "kelpie": 227,
1650
+ "killer whale, killer, orca, grampus, sea wolf, Orcinus orca": 148,
1651
+ "kimono": 614,
1652
+ "king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica": 121,
1653
+ "king penguin, Aptenodytes patagonica": 145,
1654
+ "king snake, kingsnake": 56,
1655
+ "kit fox, Vulpes macrotis": 278,
1656
+ "kite": 21,
1657
+ "knee pad": 615,
1658
+ "knot": 616,
1659
+ "koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus": 105,
1660
+ "komondor": 228,
1661
+ "kuvasz": 222,
1662
+ "lab coat, laboratory coat": 617,
1663
+ "lacewing, lacewing fly": 318,
1664
+ "ladle": 618,
1665
+ "ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle": 301,
1666
+ "lakeside, lakeshore": 975,
1667
+ "lampshade, lamp shade": 619,
1668
+ "langur": 374,
1669
+ "laptop, laptop computer": 620,
1670
+ "lawn mower, mower": 621,
1671
+ "leaf beetle, chrysomelid": 304,
1672
+ "leafhopper": 317,
1673
+ "leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea": 34,
1674
+ "lemon": 951,
1675
+ "lens cap, lens cover": 622,
1676
+ "leopard, Panthera pardus": 288,
1677
+ "lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens": 387,
1678
+ "letter opener, paper knife, paperknife": 623,
1679
+ "library": 624,
1680
+ "lifeboat": 625,
1681
+ "lighter, light, igniter, ignitor": 626,
1682
+ "limousine, limo": 627,
1683
+ "limpkin, Aramus pictus": 135,
1684
+ "liner, ocean liner": 628,
1685
+ "lion, king of beasts, Panthera leo": 291,
1686
+ "lionfish": 396,
1687
+ "lipstick, lip rouge": 629,
1688
+ "little blue heron, Egretta caerulea": 131,
1689
+ "llama": 355,
1690
+ "loggerhead, loggerhead turtle, Caretta caretta": 33,
1691
+ "long-horned beetle, longicorn, longicorn beetle": 303,
1692
+ "lorikeet": 90,
1693
+ "lotion": 631,
1694
+ "loudspeaker, speaker, speaker unit, loudspeaker system, speaker system": 632,
1695
+ "loupe, jeweler's loupe": 633,
1696
+ "lumbermill, sawmill": 634,
1697
+ "lycaenid, lycaenid butterfly": 326,
1698
+ "lynx, catamount": 287,
1699
+ "macaque": 373,
1700
+ "macaw": 88,
1701
+ "magnetic compass": 635,
1702
+ "magpie": 18,
1703
+ "mailbag, postbag": 636,
1704
+ "mailbox, letter box": 637,
1705
+ "maillot": 638,
1706
+ "maillot, tank suit": 639,
1707
+ "malamute, malemute, Alaskan malamute": 249,
1708
+ "malinois": 225,
1709
+ "manhole cover": 640,
1710
+ "mantis, mantid": 315,
1711
+ "maraca": 641,
1712
+ "marimba, xylophone": 642,
1713
+ "marmoset": 377,
1714
+ "marmot": 336,
1715
+ "mashed potato": 935,
1716
+ "mask": 643,
1717
+ "matchstick": 644,
1718
+ "maypole": 645,
1719
+ "maze, labyrinth": 646,
1720
+ "measuring cup": 647,
1721
+ "meat loaf, meatloaf": 962,
1722
+ "medicine chest, medicine cabinet": 648,
1723
+ "meerkat, mierkat": 299,
1724
+ "megalith, megalithic structure": 649,
1725
+ "menu": 922,
1726
+ "microphone, mike": 650,
1727
+ "microwave, microwave oven": 651,
1728
+ "military uniform": 652,
1729
+ "milk can": 653,
1730
+ "miniature pinscher": 237,
1731
+ "miniature poodle": 266,
1732
+ "miniature schnauzer": 196,
1733
+ "minibus": 654,
1734
+ "miniskirt, mini": 655,
1735
+ "minivan": 656,
1736
+ "mink": 357,
1737
+ "missile": 657,
1738
+ "mitten": 658,
1739
+ "mixing bowl": 659,
1740
+ "mobile home, manufactured home": 660,
1741
+ "modem": 662,
1742
+ "monarch, monarch butterfly, milkweed butterfly, Danaus plexippus": 323,
1743
+ "monastery": 663,
1744
+ "mongoose": 298,
1745
+ "monitor": 664,
1746
+ "moped": 665,
1747
+ "mortar": 666,
1748
+ "mortarboard": 667,
1749
+ "mosque": 668,
1750
+ "mosquito net": 669,
1751
+ "motor scooter, scooter": 670,
1752
+ "mountain bike, all-terrain bike, off-roader": 671,
1753
+ "mountain tent": 672,
1754
+ "mouse, computer mouse": 673,
1755
+ "mousetrap": 674,
1756
+ "moving van": 675,
1757
+ "mud turtle": 35,
1758
+ "mushroom": 947,
1759
+ "muzzle": 676,
1760
+ "nail": 677,
1761
+ "neck brace": 678,
1762
+ "necklace": 679,
1763
+ "nematode, nematode worm, roundworm": 111,
1764
+ "night snake, Hypsiglena torquata": 60,
1765
+ "nipple": 680,
1766
+ "notebook, notebook computer": 681,
1767
+ "obelisk": 682,
1768
+ "oboe, hautboy, hautbois": 683,
1769
+ "ocarina, sweet potato": 684,
1770
+ "odometer, hodometer, mileometer, milometer": 685,
1771
+ "oil filter": 686,
1772
+ "orange": 950,
1773
+ "orangutan, orang, orangutang, Pongo pygmaeus": 365,
1774
+ "organ, pipe organ": 687,
1775
+ "oscilloscope, scope, cathode-ray oscilloscope, CRO": 688,
1776
+ "ostrich, Struthio camelus": 9,
1777
+ "otter": 360,
1778
+ "otterhound, otter hound": 175,
1779
+ "overskirt": 689,
1780
+ "ox": 345,
1781
+ "oxcart": 690,
1782
+ "oxygen mask": 691,
1783
+ "oystercatcher, oyster catcher": 143,
1784
+ "packet": 692,
1785
+ "paddle, boat paddle": 693,
1786
+ "paddlewheel, paddle wheel": 694,
1787
+ "padlock": 695,
1788
+ "paintbrush": 696,
1789
+ "pajama, pyjama, pj's, jammies": 697,
1790
+ "palace": 698,
1791
+ "panpipe, pandean pipe, syrinx": 699,
1792
+ "paper towel": 700,
1793
+ "papillon": 157,
1794
+ "parachute, chute": 701,
1795
+ "parallel bars, bars": 702,
1796
+ "park bench": 703,
1797
+ "parking meter": 704,
1798
+ "partridge": 86,
1799
+ "passenger car, coach, carriage": 705,
1800
+ "patas, hussar monkey, Erythrocebus patas": 371,
1801
+ "patio, terrace": 706,
1802
+ "pay-phone, pay-station": 707,
1803
+ "peacock": 84,
1804
+ "pedestal, plinth, footstall": 708,
1805
+ "pelican": 144,
1806
+ "pencil box, pencil case": 709,
1807
+ "pencil sharpener": 710,
1808
+ "perfume, essence": 711,
1809
+ "photocopier": 713,
1810
+ "pick, plectrum, plectron": 714,
1811
+ "pickelhaube": 715,
1812
+ "picket fence, paling": 716,
1813
+ "pickup, pickup truck": 717,
1814
+ "pier": 718,
1815
+ "piggy bank, penny bank": 719,
1816
+ "pill bottle": 720,
1817
+ "pillow": 721,
1818
+ "pineapple, ananas": 953,
1819
+ "ping-pong ball": 722,
1820
+ "pinwheel": 723,
1821
+ "pirate, pirate ship": 724,
1822
+ "pitcher, ewer": 725,
1823
+ "pizza, pizza pie": 963,
1824
+ "plane, carpenter's plane, woodworking plane": 726,
1825
+ "planetarium": 727,
1826
+ "plastic bag": 728,
1827
+ "plate": 923,
1828
+ "plate rack": 729,
1829
+ "platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus": 103,
1830
+ "plow, plough": 730,
1831
+ "plunger, plumber's helper": 731,
1832
+ "pole": 733,
1833
+ "polecat, fitch, foulmart, foumart, Mustela putorius": 358,
1834
+ "police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria": 734,
1835
+ "pomegranate": 957,
1836
+ "poncho": 735,
1837
+ "pool table, billiard table, snooker table": 736,
1838
+ "pop bottle, soda bottle": 737,
1839
+ "porcupine, hedgehog": 334,
1840
+ "pot, flowerpot": 738,
1841
+ "potpie": 964,
1842
+ "potter's wheel": 739,
1843
+ "power drill": 740,
1844
+ "prairie chicken, prairie grouse, prairie fowl": 83,
1845
+ "prayer rug, prayer mat": 741,
1846
+ "pretzel": 932,
1847
+ "printer": 742,
1848
+ "prison, prison house": 743,
1849
+ "proboscis monkey, Nasalis larvatus": 376,
1850
+ "projectile, missile": 744,
1851
+ "projector": 745,
1852
+ "promontory, headland, head, foreland": 976,
1853
+ "ptarmigan": 81,
1854
+ "puck, hockey puck": 746,
1855
+ "puffer, pufferfish, blowfish, globefish": 397,
1856
+ "pug, pug-dog": 254,
1857
+ "punching bag, punch bag, punching ball, punchball": 747,
1858
+ "purse": 748,
1859
+ "quail": 85,
1860
+ "quill, quill pen": 749,
1861
+ "quilt, comforter, comfort, puff": 750,
1862
+ "racer, race car, racing car": 751,
1863
+ "racket, racquet": 752,
1864
+ "radiator": 753,
1865
+ "radio telescope, radio reflector": 755,
1866
+ "radio, wireless": 754,
1867
+ "rain barrel": 756,
1868
+ "ram, tup": 348,
1869
+ "rapeseed": 984,
1870
+ "recreational vehicle, RV, R.V.": 757,
1871
+ "red fox, Vulpes vulpes": 277,
1872
+ "red wine": 966,
1873
+ "red wolf, maned wolf, Canis rufus, Canis niger": 271,
1874
+ "red-backed sandpiper, dunlin, Erolia alpina": 140,
1875
+ "red-breasted merganser, Mergus serrator": 98,
1876
+ "redbone": 168,
1877
+ "redshank, Tringa totanus": 141,
1878
+ "reel": 758,
1879
+ "reflex camera": 759,
1880
+ "refrigerator, icebox": 760,
1881
+ "remote control, remote": 761,
1882
+ "restaurant, eating house, eating place, eatery": 762,
1883
+ "revolver, six-gun, six-shooter": 763,
1884
+ "rhinoceros beetle": 306,
1885
+ "rifle": 764,
1886
+ "ringlet, ringlet butterfly": 322,
1887
+ "ringneck snake, ring-necked snake, ring snake": 53,
1888
+ "robin, American robin, Turdus migratorius": 15,
1889
+ "rock beauty, Holocanthus tricolor": 392,
1890
+ "rock crab, Cancer irroratus": 119,
1891
+ "rock python, rock snake, Python sebae": 62,
1892
+ "rocking chair, rocker": 765,
1893
+ "rotisserie": 766,
1894
+ "rubber eraser, rubber, pencil eraser": 767,
1895
+ "ruddy turnstone, Arenaria interpres": 139,
1896
+ "ruffed grouse, partridge, Bonasa umbellus": 82,
1897
+ "rugby ball": 768,
1898
+ "rule, ruler": 769,
1899
+ "running shoe": 770,
1900
+ "safe": 771,
1901
+ "safety pin": 772,
1902
+ "saltshaker, salt shaker": 773,
1903
+ "sandal": 774,
1904
+ "sandbar, sand bar": 977,
1905
+ "sarong": 775,
1906
+ "sax, saxophone": 776,
1907
+ "scabbard": 777,
1908
+ "scale, weighing machine": 778,
1909
+ "schipperke": 223,
1910
+ "school bus": 779,
1911
+ "schooner": 780,
1912
+ "scoreboard": 781,
1913
+ "scorpion": 71,
1914
+ "screen, CRT screen": 782,
1915
+ "screw": 783,
1916
+ "screwdriver": 784,
1917
+ "scuba diver": 983,
1918
+ "sea anemone, anemone": 108,
1919
+ "sea cucumber, holothurian": 329,
1920
+ "sea lion": 150,
1921
+ "sea slug, nudibranch": 115,
1922
+ "sea snake": 65,
1923
+ "sea urchin": 328,
1924
+ "seashore, coast, seacoast, sea-coast": 978,
1925
+ "seat belt, seatbelt": 785,
1926
+ "sewing machine": 786,
1927
+ "shield, buckler": 787,
1928
+ "shoe shop, shoe-shop, shoe store": 788,
1929
+ "shoji": 789,
1930
+ "shopping basket": 790,
1931
+ "shopping cart": 791,
1932
+ "shovel": 792,
1933
+ "shower cap": 793,
1934
+ "shower curtain": 794,
1935
+ "siamang, Hylobates syndactylus, Symphalangus syndactylus": 369,
1936
+ "sidewinder, horned rattlesnake, Crotalus cerastes": 68,
1937
+ "silky terrier, Sydney silky": 201,
1938
+ "ski": 795,
1939
+ "ski mask": 796,
1940
+ "skunk, polecat, wood pussy": 361,
1941
+ "sleeping bag": 797,
1942
+ "slide rule, slipstick": 798,
1943
+ "sliding door": 799,
1944
+ "slot, one-armed bandit": 800,
1945
+ "sloth bear, Melursus ursinus, Ursus ursinus": 297,
1946
+ "slug": 114,
1947
+ "snail": 113,
1948
+ "snorkel": 801,
1949
+ "snow leopard, ounce, Panthera uncia": 289,
1950
+ "snowmobile": 802,
1951
+ "snowplow, snowplough": 803,
1952
+ "soap dispenser": 804,
1953
+ "soccer ball": 805,
1954
+ "sock": 806,
1955
+ "soft-coated wheaten terrier": 202,
1956
+ "solar dish, solar collector, solar furnace": 807,
1957
+ "sombrero": 808,
1958
+ "sorrel": 339,
1959
+ "soup bowl": 809,
1960
+ "space bar": 810,
1961
+ "space heater": 811,
1962
+ "space shuttle": 812,
1963
+ "spaghetti squash": 940,
1964
+ "spatula": 813,
1965
+ "speedboat": 814,
1966
+ "spider monkey, Ateles geoffroyi": 381,
1967
+ "spider web, spider's web": 815,
1968
+ "spindle": 816,
1969
+ "spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish": 123,
1970
+ "spoonbill": 129,
1971
+ "sports car, sport car": 817,
1972
+ "spotlight, spot": 818,
1973
+ "spotted salamander, Ambystoma maculatum": 28,
1974
+ "squirrel monkey, Saimiri sciureus": 382,
1975
+ "stage": 819,
1976
+ "standard poodle": 267,
1977
+ "standard schnauzer": 198,
1978
+ "starfish, sea star": 327,
1979
+ "steam locomotive": 820,
1980
+ "steel arch bridge": 821,
1981
+ "steel drum": 822,
1982
+ "stethoscope": 823,
1983
+ "stingray": 6,
1984
+ "stinkhorn, carrion fungus": 994,
1985
+ "stole": 824,
1986
+ "stone wall": 825,
1987
+ "stopwatch, stop watch": 826,
1988
+ "stove": 827,
1989
+ "strainer": 828,
1990
+ "strawberry": 949,
1991
+ "street sign": 919,
1992
+ "streetcar, tram, tramcar, trolley, trolley car": 829,
1993
+ "stretcher": 830,
1994
+ "studio couch, day bed": 831,
1995
+ "stupa, tope": 832,
1996
+ "sturgeon": 394,
1997
+ "submarine, pigboat, sub, U-boat": 833,
1998
+ "suit, suit of clothes": 834,
1999
+ "sulphur butterfly, sulfur butterfly": 325,
2000
+ "sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita": 89,
2001
+ "sundial": 835,
2002
+ "sunglass": 836,
2003
+ "sunglasses, dark glasses, shades": 837,
2004
+ "sunscreen, sunblock, sun blocker": 838,
2005
+ "suspension bridge": 839,
2006
+ "swab, swob, mop": 840,
2007
+ "sweatshirt": 841,
2008
+ "swimming trunks, bathing trunks": 842,
2009
+ "swing": 843,
2010
+ "switch, electric switch, electrical switch": 844,
2011
+ "syringe": 845,
2012
+ "tabby, tabby cat": 281,
2013
+ "table lamp": 846,
2014
+ "tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui": 32,
2015
+ "tank, army tank, armored combat vehicle, armoured combat vehicle": 847,
2016
+ "tape player": 848,
2017
+ "tarantula": 76,
2018
+ "teapot": 849,
2019
+ "teddy, teddy bear": 850,
2020
+ "television, television system": 851,
2021
+ "tench, Tinca tinca": 0,
2022
+ "tennis ball": 852,
2023
+ "terrapin": 36,
2024
+ "thatch, thatched roof": 853,
2025
+ "theater curtain, theatre curtain": 854,
2026
+ "thimble": 855,
2027
+ "three-toed sloth, ai, Bradypus tridactylus": 364,
2028
+ "thresher, thrasher, threshing machine": 856,
2029
+ "throne": 857,
2030
+ "thunder snake, worm snake, Carphophis amoenus": 52,
2031
+ "tick": 78,
2032
+ "tiger beetle": 300,
2033
+ "tiger cat": 282,
2034
+ "tiger shark, Galeocerdo cuvieri": 3,
2035
+ "tiger, Panthera tigris": 292,
2036
+ "tile roof": 858,
2037
+ "timber wolf, grey wolf, gray wolf, Canis lupus": 269,
2038
+ "titi, titi monkey": 380,
2039
+ "toaster": 859,
2040
+ "tobacco shop, tobacconist shop, tobacconist": 860,
2041
+ "toilet seat": 861,
2042
+ "toilet tissue, toilet paper, bathroom tissue": 999,
2043
+ "torch": 862,
2044
+ "totem pole": 863,
2045
+ "toucan": 96,
2046
+ "tow truck, tow car, wrecker": 864,
2047
+ "toy poodle": 265,
2048
+ "toy terrier": 158,
2049
+ "toyshop": 865,
2050
+ "tractor": 866,
2051
+ "traffic light, traffic signal, stoplight": 920,
2052
+ "trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi": 867,
2053
+ "tray": 868,
2054
+ "tree frog, tree-frog": 31,
2055
+ "trench coat": 869,
2056
+ "triceratops": 51,
2057
+ "tricycle, trike, velocipede": 870,
2058
+ "trifle": 927,
2059
+ "trilobite": 69,
2060
+ "trimaran": 871,
2061
+ "tripod": 872,
2062
+ "triumphal arch": 873,
2063
+ "trolleybus, trolley coach, trackless trolley": 874,
2064
+ "trombone": 875,
2065
+ "tub, vat": 876,
2066
+ "turnstile": 877,
2067
+ "tusker": 101,
2068
+ "typewriter keyboard": 878,
2069
+ "umbrella": 879,
2070
+ "unicycle, monocycle": 880,
2071
+ "upright, upright piano": 881,
2072
+ "vacuum, vacuum cleaner": 882,
2073
+ "valley, vale": 979,
2074
+ "vase": 883,
2075
+ "vault": 884,
2076
+ "velvet": 885,
2077
+ "vending machine": 886,
2078
+ "vestment": 887,
2079
+ "viaduct": 888,
2080
+ "vine snake": 59,
2081
+ "violin, fiddle": 889,
2082
+ "vizsla, Hungarian pointer": 211,
2083
+ "volcano": 980,
2084
+ "volleyball": 890,
2085
+ "vulture": 23,
2086
+ "waffle iron": 891,
2087
+ "walking stick, walkingstick, stick insect": 313,
2088
+ "wall clock": 892,
2089
+ "wallaby, brush kangaroo": 104,
2090
+ "wallet, billfold, notecase, pocketbook": 893,
2091
+ "wardrobe, closet, press": 894,
2092
+ "warplane, military plane": 895,
2093
+ "warthog": 343,
2094
+ "washbasin, handbasin, washbowl, lavabo, wash-hand basin": 896,
2095
+ "washer, automatic washer, washing machine": 897,
2096
+ "water bottle": 898,
2097
+ "water buffalo, water ox, Asiatic buffalo, Bubalus bubalis": 346,
2098
+ "water jug": 899,
2099
+ "water ouzel, dipper": 20,
2100
+ "water snake": 58,
2101
+ "water tower": 900,
2102
+ "weasel": 356,
2103
+ "web site, website, internet site, site": 916,
2104
+ "weevil": 307,
2105
+ "whippet": 172,
2106
+ "whiptail, whiptail lizard": 41,
2107
+ "whiskey jug": 901,
2108
+ "whistle": 902,
2109
+ "white stork, Ciconia ciconia": 127,
2110
+ "white wolf, Arctic wolf, Canis lupus tundrarum": 270,
2111
+ "wig": 903,
2112
+ "wild boar, boar, Sus scrofa": 342,
2113
+ "window screen": 904,
2114
+ "window shade": 905,
2115
+ "wine bottle": 907,
2116
+ "wing": 908,
2117
+ "wire-haired fox terrier": 188,
2118
+ "wok": 909,
2119
+ "wolf spider, hunting spider": 77,
2120
+ "wombat": 106,
2121
+ "wood rabbit, cottontail, cottontail rabbit": 330,
2122
+ "wooden spoon": 910,
2123
+ "wool, woolen, woollen": 911,
2124
+ "worm fence, snake fence, snake-rail fence, Virginia fence": 912,
2125
+ "wreck": 913,
2126
+ "yawl": 914,
2127
+ "yellow lady's slipper, yellow lady-slipper, Cypripedium calceolus, Cypripedium parviflorum": 986,
2128
+ "yurt": 915,
2129
+ "zebra": 340,
2130
+ "zucchini, courgette": 939
2131
+ },
2132
+ "layer_norm_eps": 1e-12,
2133
+ "length_penalty": 1.0,
2134
+ "max_length": 20,
2135
+ "min_length": 0,
2136
+ "model_type": "vit",
2137
+ "no_repeat_ngram_size": 0,
2138
+ "num_attention_heads": 12,
2139
+ "num_beam_groups": 1,
2140
+ "num_beams": 1,
2141
+ "num_channels": 3,
2142
+ "num_hidden_layers": 12,
2143
+ "num_return_sequences": 1,
2144
+ "output_attentions": false,
2145
+ "output_hidden_states": false,
2146
+ "output_scores": false,
2147
+ "pad_token_id": null,
2148
+ "patch_size": 16,
2149
+ "prefix": null,
2150
+ "problem_type": null,
2151
+ "pruned_heads": {},
2152
+ "qkv_bias": true,
2153
+ "remove_invalid_values": false,
2154
+ "repetition_penalty": 1.0,
2155
+ "return_dict": true,
2156
+ "return_dict_in_generate": false,
2157
+ "sep_token_id": null,
2158
+ "suppress_tokens": null,
2159
+ "task_specific_params": null,
2160
+ "temperature": 1.0,
2161
+ "tf_legacy_loss": false,
2162
+ "tie_encoder_decoder": false,
2163
+ "tie_word_embeddings": true,
2164
+ "tokenizer_class": null,
2165
+ "top_k": 50,
2166
+ "top_p": 1.0,
2167
+ "torch_dtype": null,
2168
+ "torchscript": false,
2169
+ "typical_p": 1.0,
2170
+ "use_bfloat16": false
2171
+ },
2172
+ "eos_token_id": 50256,
2173
+ "is_encoder_decoder": true,
2174
+ "model_type": "vision-encoder-decoder",
2175
+ "pad_token_id": 50256,
2176
+ "tie_word_embeddings": false,
2177
+ "transformers_version": "4.33.2"
2178
+ }
generation_config.json CHANGED
@@ -1,12 +1,17 @@
1
- {
2
- "bos_token_id": 50256,
3
- "early_stopping": true,
4
- "eos_token_id": 50256,
5
- "max_length": 50,
6
- "no_repeat_ngram_size": 2,
7
- "num_beams": 2,
8
- "pad_token_id": 50256,
9
- "repetition_penalty": 1.2,
10
- "seed": 12,
11
- "transformers_version": "4.33.2"
12
- }
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 50256,
3
+ "early_stopping": true,
4
+ "eos_token_id": 50256,
5
+ "max_length": 50,
6
+ "no_repeat_ngram_size": 3,
7
+ "num_beams": 5,
8
+ "pad_token_id": 50256,
9
+ "repetition_penalty": 1.3,
10
+ "seed": 12,
11
+ "max_time": 5,
12
+ "transformers_version": "4.33.2",
13
+ "do_sample": true,
14
+ "temperature": 0.7,
15
+ "top_p": 0.9,
16
+ "top_k": 50
17
+ }
onnx/decoder_model.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e3704718aee4c999920574a3fb45b959ee59a9eb687bc5ff39c1ec6c3b3d32fc
3
  size 385864797
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81a590cff0ba4a30a22c13fac7f235570e1f6ac288002578dbd3faaf9e861efc
3
  size 385864797
onnx/decoder_model_merged.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:dfc0cac17407a66735b4b4dd5ce62900967a015a618f24c6036b628e1c600328
3
  size 387342586
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81f4385c545e65511c5c43152c27c9a608253b983380a37a5f0618482e444be0
3
  size 387342586
onnx/decoder_model_merged_quantized.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:083cc1aa2c10ee51436601f996091d4633ff2ad6ab933f1197e23c14893fc89e
3
  size 99759579
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fdf1f55d881172ca21c3d6f5c9d73c8a07f3b25c5c2d22069e8bacc8d4c0c657
3
  size 99759579
onnx/decoder_model_quantized.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:230dd40ee4ba5bd9ec09ad783b45d98ca8acd7b37ff1f73ddbfa6a63c63163ba
3
  size 98065763
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fbd69d9b31fbe6930fec32c055c9c52901ebbdbaab9820a3eef2829eb1e44893
3
  size 98065763
onnx/decoder_with_past_model.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:aae44e11c82e59d84ac7c9f654942dfbcbb2c0d2a03bc8ec49876e81dc3393a1
3
  size 385864377
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d96b3db352e24ce600f47d64d4f5921e26b71985ba3e5fe2e25fba67dab9dcb0
3
  size 385864377
onnx/decoder_with_past_model_quantized.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b1823eff0a8dc274eabb3df67551bc7330d4e22a22c23676ff978eb33c643896
3
  size 98063170
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9cf51fb525a1c7f153f410931f62fd68bb80ecf7c9356e9695f5029a7f7f3cd6
3
  size 98063170
onnx/encoder_model.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ca2910ada0c94d6f7d72c80e7e4f40916c0bfbd1cff763ad86d96e02fd527e90
3
  size 343440632
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e53e9e40bbf0cba4dbac3bd61a107ae008f449dbf4b6b9ff17aca132628625e5
3
  size 343440632
onnx/encoder_model_quantized.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b9930375f2182d3cb829d78750939633587891b18edb0a66eeb569317ccc0776
3
  size 87038173
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35f9c3ad41cd2e0fc81c86120a510d98e5cbc3ed2e9d3c288d2d3e749d09492f
3
  size 87038173
preprocessor_config.json CHANGED
@@ -1,18 +1,4 @@
1
  {
2
- "_valid_processor_keys": [
3
- "images",
4
- "do_resize",
5
- "size",
6
- "resample",
7
- "do_rescale",
8
- "rescale_factor",
9
- "do_normalize",
10
- "image_mean",
11
- "image_std",
12
- "return_tensors",
13
- "data_format",
14
- "input_data_format"
15
- ],
16
  "do_normalize": true,
17
  "do_rescale": true,
18
  "do_resize": true,
@@ -21,7 +7,8 @@
21
  0.5,
22
  0.5
23
  ],
24
- "image_processor_type": "ViTFeatureExtractor",
 
25
  "image_std": [
26
  0.5,
27
  0.5,
 
1
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  "do_normalize": true,
3
  "do_rescale": true,
4
  "do_resize": true,
 
7
  0.5,
8
  0.5
9
  ],
10
+ "image_processor_type": "ViTImageProcessor",
11
+ "feature_extractor_type": "ViTImageProcessor",
12
  "image_std": [
13
  0.5,
14
  0.5,
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:351915a4cb66a370ebca4663cd97f1e7a41a8423d08dc46e8756256c2015a600
3
+ size 730052378
quantize_config.json CHANGED
@@ -1,125 +1,125 @@
1
- {
2
- "per_channel": false,
3
- "reduce_range": false,
4
- "per_model_config": {
5
- "encoder_model": {
6
- "op_types": [
7
- "MatMul",
8
- "Add",
9
- "Equal",
10
- "ConstantOfShape",
11
- "Pow",
12
- "Erf",
13
- "Sub",
14
- "Mul",
15
- "Reshape",
16
- "Div",
17
- "Where",
18
- "Unsqueeze",
19
- "Expand",
20
- "Gather",
21
- "Softmax",
22
- "Transpose",
23
- "Constant",
24
- "Shape",
25
- "ReduceMean",
26
- "Concat",
27
- "Sqrt",
28
- "Slice",
29
- "Conv"
30
- ],
31
- "weight_type": "QUInt8"
32
- },
33
- "decoder_model": {
34
- "op_types": [
35
- "MatMul",
36
- "Add",
37
- "ConstantOfShape",
38
- "Pow",
39
- "Sub",
40
- "Mul",
41
- "Reshape",
42
- "Div",
43
- "Where",
44
- "Tanh",
45
- "Unsqueeze",
46
- "Gather",
47
- "Softmax",
48
- "Split",
49
- "Slice",
50
- "Squeeze",
51
- "Range",
52
- "Transpose",
53
- "Cast",
54
- "Constant",
55
- "Shape",
56
- "ReduceMean",
57
- "Concat",
58
- "Sqrt",
59
- "Gemm"
60
- ],
61
- "weight_type": "QInt8"
62
- },
63
- "decoder_with_past_model": {
64
- "op_types": [
65
- "MatMul",
66
- "Add",
67
- "ConstantOfShape",
68
- "Pow",
69
- "Sub",
70
- "Mul",
71
- "Reshape",
72
- "Div",
73
- "Where",
74
- "Tanh",
75
- "Unsqueeze",
76
- "Gather",
77
- "Softmax",
78
- "Split",
79
- "Slice",
80
- "Squeeze",
81
- "Range",
82
- "Transpose",
83
- "Cast",
84
- "Constant",
85
- "Shape",
86
- "ReduceMean",
87
- "Concat",
88
- "Sqrt",
89
- "Gemm"
90
- ],
91
- "weight_type": "QInt8"
92
- },
93
- "decoder_model_merged": {
94
- "op_types": [
95
- "MatMul",
96
- "Add",
97
- "ConstantOfShape",
98
- "Pow",
99
- "Sub",
100
- "Mul",
101
- "Gemm",
102
- "Reshape",
103
- "Div",
104
- "Where",
105
- "Tanh",
106
- "Unsqueeze",
107
- "Gather",
108
- "Softmax",
109
- "Split",
110
- "Squeeze",
111
- "Range",
112
- "Transpose",
113
- "Cast",
114
- "Constant",
115
- "If",
116
- "Shape",
117
- "ReduceMean",
118
- "Concat",
119
- "Sqrt",
120
- "Slice"
121
- ],
122
- "weight_type": "QInt8"
123
- }
124
- }
125
  }
 
1
+ {
2
+ "per_channel": false,
3
+ "reduce_range": false,
4
+ "per_model_config": {
5
+ "decoder_model": {
6
+ "op_types": [
7
+ "Cast",
8
+ "ConstantOfShape",
9
+ "Where",
10
+ "Mul",
11
+ "Split",
12
+ "ReduceMean",
13
+ "Range",
14
+ "Slice",
15
+ "Sqrt",
16
+ "Add",
17
+ "Concat",
18
+ "Softmax",
19
+ "Tanh",
20
+ "Constant",
21
+ "MatMul",
22
+ "Pow",
23
+ "Unsqueeze",
24
+ "Transpose",
25
+ "Gather",
26
+ "Gemm",
27
+ "Squeeze",
28
+ "Reshape",
29
+ "Sub",
30
+ "Shape",
31
+ "Div"
32
+ ],
33
+ "weight_type": "QInt8"
34
+ },
35
+ "decoder_model_merged": {
36
+ "op_types": [
37
+ "Cast",
38
+ "If",
39
+ "ConstantOfShape",
40
+ "Where",
41
+ "Mul",
42
+ "Split",
43
+ "ReduceMean",
44
+ "Range",
45
+ "Slice",
46
+ "Sqrt",
47
+ "Add",
48
+ "Concat",
49
+ "Softmax",
50
+ "Tanh",
51
+ "Constant",
52
+ "MatMul",
53
+ "Pow",
54
+ "Unsqueeze",
55
+ "Transpose",
56
+ "Gather",
57
+ "Gemm",
58
+ "Squeeze",
59
+ "Reshape",
60
+ "Sub",
61
+ "Shape",
62
+ "Div"
63
+ ],
64
+ "weight_type": "QInt8"
65
+ },
66
+ "decoder_with_past_model": {
67
+ "op_types": [
68
+ "Cast",
69
+ "ConstantOfShape",
70
+ "Where",
71
+ "Mul",
72
+ "Split",
73
+ "ReduceMean",
74
+ "Range",
75
+ "Slice",
76
+ "Sqrt",
77
+ "Add",
78
+ "Concat",
79
+ "Softmax",
80
+ "Tanh",
81
+ "Constant",
82
+ "MatMul",
83
+ "Pow",
84
+ "Unsqueeze",
85
+ "Transpose",
86
+ "Gather",
87
+ "Gemm",
88
+ "Squeeze",
89
+ "Reshape",
90
+ "Sub",
91
+ "Shape",
92
+ "Div"
93
+ ],
94
+ "weight_type": "QInt8"
95
+ },
96
+ "encoder_model": {
97
+ "op_types": [
98
+ "ConstantOfShape",
99
+ "Where",
100
+ "Mul",
101
+ "ReduceMean",
102
+ "Slice",
103
+ "Sqrt",
104
+ "Conv",
105
+ "Add",
106
+ "Erf",
107
+ "Concat",
108
+ "Softmax",
109
+ "Constant",
110
+ "MatMul",
111
+ "Pow",
112
+ "Unsqueeze",
113
+ "Transpose",
114
+ "Gather",
115
+ "Reshape",
116
+ "Sub",
117
+ "Expand",
118
+ "Shape",
119
+ "Div",
120
+ "Equal"
121
+ ],
122
+ "weight_type": "QUInt8"
123
+ }
124
+ }
125
  }
special_tokens_map.json CHANGED
@@ -1,6 +1,6 @@
1
- {
2
- "bos_token": "<|endoftext|>",
3
- "eos_token": "<|endoftext|>",
4
- "pad_token": "<|endoftext|>",
5
- "unk_token": "<|endoftext|>"
6
- }
 
1
+ {
2
+ "bos_token": "<|endoftext|>",
3
+ "eos_token": "<|endoftext|>",
4
+ "pad_token": "<|endoftext|>",
5
+ "unk_token": "<|endoftext|>"
6
+ }
tokenizer_config.json CHANGED
@@ -1,20 +1,9 @@
1
- {
2
- "add_prefix_space": false,
3
- "added_tokens_decoder": {
4
- "50256": {
5
- "content": "<|endoftext|>",
6
- "lstrip": false,
7
- "normalized": true,
8
- "rstrip": false,
9
- "single_word": false,
10
- "special": true
11
- }
12
- },
13
- "bos_token": "<|endoftext|>",
14
- "clean_up_tokenization_spaces": true,
15
- "eos_token": "<|endoftext|>",
16
- "model_max_length": 1024,
17
- "pad_token": "<|endoftext|>",
18
- "tokenizer_class": "GPT2Tokenizer",
19
- "unk_token": "<|endoftext|>"
20
- }
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "bos_token": "<|endoftext|>",
4
+ "clean_up_tokenization_spaces": true,
5
+ "eos_token": "<|endoftext|>",
6
+ "model_max_length": 1024,
7
+ "tokenizer_class": "GPT2Tokenizer",
8
+ "unk_token": "<|endoftext|>"
9
+ }
 
 
 
 
 
 
 
 
 
 
 
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ac92771c5176fd55689bb44c37e3467ce9f70d1a9d642ce3f6e6e4e449de33cd
3
- size 5176
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09a823d2fd7f149af0845192d78c641b5803fa658ded0a1cee47bbaccf457d4a
3
+ size 4664