First commit
Browse files- config.json +159 -0
- merges.txt +0 -0
- preprocessor_config.json +17 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- tokenizer_config.json +1 -0
- vocab.json +0 -0
config.json
ADDED
@@ -0,0 +1,159 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"VisionEncoderDecoderModel"
|
4 |
+
],
|
5 |
+
"decoder": {
|
6 |
+
"_name_or_path": "",
|
7 |
+
"activation_dropout": 0.0,
|
8 |
+
"activation_function": "relu",
|
9 |
+
"add_cross_attention": true,
|
10 |
+
"architectures": null,
|
11 |
+
"attention_dropout": 0.0,
|
12 |
+
"bad_words_ids": null,
|
13 |
+
"bos_token_id": 0,
|
14 |
+
"chunk_size_feed_forward": 0,
|
15 |
+
"classifier_dropout": 0.0,
|
16 |
+
"cross_attention_hidden_size": null,
|
17 |
+
"d_model": 1024,
|
18 |
+
"decoder_attention_heads": 16,
|
19 |
+
"decoder_ffn_dim": 4096,
|
20 |
+
"decoder_layerdrop": 0.0,
|
21 |
+
"decoder_layers": 12,
|
22 |
+
"decoder_start_token_id": 2,
|
23 |
+
"diversity_penalty": 0.0,
|
24 |
+
"do_sample": false,
|
25 |
+
"dropout": 0.1,
|
26 |
+
"early_stopping": false,
|
27 |
+
"encoder_hidden_size": 1024,
|
28 |
+
"encoder_no_repeat_ngram_size": 0,
|
29 |
+
"eos_token_id": 2,
|
30 |
+
"finetuning_task": null,
|
31 |
+
"forced_bos_token_id": null,
|
32 |
+
"forced_eos_token_id": null,
|
33 |
+
"id2label": {
|
34 |
+
"0": "LABEL_0",
|
35 |
+
"1": "LABEL_1"
|
36 |
+
},
|
37 |
+
"init_std": 0.02,
|
38 |
+
"is_decoder": true,
|
39 |
+
"is_encoder_decoder": false,
|
40 |
+
"label2id": {
|
41 |
+
"LABEL_0": 0,
|
42 |
+
"LABEL_1": 1
|
43 |
+
},
|
44 |
+
"layernorm_embedding": false,
|
45 |
+
"length_penalty": 1.0,
|
46 |
+
"max_length": 20,
|
47 |
+
"max_position_embeddings": 1024,
|
48 |
+
"min_length": 0,
|
49 |
+
"model_type": "trocr",
|
50 |
+
"no_repeat_ngram_size": 0,
|
51 |
+
"num_beam_groups": 1,
|
52 |
+
"num_beams": 1,
|
53 |
+
"num_return_sequences": 1,
|
54 |
+
"output_attentions": false,
|
55 |
+
"output_hidden_states": false,
|
56 |
+
"output_scores": false,
|
57 |
+
"pad_token_id": 1,
|
58 |
+
"prefix": null,
|
59 |
+
"problem_type": null,
|
60 |
+
"pruned_heads": {},
|
61 |
+
"remove_invalid_values": false,
|
62 |
+
"repetition_penalty": 1.0,
|
63 |
+
"return_dict": true,
|
64 |
+
"return_dict_in_generate": false,
|
65 |
+
"scale_embedding": true,
|
66 |
+
"sep_token_id": null,
|
67 |
+
"task_specific_params": null,
|
68 |
+
"temperature": 1.0,
|
69 |
+
"tie_encoder_decoder": false,
|
70 |
+
"tie_word_embeddings": false,
|
71 |
+
"tokenizer_class": null,
|
72 |
+
"top_k": 50,
|
73 |
+
"top_p": 1.0,
|
74 |
+
"torch_dtype": null,
|
75 |
+
"torchscript": false,
|
76 |
+
"transformers_version": "4.12.0.dev0",
|
77 |
+
"use_bfloat16": false,
|
78 |
+
"use_cache": false,
|
79 |
+
"use_learned_position_embeddings": false,
|
80 |
+
"vocab_size": 50265
|
81 |
+
},
|
82 |
+
"encoder": {
|
83 |
+
"_name_or_path": "",
|
84 |
+
"add_cross_attention": false,
|
85 |
+
"architectures": null,
|
86 |
+
"attention_probs_dropout_prob": 0.0,
|
87 |
+
"bad_words_ids": null,
|
88 |
+
"bos_token_id": null,
|
89 |
+
"chunk_size_feed_forward": 0,
|
90 |
+
"cross_attention_hidden_size": null,
|
91 |
+
"decoder_start_token_id": null,
|
92 |
+
"diversity_penalty": 0.0,
|
93 |
+
"do_sample": false,
|
94 |
+
"early_stopping": false,
|
95 |
+
"encoder_no_repeat_ngram_size": 0,
|
96 |
+
"eos_token_id": null,
|
97 |
+
"finetuning_task": null,
|
98 |
+
"forced_bos_token_id": null,
|
99 |
+
"forced_eos_token_id": null,
|
100 |
+
"hidden_act": "gelu",
|
101 |
+
"hidden_dropout_prob": 0.0,
|
102 |
+
"hidden_size": 1024,
|
103 |
+
"id2label": {
|
104 |
+
"0": "LABEL_0",
|
105 |
+
"1": "LABEL_1"
|
106 |
+
},
|
107 |
+
"image_size": 384,
|
108 |
+
"initializer_range": 0.02,
|
109 |
+
"intermediate_size": 4096,
|
110 |
+
"is_decoder": false,
|
111 |
+
"is_encoder_decoder": false,
|
112 |
+
"label2id": {
|
113 |
+
"LABEL_0": 0,
|
114 |
+
"LABEL_1": 1
|
115 |
+
},
|
116 |
+
"layer_norm_eps": 1e-12,
|
117 |
+
"length_penalty": 1.0,
|
118 |
+
"max_length": 20,
|
119 |
+
"min_length": 0,
|
120 |
+
"model_type": "vit",
|
121 |
+
"no_repeat_ngram_size": 0,
|
122 |
+
"num_attention_heads": 16,
|
123 |
+
"num_beam_groups": 1,
|
124 |
+
"num_beams": 1,
|
125 |
+
"num_channels": 3,
|
126 |
+
"num_hidden_layers": 24,
|
127 |
+
"num_return_sequences": 1,
|
128 |
+
"output_attentions": false,
|
129 |
+
"output_hidden_states": false,
|
130 |
+
"output_scores": false,
|
131 |
+
"pad_token_id": null,
|
132 |
+
"patch_size": 16,
|
133 |
+
"prefix": null,
|
134 |
+
"problem_type": null,
|
135 |
+
"pruned_heads": {},
|
136 |
+
"qkv_bias": false,
|
137 |
+
"remove_invalid_values": false,
|
138 |
+
"repetition_penalty": 1.0,
|
139 |
+
"return_dict": true,
|
140 |
+
"return_dict_in_generate": false,
|
141 |
+
"sep_token_id": null,
|
142 |
+
"task_specific_params": null,
|
143 |
+
"temperature": 1.0,
|
144 |
+
"tie_encoder_decoder": false,
|
145 |
+
"tie_word_embeddings": true,
|
146 |
+
"tokenizer_class": null,
|
147 |
+
"top_k": 50,
|
148 |
+
"top_p": 1.0,
|
149 |
+
"torch_dtype": null,
|
150 |
+
"torchscript": false,
|
151 |
+
"transformers_version": "4.12.0.dev0",
|
152 |
+
"use_bfloat16": false
|
153 |
+
},
|
154 |
+
"is_encoder_decoder": true,
|
155 |
+
"model_type": "vision-encoder-decoder",
|
156 |
+
"tie_word_embeddings": false,
|
157 |
+
"torch_dtype": "float32",
|
158 |
+
"transformers_version": null
|
159 |
+
}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
preprocessor_config.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_resize": true,
|
4 |
+
"feature_extractor_type": "ViTFeatureExtractor",
|
5 |
+
"image_mean": [
|
6 |
+
0.5,
|
7 |
+
0.5,
|
8 |
+
0.5
|
9 |
+
],
|
10 |
+
"image_std": [
|
11 |
+
0.5,
|
12 |
+
0.5,
|
13 |
+
0.5
|
14 |
+
],
|
15 |
+
"resample": 2,
|
16 |
+
"size": 384
|
17 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d8138061c487ffd92c232458ebe10934334d3a8dff064772288eefd576e96c37
|
3 |
+
size 2432726799
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"bos_token": {"content": "<s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, "eos_token": {"content": "</s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, "unk_token": {"content": "<unk>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, "sep_token": {"content": "</s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, "pad_token": {"content": "<pad>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, "cls_token": {"content": "<s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, "mask_token": {"content": "<mask>", "single_word": false, "lstrip": true, "rstrip": false, "normalized": true}}
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"errors": "replace", "unk_token": {"content": "<unk>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "bos_token": {"content": "<s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "eos_token": {"content": "</s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "add_prefix_space": false, "sep_token": {"content": "</s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "cls_token": {"content": "<s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "pad_token": {"content": "<pad>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "mask_token": {"content": "<mask>", "single_word": false, "lstrip": true, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "model_max_length": 512, "special_tokens_map_file": null, "tokenizer_file": "/root/.cache/huggingface/transformers/e16a2590deb9e6d73711d6e05bf27d832fa8c1162d807222e043ca650a556964.fc9576039592f026ad76a1c231b89aee8668488c671dfbe6616bab2ed298d730", "name_or_path": "roberta-large", "tokenizer_class": "RobertaTokenizer"}
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|