wanderer2k1
commited on
Commit
•
9f3fac5
1
Parent(s):
d3fb0c5
End of training
Browse files- README.md +8 -4
- config.json +6 -36
- model.safetensors +2 -2
- runs/Aug21_03-44-44_kao-dgxa-e10-u17/events.out.tfevents.1724211890.kao-dgxa-e10-u17.1077.1 +3 -0
- runs/Aug21_03-46-59_kao-dgxa-e10-u17/events.out.tfevents.1724212022.kao-dgxa-e10-u17.1077.2 +3 -0
- runs/Aug21_03-47-49_kao-dgxa-e10-u17/events.out.tfevents.1724212074.kao-dgxa-e10-u17.1077.3 +3 -0
- runs/Aug21_06-45-17_kao-dgxa-e10-u17/events.out.tfevents.1724222718.kao-dgxa-e10-u17.6044.0 +3 -0
- runs/Aug22_01-41-01_kao-dgxa-e10-u17/events.out.tfevents.1724290862.kao-dgxa-e10-u17.11947.0 +3 -0
- runs/Aug22_07-33-54_kao-dgxa-e10-u17/events.out.tfevents.1724312045.kao-dgxa-e10-u17.17888.0 +3 -0
- runs/Aug22_07-40-30_kao-dgxa-e10-u17/events.out.tfevents.1724312441.kao-dgxa-e10-u17.20522.0 +3 -0
- special_tokens_map.json +4 -26
- spiece.model +2 -2
- tokenizer.json +0 -0
- tokenizer_config.json +99 -135
- training_args.bin +2 -2
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
-
license:
|
3 |
-
base_model:
|
4 |
tags:
|
5 |
- generated_from_trainer
|
6 |
model-index:
|
@@ -13,7 +13,7 @@ should probably proofread and complete it, then remove this comment. -->
|
|
13 |
|
14 |
# t5-flan-base-query-rewriter
|
15 |
|
16 |
-
This model is a fine-tuned version of [
|
17 |
|
18 |
## Model description
|
19 |
|
@@ -36,9 +36,13 @@ The following hyperparameters were used during training:
|
|
36 |
- train_batch_size: 32
|
37 |
- eval_batch_size: 32
|
38 |
- seed: 42
|
|
|
|
|
39 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
40 |
- lr_scheduler_type: linear
|
41 |
-
-
|
|
|
|
|
42 |
|
43 |
### Framework versions
|
44 |
|
|
|
1 |
---
|
2 |
+
license: mit
|
3 |
+
base_model: VietAI/vit5-base
|
4 |
tags:
|
5 |
- generated_from_trainer
|
6 |
model-index:
|
|
|
13 |
|
14 |
# t5-flan-base-query-rewriter
|
15 |
|
16 |
+
This model is a fine-tuned version of [VietAI/vit5-base](https://huggingface.co/VietAI/vit5-base) on the None dataset.
|
17 |
|
18 |
## Model description
|
19 |
|
|
|
36 |
- train_batch_size: 32
|
37 |
- eval_batch_size: 32
|
38 |
- seed: 42
|
39 |
+
- gradient_accumulation_steps: 4
|
40 |
+
- total_train_batch_size: 128
|
41 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
42 |
- lr_scheduler_type: linear
|
43 |
+
- lr_scheduler_warmup_steps: 100
|
44 |
+
- num_epochs: 5
|
45 |
+
- mixed_precision_training: Native AMP
|
46 |
|
47 |
### Framework versions
|
48 |
|
config.json
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
3 |
"architectures": [
|
4 |
"T5ForConditionalGeneration"
|
5 |
],
|
6 |
"classifier_dropout": 0.0,
|
7 |
-
"d_ff":
|
8 |
"d_kv": 64,
|
9 |
"d_model": 768,
|
10 |
"decoder_start_token_id": 0,
|
11 |
-
"dense_act_fn": "
|
12 |
"dropout_rate": 0.1,
|
13 |
"eos_token_id": 1,
|
14 |
-
"feed_forward_proj": "
|
15 |
"initializer_factor": 1.0,
|
16 |
"is_encoder_decoder": true,
|
17 |
-
"is_gated_act":
|
18 |
"layer_norm_epsilon": 1e-06,
|
19 |
"model_type": "t5",
|
20 |
"n_positions": 512,
|
@@ -25,38 +25,8 @@
|
|
25 |
"pad_token_id": 0,
|
26 |
"relative_attention_max_distance": 128,
|
27 |
"relative_attention_num_buckets": 32,
|
28 |
-
"task_specific_params": {
|
29 |
-
"summarization": {
|
30 |
-
"early_stopping": true,
|
31 |
-
"length_penalty": 2.0,
|
32 |
-
"max_length": 200,
|
33 |
-
"min_length": 30,
|
34 |
-
"no_repeat_ngram_size": 3,
|
35 |
-
"num_beams": 4,
|
36 |
-
"prefix": "summarize: "
|
37 |
-
},
|
38 |
-
"translation_en_to_de": {
|
39 |
-
"early_stopping": true,
|
40 |
-
"max_length": 300,
|
41 |
-
"num_beams": 4,
|
42 |
-
"prefix": "translate English to German: "
|
43 |
-
},
|
44 |
-
"translation_en_to_fr": {
|
45 |
-
"early_stopping": true,
|
46 |
-
"max_length": 300,
|
47 |
-
"num_beams": 4,
|
48 |
-
"prefix": "translate English to French: "
|
49 |
-
},
|
50 |
-
"translation_en_to_ro": {
|
51 |
-
"early_stopping": true,
|
52 |
-
"max_length": 300,
|
53 |
-
"num_beams": 4,
|
54 |
-
"prefix": "translate English to Romanian: "
|
55 |
-
}
|
56 |
-
},
|
57 |
-
"tie_word_embeddings": false,
|
58 |
"torch_dtype": "float32",
|
59 |
"transformers_version": "4.40.0",
|
60 |
"use_cache": true,
|
61 |
-
"vocab_size":
|
62 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "VietAI/vit5-base",
|
3 |
"architectures": [
|
4 |
"T5ForConditionalGeneration"
|
5 |
],
|
6 |
"classifier_dropout": 0.0,
|
7 |
+
"d_ff": 3072,
|
8 |
"d_kv": 64,
|
9 |
"d_model": 768,
|
10 |
"decoder_start_token_id": 0,
|
11 |
+
"dense_act_fn": "relu",
|
12 |
"dropout_rate": 0.1,
|
13 |
"eos_token_id": 1,
|
14 |
+
"feed_forward_proj": "relu",
|
15 |
"initializer_factor": 1.0,
|
16 |
"is_encoder_decoder": true,
|
17 |
+
"is_gated_act": false,
|
18 |
"layer_norm_epsilon": 1e-06,
|
19 |
"model_type": "t5",
|
20 |
"n_positions": 512,
|
|
|
25 |
"pad_token_id": 0,
|
26 |
"relative_attention_max_distance": 128,
|
27 |
"relative_attention_num_buckets": 32,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
"torch_dtype": "float32",
|
29 |
"transformers_version": "4.40.0",
|
30 |
"use_cache": true,
|
31 |
+
"vocab_size": 36096
|
32 |
}
|
model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e3212a9aca66f987cc087d8ba79b0d376bafbc2b1c797c8bd8dcffd1130253ac
|
3 |
+
size 903834408
|
runs/Aug21_03-44-44_kao-dgxa-e10-u17/events.out.tfevents.1724211890.kao-dgxa-e10-u17.1077.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a8c0cfbb76717496745be91efda6a178286ab5d68810cac96cde1167ee1b6d3d
|
3 |
+
size 5847
|
runs/Aug21_03-46-59_kao-dgxa-e10-u17/events.out.tfevents.1724212022.kao-dgxa-e10-u17.1077.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0d667392132cb1e889039794ffd5d61fcdb1751dd25a3b0307a6d9898a282a63
|
3 |
+
size 5848
|
runs/Aug21_03-47-49_kao-dgxa-e10-u17/events.out.tfevents.1724212074.kao-dgxa-e10-u17.1077.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d084e9e0966b8b142341839672eabc4b08290172afffbab239a5d2c68ac71481
|
3 |
+
size 6229
|
runs/Aug21_06-45-17_kao-dgxa-e10-u17/events.out.tfevents.1724222718.kao-dgxa-e10-u17.6044.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e11e409cdcbc29c34557f1bf9d5f8e326fb145e249872ec376233ebeed966028
|
3 |
+
size 6086
|
runs/Aug22_01-41-01_kao-dgxa-e10-u17/events.out.tfevents.1724290862.kao-dgxa-e10-u17.11947.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8abe57335a8d911dfa3b4f305ffe7284f1397920850816d120d463b133f0e5c7
|
3 |
+
size 6085
|
runs/Aug22_07-33-54_kao-dgxa-e10-u17/events.out.tfevents.1724312045.kao-dgxa-e10-u17.17888.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:379953e390410cac3bdfe4a944893dcd6581a08949fe7a36b78a3844a78a75b6
|
3 |
+
size 6782
|
runs/Aug22_07-40-30_kao-dgxa-e10-u17/events.out.tfevents.1724312441.kao-dgxa-e10-u17.20522.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8afe5dcd020d27ae983fd259edf80901892a41659104c5889dd78ee1fa51c53e
|
3 |
+
size 9314
|
special_tokens_map.json
CHANGED
@@ -95,31 +95,9 @@
|
|
95 |
"<extra_id_92>",
|
96 |
"<extra_id_93>",
|
97 |
"<extra_id_94>",
|
98 |
-
"<extra_id_95>"
|
99 |
-
"<extra_id_96>",
|
100 |
-
"<extra_id_97>",
|
101 |
-
"<extra_id_98>",
|
102 |
-
"<extra_id_99>"
|
103 |
],
|
104 |
-
"eos_token":
|
105 |
-
|
106 |
-
|
107 |
-
"normalized": false,
|
108 |
-
"rstrip": false,
|
109 |
-
"single_word": false
|
110 |
-
},
|
111 |
-
"pad_token": {
|
112 |
-
"content": "<pad>",
|
113 |
-
"lstrip": false,
|
114 |
-
"normalized": false,
|
115 |
-
"rstrip": false,
|
116 |
-
"single_word": false
|
117 |
-
},
|
118 |
-
"unk_token": {
|
119 |
-
"content": "<unk>",
|
120 |
-
"lstrip": false,
|
121 |
-
"normalized": false,
|
122 |
-
"rstrip": false,
|
123 |
-
"single_word": false
|
124 |
-
}
|
125 |
}
|
|
|
95 |
"<extra_id_92>",
|
96 |
"<extra_id_93>",
|
97 |
"<extra_id_94>",
|
98 |
+
"<extra_id_95>"
|
|
|
|
|
|
|
|
|
99 |
],
|
100 |
+
"eos_token": "</s>",
|
101 |
+
"pad_token": "<pad>",
|
102 |
+
"unk_token": "<unk>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
}
|
spiece.model
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:59986b62f9f0b90edafb9b073ea7b93d21114a5841219a1ea2399ade73f729c6
|
3 |
+
size 820370
|
tokenizer.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
CHANGED
@@ -24,39 +24,7 @@
|
|
24 |
"single_word": false,
|
25 |
"special": true
|
26 |
},
|
27 |
-
"
|
28 |
-
"content": "<extra_id_99>",
|
29 |
-
"lstrip": false,
|
30 |
-
"normalized": false,
|
31 |
-
"rstrip": false,
|
32 |
-
"single_word": false,
|
33 |
-
"special": true
|
34 |
-
},
|
35 |
-
"32001": {
|
36 |
-
"content": "<extra_id_98>",
|
37 |
-
"lstrip": false,
|
38 |
-
"normalized": false,
|
39 |
-
"rstrip": false,
|
40 |
-
"single_word": false,
|
41 |
-
"special": true
|
42 |
-
},
|
43 |
-
"32002": {
|
44 |
-
"content": "<extra_id_97>",
|
45 |
-
"lstrip": false,
|
46 |
-
"normalized": false,
|
47 |
-
"rstrip": false,
|
48 |
-
"single_word": false,
|
49 |
-
"special": true
|
50 |
-
},
|
51 |
-
"32003": {
|
52 |
-
"content": "<extra_id_96>",
|
53 |
-
"lstrip": false,
|
54 |
-
"normalized": false,
|
55 |
-
"rstrip": false,
|
56 |
-
"single_word": false,
|
57 |
-
"special": true
|
58 |
-
},
|
59 |
-
"32004": {
|
60 |
"content": "<extra_id_95>",
|
61 |
"lstrip": false,
|
62 |
"normalized": false,
|
@@ -64,7 +32,7 @@
|
|
64 |
"single_word": false,
|
65 |
"special": true
|
66 |
},
|
67 |
-
"
|
68 |
"content": "<extra_id_94>",
|
69 |
"lstrip": false,
|
70 |
"normalized": false,
|
@@ -72,7 +40,7 @@
|
|
72 |
"single_word": false,
|
73 |
"special": true
|
74 |
},
|
75 |
-
"
|
76 |
"content": "<extra_id_93>",
|
77 |
"lstrip": false,
|
78 |
"normalized": false,
|
@@ -80,7 +48,7 @@
|
|
80 |
"single_word": false,
|
81 |
"special": true
|
82 |
},
|
83 |
-
"
|
84 |
"content": "<extra_id_92>",
|
85 |
"lstrip": false,
|
86 |
"normalized": false,
|
@@ -88,7 +56,7 @@
|
|
88 |
"single_word": false,
|
89 |
"special": true
|
90 |
},
|
91 |
-
"
|
92 |
"content": "<extra_id_91>",
|
93 |
"lstrip": false,
|
94 |
"normalized": false,
|
@@ -96,7 +64,7 @@
|
|
96 |
"single_word": false,
|
97 |
"special": true
|
98 |
},
|
99 |
-
"
|
100 |
"content": "<extra_id_90>",
|
101 |
"lstrip": false,
|
102 |
"normalized": false,
|
@@ -104,7 +72,7 @@
|
|
104 |
"single_word": false,
|
105 |
"special": true
|
106 |
},
|
107 |
-
"
|
108 |
"content": "<extra_id_89>",
|
109 |
"lstrip": false,
|
110 |
"normalized": false,
|
@@ -112,7 +80,7 @@
|
|
112 |
"single_word": false,
|
113 |
"special": true
|
114 |
},
|
115 |
-
"
|
116 |
"content": "<extra_id_88>",
|
117 |
"lstrip": false,
|
118 |
"normalized": false,
|
@@ -120,7 +88,7 @@
|
|
120 |
"single_word": false,
|
121 |
"special": true
|
122 |
},
|
123 |
-
"
|
124 |
"content": "<extra_id_87>",
|
125 |
"lstrip": false,
|
126 |
"normalized": false,
|
@@ -128,7 +96,7 @@
|
|
128 |
"single_word": false,
|
129 |
"special": true
|
130 |
},
|
131 |
-
"
|
132 |
"content": "<extra_id_86>",
|
133 |
"lstrip": false,
|
134 |
"normalized": false,
|
@@ -136,7 +104,7 @@
|
|
136 |
"single_word": false,
|
137 |
"special": true
|
138 |
},
|
139 |
-
"
|
140 |
"content": "<extra_id_85>",
|
141 |
"lstrip": false,
|
142 |
"normalized": false,
|
@@ -144,7 +112,7 @@
|
|
144 |
"single_word": false,
|
145 |
"special": true
|
146 |
},
|
147 |
-
"
|
148 |
"content": "<extra_id_84>",
|
149 |
"lstrip": false,
|
150 |
"normalized": false,
|
@@ -152,7 +120,7 @@
|
|
152 |
"single_word": false,
|
153 |
"special": true
|
154 |
},
|
155 |
-
"
|
156 |
"content": "<extra_id_83>",
|
157 |
"lstrip": false,
|
158 |
"normalized": false,
|
@@ -160,7 +128,7 @@
|
|
160 |
"single_word": false,
|
161 |
"special": true
|
162 |
},
|
163 |
-
"
|
164 |
"content": "<extra_id_82>",
|
165 |
"lstrip": false,
|
166 |
"normalized": false,
|
@@ -168,7 +136,7 @@
|
|
168 |
"single_word": false,
|
169 |
"special": true
|
170 |
},
|
171 |
-
"
|
172 |
"content": "<extra_id_81>",
|
173 |
"lstrip": false,
|
174 |
"normalized": false,
|
@@ -176,7 +144,7 @@
|
|
176 |
"single_word": false,
|
177 |
"special": true
|
178 |
},
|
179 |
-
"
|
180 |
"content": "<extra_id_80>",
|
181 |
"lstrip": false,
|
182 |
"normalized": false,
|
@@ -184,7 +152,7 @@
|
|
184 |
"single_word": false,
|
185 |
"special": true
|
186 |
},
|
187 |
-
"
|
188 |
"content": "<extra_id_79>",
|
189 |
"lstrip": false,
|
190 |
"normalized": false,
|
@@ -192,7 +160,7 @@
|
|
192 |
"single_word": false,
|
193 |
"special": true
|
194 |
},
|
195 |
-
"
|
196 |
"content": "<extra_id_78>",
|
197 |
"lstrip": false,
|
198 |
"normalized": false,
|
@@ -200,7 +168,7 @@
|
|
200 |
"single_word": false,
|
201 |
"special": true
|
202 |
},
|
203 |
-
"
|
204 |
"content": "<extra_id_77>",
|
205 |
"lstrip": false,
|
206 |
"normalized": false,
|
@@ -208,7 +176,7 @@
|
|
208 |
"single_word": false,
|
209 |
"special": true
|
210 |
},
|
211 |
-
"
|
212 |
"content": "<extra_id_76>",
|
213 |
"lstrip": false,
|
214 |
"normalized": false,
|
@@ -216,7 +184,7 @@
|
|
216 |
"single_word": false,
|
217 |
"special": true
|
218 |
},
|
219 |
-
"
|
220 |
"content": "<extra_id_75>",
|
221 |
"lstrip": false,
|
222 |
"normalized": false,
|
@@ -224,7 +192,7 @@
|
|
224 |
"single_word": false,
|
225 |
"special": true
|
226 |
},
|
227 |
-
"
|
228 |
"content": "<extra_id_74>",
|
229 |
"lstrip": false,
|
230 |
"normalized": false,
|
@@ -232,7 +200,7 @@
|
|
232 |
"single_word": false,
|
233 |
"special": true
|
234 |
},
|
235 |
-
"
|
236 |
"content": "<extra_id_73>",
|
237 |
"lstrip": false,
|
238 |
"normalized": false,
|
@@ -240,7 +208,7 @@
|
|
240 |
"single_word": false,
|
241 |
"special": true
|
242 |
},
|
243 |
-
"
|
244 |
"content": "<extra_id_72>",
|
245 |
"lstrip": false,
|
246 |
"normalized": false,
|
@@ -248,7 +216,7 @@
|
|
248 |
"single_word": false,
|
249 |
"special": true
|
250 |
},
|
251 |
-
"
|
252 |
"content": "<extra_id_71>",
|
253 |
"lstrip": false,
|
254 |
"normalized": false,
|
@@ -256,7 +224,7 @@
|
|
256 |
"single_word": false,
|
257 |
"special": true
|
258 |
},
|
259 |
-
"
|
260 |
"content": "<extra_id_70>",
|
261 |
"lstrip": false,
|
262 |
"normalized": false,
|
@@ -264,7 +232,7 @@
|
|
264 |
"single_word": false,
|
265 |
"special": true
|
266 |
},
|
267 |
-
"
|
268 |
"content": "<extra_id_69>",
|
269 |
"lstrip": false,
|
270 |
"normalized": false,
|
@@ -272,7 +240,7 @@
|
|
272 |
"single_word": false,
|
273 |
"special": true
|
274 |
},
|
275 |
-
"
|
276 |
"content": "<extra_id_68>",
|
277 |
"lstrip": false,
|
278 |
"normalized": false,
|
@@ -280,7 +248,7 @@
|
|
280 |
"single_word": false,
|
281 |
"special": true
|
282 |
},
|
283 |
-
"
|
284 |
"content": "<extra_id_67>",
|
285 |
"lstrip": false,
|
286 |
"normalized": false,
|
@@ -288,7 +256,7 @@
|
|
288 |
"single_word": false,
|
289 |
"special": true
|
290 |
},
|
291 |
-
"
|
292 |
"content": "<extra_id_66>",
|
293 |
"lstrip": false,
|
294 |
"normalized": false,
|
@@ -296,7 +264,7 @@
|
|
296 |
"single_word": false,
|
297 |
"special": true
|
298 |
},
|
299 |
-
"
|
300 |
"content": "<extra_id_65>",
|
301 |
"lstrip": false,
|
302 |
"normalized": false,
|
@@ -304,7 +272,7 @@
|
|
304 |
"single_word": false,
|
305 |
"special": true
|
306 |
},
|
307 |
-
"
|
308 |
"content": "<extra_id_64>",
|
309 |
"lstrip": false,
|
310 |
"normalized": false,
|
@@ -312,7 +280,7 @@
|
|
312 |
"single_word": false,
|
313 |
"special": true
|
314 |
},
|
315 |
-
"
|
316 |
"content": "<extra_id_63>",
|
317 |
"lstrip": false,
|
318 |
"normalized": false,
|
@@ -320,7 +288,7 @@
|
|
320 |
"single_word": false,
|
321 |
"special": true
|
322 |
},
|
323 |
-
"
|
324 |
"content": "<extra_id_62>",
|
325 |
"lstrip": false,
|
326 |
"normalized": false,
|
@@ -328,7 +296,7 @@
|
|
328 |
"single_word": false,
|
329 |
"special": true
|
330 |
},
|
331 |
-
"
|
332 |
"content": "<extra_id_61>",
|
333 |
"lstrip": false,
|
334 |
"normalized": false,
|
@@ -336,7 +304,7 @@
|
|
336 |
"single_word": false,
|
337 |
"special": true
|
338 |
},
|
339 |
-
"
|
340 |
"content": "<extra_id_60>",
|
341 |
"lstrip": false,
|
342 |
"normalized": false,
|
@@ -344,7 +312,7 @@
|
|
344 |
"single_word": false,
|
345 |
"special": true
|
346 |
},
|
347 |
-
"
|
348 |
"content": "<extra_id_59>",
|
349 |
"lstrip": false,
|
350 |
"normalized": false,
|
@@ -352,7 +320,7 @@
|
|
352 |
"single_word": false,
|
353 |
"special": true
|
354 |
},
|
355 |
-
"
|
356 |
"content": "<extra_id_58>",
|
357 |
"lstrip": false,
|
358 |
"normalized": false,
|
@@ -360,7 +328,7 @@
|
|
360 |
"single_word": false,
|
361 |
"special": true
|
362 |
},
|
363 |
-
"
|
364 |
"content": "<extra_id_57>",
|
365 |
"lstrip": false,
|
366 |
"normalized": false,
|
@@ -368,7 +336,7 @@
|
|
368 |
"single_word": false,
|
369 |
"special": true
|
370 |
},
|
371 |
-
"
|
372 |
"content": "<extra_id_56>",
|
373 |
"lstrip": false,
|
374 |
"normalized": false,
|
@@ -376,7 +344,7 @@
|
|
376 |
"single_word": false,
|
377 |
"special": true
|
378 |
},
|
379 |
-
"
|
380 |
"content": "<extra_id_55>",
|
381 |
"lstrip": false,
|
382 |
"normalized": false,
|
@@ -384,7 +352,7 @@
|
|
384 |
"single_word": false,
|
385 |
"special": true
|
386 |
},
|
387 |
-
"
|
388 |
"content": "<extra_id_54>",
|
389 |
"lstrip": false,
|
390 |
"normalized": false,
|
@@ -392,7 +360,7 @@
|
|
392 |
"single_word": false,
|
393 |
"special": true
|
394 |
},
|
395 |
-
"
|
396 |
"content": "<extra_id_53>",
|
397 |
"lstrip": false,
|
398 |
"normalized": false,
|
@@ -400,7 +368,7 @@
|
|
400 |
"single_word": false,
|
401 |
"special": true
|
402 |
},
|
403 |
-
"
|
404 |
"content": "<extra_id_52>",
|
405 |
"lstrip": false,
|
406 |
"normalized": false,
|
@@ -408,7 +376,7 @@
|
|
408 |
"single_word": false,
|
409 |
"special": true
|
410 |
},
|
411 |
-
"
|
412 |
"content": "<extra_id_51>",
|
413 |
"lstrip": false,
|
414 |
"normalized": false,
|
@@ -416,7 +384,7 @@
|
|
416 |
"single_word": false,
|
417 |
"special": true
|
418 |
},
|
419 |
-
"
|
420 |
"content": "<extra_id_50>",
|
421 |
"lstrip": false,
|
422 |
"normalized": false,
|
@@ -424,7 +392,7 @@
|
|
424 |
"single_word": false,
|
425 |
"special": true
|
426 |
},
|
427 |
-
"
|
428 |
"content": "<extra_id_49>",
|
429 |
"lstrip": false,
|
430 |
"normalized": false,
|
@@ -432,7 +400,7 @@
|
|
432 |
"single_word": false,
|
433 |
"special": true
|
434 |
},
|
435 |
-
"
|
436 |
"content": "<extra_id_48>",
|
437 |
"lstrip": false,
|
438 |
"normalized": false,
|
@@ -440,7 +408,7 @@
|
|
440 |
"single_word": false,
|
441 |
"special": true
|
442 |
},
|
443 |
-
"
|
444 |
"content": "<extra_id_47>",
|
445 |
"lstrip": false,
|
446 |
"normalized": false,
|
@@ -448,7 +416,7 @@
|
|
448 |
"single_word": false,
|
449 |
"special": true
|
450 |
},
|
451 |
-
"
|
452 |
"content": "<extra_id_46>",
|
453 |
"lstrip": false,
|
454 |
"normalized": false,
|
@@ -456,7 +424,7 @@
|
|
456 |
"single_word": false,
|
457 |
"special": true
|
458 |
},
|
459 |
-
"
|
460 |
"content": "<extra_id_45>",
|
461 |
"lstrip": false,
|
462 |
"normalized": false,
|
@@ -464,7 +432,7 @@
|
|
464 |
"single_word": false,
|
465 |
"special": true
|
466 |
},
|
467 |
-
"
|
468 |
"content": "<extra_id_44>",
|
469 |
"lstrip": false,
|
470 |
"normalized": false,
|
@@ -472,7 +440,7 @@
|
|
472 |
"single_word": false,
|
473 |
"special": true
|
474 |
},
|
475 |
-
"
|
476 |
"content": "<extra_id_43>",
|
477 |
"lstrip": false,
|
478 |
"normalized": false,
|
@@ -480,7 +448,7 @@
|
|
480 |
"single_word": false,
|
481 |
"special": true
|
482 |
},
|
483 |
-
"
|
484 |
"content": "<extra_id_42>",
|
485 |
"lstrip": false,
|
486 |
"normalized": false,
|
@@ -488,7 +456,7 @@
|
|
488 |
"single_word": false,
|
489 |
"special": true
|
490 |
},
|
491 |
-
"
|
492 |
"content": "<extra_id_41>",
|
493 |
"lstrip": false,
|
494 |
"normalized": false,
|
@@ -496,7 +464,7 @@
|
|
496 |
"single_word": false,
|
497 |
"special": true
|
498 |
},
|
499 |
-
"
|
500 |
"content": "<extra_id_40>",
|
501 |
"lstrip": false,
|
502 |
"normalized": false,
|
@@ -504,7 +472,7 @@
|
|
504 |
"single_word": false,
|
505 |
"special": true
|
506 |
},
|
507 |
-
"
|
508 |
"content": "<extra_id_39>",
|
509 |
"lstrip": false,
|
510 |
"normalized": false,
|
@@ -512,7 +480,7 @@
|
|
512 |
"single_word": false,
|
513 |
"special": true
|
514 |
},
|
515 |
-
"
|
516 |
"content": "<extra_id_38>",
|
517 |
"lstrip": false,
|
518 |
"normalized": false,
|
@@ -520,7 +488,7 @@
|
|
520 |
"single_word": false,
|
521 |
"special": true
|
522 |
},
|
523 |
-
"
|
524 |
"content": "<extra_id_37>",
|
525 |
"lstrip": false,
|
526 |
"normalized": false,
|
@@ -528,7 +496,7 @@
|
|
528 |
"single_word": false,
|
529 |
"special": true
|
530 |
},
|
531 |
-
"
|
532 |
"content": "<extra_id_36>",
|
533 |
"lstrip": false,
|
534 |
"normalized": false,
|
@@ -536,7 +504,7 @@
|
|
536 |
"single_word": false,
|
537 |
"special": true
|
538 |
},
|
539 |
-
"
|
540 |
"content": "<extra_id_35>",
|
541 |
"lstrip": false,
|
542 |
"normalized": false,
|
@@ -544,7 +512,7 @@
|
|
544 |
"single_word": false,
|
545 |
"special": true
|
546 |
},
|
547 |
-
"
|
548 |
"content": "<extra_id_34>",
|
549 |
"lstrip": false,
|
550 |
"normalized": false,
|
@@ -552,7 +520,7 @@
|
|
552 |
"single_word": false,
|
553 |
"special": true
|
554 |
},
|
555 |
-
"
|
556 |
"content": "<extra_id_33>",
|
557 |
"lstrip": false,
|
558 |
"normalized": false,
|
@@ -560,7 +528,7 @@
|
|
560 |
"single_word": false,
|
561 |
"special": true
|
562 |
},
|
563 |
-
"
|
564 |
"content": "<extra_id_32>",
|
565 |
"lstrip": false,
|
566 |
"normalized": false,
|
@@ -568,7 +536,7 @@
|
|
568 |
"single_word": false,
|
569 |
"special": true
|
570 |
},
|
571 |
-
"
|
572 |
"content": "<extra_id_31>",
|
573 |
"lstrip": false,
|
574 |
"normalized": false,
|
@@ -576,7 +544,7 @@
|
|
576 |
"single_word": false,
|
577 |
"special": true
|
578 |
},
|
579 |
-
"
|
580 |
"content": "<extra_id_30>",
|
581 |
"lstrip": false,
|
582 |
"normalized": false,
|
@@ -584,7 +552,7 @@
|
|
584 |
"single_word": false,
|
585 |
"special": true
|
586 |
},
|
587 |
-
"
|
588 |
"content": "<extra_id_29>",
|
589 |
"lstrip": false,
|
590 |
"normalized": false,
|
@@ -592,7 +560,7 @@
|
|
592 |
"single_word": false,
|
593 |
"special": true
|
594 |
},
|
595 |
-
"
|
596 |
"content": "<extra_id_28>",
|
597 |
"lstrip": false,
|
598 |
"normalized": false,
|
@@ -600,7 +568,7 @@
|
|
600 |
"single_word": false,
|
601 |
"special": true
|
602 |
},
|
603 |
-
"
|
604 |
"content": "<extra_id_27>",
|
605 |
"lstrip": false,
|
606 |
"normalized": false,
|
@@ -608,7 +576,7 @@
|
|
608 |
"single_word": false,
|
609 |
"special": true
|
610 |
},
|
611 |
-
"
|
612 |
"content": "<extra_id_26>",
|
613 |
"lstrip": false,
|
614 |
"normalized": false,
|
@@ -616,7 +584,7 @@
|
|
616 |
"single_word": false,
|
617 |
"special": true
|
618 |
},
|
619 |
-
"
|
620 |
"content": "<extra_id_25>",
|
621 |
"lstrip": false,
|
622 |
"normalized": false,
|
@@ -624,7 +592,7 @@
|
|
624 |
"single_word": false,
|
625 |
"special": true
|
626 |
},
|
627 |
-
"
|
628 |
"content": "<extra_id_24>",
|
629 |
"lstrip": false,
|
630 |
"normalized": false,
|
@@ -632,7 +600,7 @@
|
|
632 |
"single_word": false,
|
633 |
"special": true
|
634 |
},
|
635 |
-
"
|
636 |
"content": "<extra_id_23>",
|
637 |
"lstrip": false,
|
638 |
"normalized": false,
|
@@ -640,7 +608,7 @@
|
|
640 |
"single_word": false,
|
641 |
"special": true
|
642 |
},
|
643 |
-
"
|
644 |
"content": "<extra_id_22>",
|
645 |
"lstrip": false,
|
646 |
"normalized": false,
|
@@ -648,7 +616,7 @@
|
|
648 |
"single_word": false,
|
649 |
"special": true
|
650 |
},
|
651 |
-
"
|
652 |
"content": "<extra_id_21>",
|
653 |
"lstrip": false,
|
654 |
"normalized": false,
|
@@ -656,7 +624,7 @@
|
|
656 |
"single_word": false,
|
657 |
"special": true
|
658 |
},
|
659 |
-
"
|
660 |
"content": "<extra_id_20>",
|
661 |
"lstrip": false,
|
662 |
"normalized": false,
|
@@ -664,7 +632,7 @@
|
|
664 |
"single_word": false,
|
665 |
"special": true
|
666 |
},
|
667 |
-
"
|
668 |
"content": "<extra_id_19>",
|
669 |
"lstrip": false,
|
670 |
"normalized": false,
|
@@ -672,7 +640,7 @@
|
|
672 |
"single_word": false,
|
673 |
"special": true
|
674 |
},
|
675 |
-
"
|
676 |
"content": "<extra_id_18>",
|
677 |
"lstrip": false,
|
678 |
"normalized": false,
|
@@ -680,7 +648,7 @@
|
|
680 |
"single_word": false,
|
681 |
"special": true
|
682 |
},
|
683 |
-
"
|
684 |
"content": "<extra_id_17>",
|
685 |
"lstrip": false,
|
686 |
"normalized": false,
|
@@ -688,7 +656,7 @@
|
|
688 |
"single_word": false,
|
689 |
"special": true
|
690 |
},
|
691 |
-
"
|
692 |
"content": "<extra_id_16>",
|
693 |
"lstrip": false,
|
694 |
"normalized": false,
|
@@ -696,7 +664,7 @@
|
|
696 |
"single_word": false,
|
697 |
"special": true
|
698 |
},
|
699 |
-
"
|
700 |
"content": "<extra_id_15>",
|
701 |
"lstrip": false,
|
702 |
"normalized": false,
|
@@ -704,7 +672,7 @@
|
|
704 |
"single_word": false,
|
705 |
"special": true
|
706 |
},
|
707 |
-
"
|
708 |
"content": "<extra_id_14>",
|
709 |
"lstrip": false,
|
710 |
"normalized": false,
|
@@ -712,7 +680,7 @@
|
|
712 |
"single_word": false,
|
713 |
"special": true
|
714 |
},
|
715 |
-
"
|
716 |
"content": "<extra_id_13>",
|
717 |
"lstrip": false,
|
718 |
"normalized": false,
|
@@ -720,7 +688,7 @@
|
|
720 |
"single_word": false,
|
721 |
"special": true
|
722 |
},
|
723 |
-
"
|
724 |
"content": "<extra_id_12>",
|
725 |
"lstrip": false,
|
726 |
"normalized": false,
|
@@ -728,7 +696,7 @@
|
|
728 |
"single_word": false,
|
729 |
"special": true
|
730 |
},
|
731 |
-
"
|
732 |
"content": "<extra_id_11>",
|
733 |
"lstrip": false,
|
734 |
"normalized": false,
|
@@ -736,7 +704,7 @@
|
|
736 |
"single_word": false,
|
737 |
"special": true
|
738 |
},
|
739 |
-
"
|
740 |
"content": "<extra_id_10>",
|
741 |
"lstrip": false,
|
742 |
"normalized": false,
|
@@ -744,7 +712,7 @@
|
|
744 |
"single_word": false,
|
745 |
"special": true
|
746 |
},
|
747 |
-
"
|
748 |
"content": "<extra_id_9>",
|
749 |
"lstrip": false,
|
750 |
"normalized": false,
|
@@ -752,7 +720,7 @@
|
|
752 |
"single_word": false,
|
753 |
"special": true
|
754 |
},
|
755 |
-
"
|
756 |
"content": "<extra_id_8>",
|
757 |
"lstrip": false,
|
758 |
"normalized": false,
|
@@ -760,7 +728,7 @@
|
|
760 |
"single_word": false,
|
761 |
"special": true
|
762 |
},
|
763 |
-
"
|
764 |
"content": "<extra_id_7>",
|
765 |
"lstrip": false,
|
766 |
"normalized": false,
|
@@ -768,7 +736,7 @@
|
|
768 |
"single_word": false,
|
769 |
"special": true
|
770 |
},
|
771 |
-
"
|
772 |
"content": "<extra_id_6>",
|
773 |
"lstrip": false,
|
774 |
"normalized": false,
|
@@ -776,7 +744,7 @@
|
|
776 |
"single_word": false,
|
777 |
"special": true
|
778 |
},
|
779 |
-
"
|
780 |
"content": "<extra_id_5>",
|
781 |
"lstrip": false,
|
782 |
"normalized": false,
|
@@ -784,7 +752,7 @@
|
|
784 |
"single_word": false,
|
785 |
"special": true
|
786 |
},
|
787 |
-
"
|
788 |
"content": "<extra_id_4>",
|
789 |
"lstrip": false,
|
790 |
"normalized": false,
|
@@ -792,7 +760,7 @@
|
|
792 |
"single_word": false,
|
793 |
"special": true
|
794 |
},
|
795 |
-
"
|
796 |
"content": "<extra_id_3>",
|
797 |
"lstrip": false,
|
798 |
"normalized": false,
|
@@ -800,7 +768,7 @@
|
|
800 |
"single_word": false,
|
801 |
"special": true
|
802 |
},
|
803 |
-
"
|
804 |
"content": "<extra_id_2>",
|
805 |
"lstrip": false,
|
806 |
"normalized": false,
|
@@ -808,7 +776,7 @@
|
|
808 |
"single_word": false,
|
809 |
"special": true
|
810 |
},
|
811 |
-
"
|
812 |
"content": "<extra_id_1>",
|
813 |
"lstrip": false,
|
814 |
"normalized": false,
|
@@ -816,7 +784,7 @@
|
|
816 |
"single_word": false,
|
817 |
"special": true
|
818 |
},
|
819 |
-
"
|
820 |
"content": "<extra_id_0>",
|
821 |
"lstrip": false,
|
822 |
"normalized": false,
|
@@ -921,16 +889,12 @@
|
|
921 |
"<extra_id_92>",
|
922 |
"<extra_id_93>",
|
923 |
"<extra_id_94>",
|
924 |
-
"<extra_id_95>"
|
925 |
-
"<extra_id_96>",
|
926 |
-
"<extra_id_97>",
|
927 |
-
"<extra_id_98>",
|
928 |
-
"<extra_id_99>"
|
929 |
],
|
930 |
"clean_up_tokenization_spaces": true,
|
931 |
"eos_token": "</s>",
|
932 |
-
"extra_ids":
|
933 |
-
"model_max_length":
|
934 |
"pad_token": "<pad>",
|
935 |
"sp_model_kwargs": {},
|
936 |
"tokenizer_class": "T5Tokenizer",
|
|
|
24 |
"single_word": false,
|
25 |
"special": true
|
26 |
},
|
27 |
+
"36000": {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
"content": "<extra_id_95>",
|
29 |
"lstrip": false,
|
30 |
"normalized": false,
|
|
|
32 |
"single_word": false,
|
33 |
"special": true
|
34 |
},
|
35 |
+
"36001": {
|
36 |
"content": "<extra_id_94>",
|
37 |
"lstrip": false,
|
38 |
"normalized": false,
|
|
|
40 |
"single_word": false,
|
41 |
"special": true
|
42 |
},
|
43 |
+
"36002": {
|
44 |
"content": "<extra_id_93>",
|
45 |
"lstrip": false,
|
46 |
"normalized": false,
|
|
|
48 |
"single_word": false,
|
49 |
"special": true
|
50 |
},
|
51 |
+
"36003": {
|
52 |
"content": "<extra_id_92>",
|
53 |
"lstrip": false,
|
54 |
"normalized": false,
|
|
|
56 |
"single_word": false,
|
57 |
"special": true
|
58 |
},
|
59 |
+
"36004": {
|
60 |
"content": "<extra_id_91>",
|
61 |
"lstrip": false,
|
62 |
"normalized": false,
|
|
|
64 |
"single_word": false,
|
65 |
"special": true
|
66 |
},
|
67 |
+
"36005": {
|
68 |
"content": "<extra_id_90>",
|
69 |
"lstrip": false,
|
70 |
"normalized": false,
|
|
|
72 |
"single_word": false,
|
73 |
"special": true
|
74 |
},
|
75 |
+
"36006": {
|
76 |
"content": "<extra_id_89>",
|
77 |
"lstrip": false,
|
78 |
"normalized": false,
|
|
|
80 |
"single_word": false,
|
81 |
"special": true
|
82 |
},
|
83 |
+
"36007": {
|
84 |
"content": "<extra_id_88>",
|
85 |
"lstrip": false,
|
86 |
"normalized": false,
|
|
|
88 |
"single_word": false,
|
89 |
"special": true
|
90 |
},
|
91 |
+
"36008": {
|
92 |
"content": "<extra_id_87>",
|
93 |
"lstrip": false,
|
94 |
"normalized": false,
|
|
|
96 |
"single_word": false,
|
97 |
"special": true
|
98 |
},
|
99 |
+
"36009": {
|
100 |
"content": "<extra_id_86>",
|
101 |
"lstrip": false,
|
102 |
"normalized": false,
|
|
|
104 |
"single_word": false,
|
105 |
"special": true
|
106 |
},
|
107 |
+
"36010": {
|
108 |
"content": "<extra_id_85>",
|
109 |
"lstrip": false,
|
110 |
"normalized": false,
|
|
|
112 |
"single_word": false,
|
113 |
"special": true
|
114 |
},
|
115 |
+
"36011": {
|
116 |
"content": "<extra_id_84>",
|
117 |
"lstrip": false,
|
118 |
"normalized": false,
|
|
|
120 |
"single_word": false,
|
121 |
"special": true
|
122 |
},
|
123 |
+
"36012": {
|
124 |
"content": "<extra_id_83>",
|
125 |
"lstrip": false,
|
126 |
"normalized": false,
|
|
|
128 |
"single_word": false,
|
129 |
"special": true
|
130 |
},
|
131 |
+
"36013": {
|
132 |
"content": "<extra_id_82>",
|
133 |
"lstrip": false,
|
134 |
"normalized": false,
|
|
|
136 |
"single_word": false,
|
137 |
"special": true
|
138 |
},
|
139 |
+
"36014": {
|
140 |
"content": "<extra_id_81>",
|
141 |
"lstrip": false,
|
142 |
"normalized": false,
|
|
|
144 |
"single_word": false,
|
145 |
"special": true
|
146 |
},
|
147 |
+
"36015": {
|
148 |
"content": "<extra_id_80>",
|
149 |
"lstrip": false,
|
150 |
"normalized": false,
|
|
|
152 |
"single_word": false,
|
153 |
"special": true
|
154 |
},
|
155 |
+
"36016": {
|
156 |
"content": "<extra_id_79>",
|
157 |
"lstrip": false,
|
158 |
"normalized": false,
|
|
|
160 |
"single_word": false,
|
161 |
"special": true
|
162 |
},
|
163 |
+
"36017": {
|
164 |
"content": "<extra_id_78>",
|
165 |
"lstrip": false,
|
166 |
"normalized": false,
|
|
|
168 |
"single_word": false,
|
169 |
"special": true
|
170 |
},
|
171 |
+
"36018": {
|
172 |
"content": "<extra_id_77>",
|
173 |
"lstrip": false,
|
174 |
"normalized": false,
|
|
|
176 |
"single_word": false,
|
177 |
"special": true
|
178 |
},
|
179 |
+
"36019": {
|
180 |
"content": "<extra_id_76>",
|
181 |
"lstrip": false,
|
182 |
"normalized": false,
|
|
|
184 |
"single_word": false,
|
185 |
"special": true
|
186 |
},
|
187 |
+
"36020": {
|
188 |
"content": "<extra_id_75>",
|
189 |
"lstrip": false,
|
190 |
"normalized": false,
|
|
|
192 |
"single_word": false,
|
193 |
"special": true
|
194 |
},
|
195 |
+
"36021": {
|
196 |
"content": "<extra_id_74>",
|
197 |
"lstrip": false,
|
198 |
"normalized": false,
|
|
|
200 |
"single_word": false,
|
201 |
"special": true
|
202 |
},
|
203 |
+
"36022": {
|
204 |
"content": "<extra_id_73>",
|
205 |
"lstrip": false,
|
206 |
"normalized": false,
|
|
|
208 |
"single_word": false,
|
209 |
"special": true
|
210 |
},
|
211 |
+
"36023": {
|
212 |
"content": "<extra_id_72>",
|
213 |
"lstrip": false,
|
214 |
"normalized": false,
|
|
|
216 |
"single_word": false,
|
217 |
"special": true
|
218 |
},
|
219 |
+
"36024": {
|
220 |
"content": "<extra_id_71>",
|
221 |
"lstrip": false,
|
222 |
"normalized": false,
|
|
|
224 |
"single_word": false,
|
225 |
"special": true
|
226 |
},
|
227 |
+
"36025": {
|
228 |
"content": "<extra_id_70>",
|
229 |
"lstrip": false,
|
230 |
"normalized": false,
|
|
|
232 |
"single_word": false,
|
233 |
"special": true
|
234 |
},
|
235 |
+
"36026": {
|
236 |
"content": "<extra_id_69>",
|
237 |
"lstrip": false,
|
238 |
"normalized": false,
|
|
|
240 |
"single_word": false,
|
241 |
"special": true
|
242 |
},
|
243 |
+
"36027": {
|
244 |
"content": "<extra_id_68>",
|
245 |
"lstrip": false,
|
246 |
"normalized": false,
|
|
|
248 |
"single_word": false,
|
249 |
"special": true
|
250 |
},
|
251 |
+
"36028": {
|
252 |
"content": "<extra_id_67>",
|
253 |
"lstrip": false,
|
254 |
"normalized": false,
|
|
|
256 |
"single_word": false,
|
257 |
"special": true
|
258 |
},
|
259 |
+
"36029": {
|
260 |
"content": "<extra_id_66>",
|
261 |
"lstrip": false,
|
262 |
"normalized": false,
|
|
|
264 |
"single_word": false,
|
265 |
"special": true
|
266 |
},
|
267 |
+
"36030": {
|
268 |
"content": "<extra_id_65>",
|
269 |
"lstrip": false,
|
270 |
"normalized": false,
|
|
|
272 |
"single_word": false,
|
273 |
"special": true
|
274 |
},
|
275 |
+
"36031": {
|
276 |
"content": "<extra_id_64>",
|
277 |
"lstrip": false,
|
278 |
"normalized": false,
|
|
|
280 |
"single_word": false,
|
281 |
"special": true
|
282 |
},
|
283 |
+
"36032": {
|
284 |
"content": "<extra_id_63>",
|
285 |
"lstrip": false,
|
286 |
"normalized": false,
|
|
|
288 |
"single_word": false,
|
289 |
"special": true
|
290 |
},
|
291 |
+
"36033": {
|
292 |
"content": "<extra_id_62>",
|
293 |
"lstrip": false,
|
294 |
"normalized": false,
|
|
|
296 |
"single_word": false,
|
297 |
"special": true
|
298 |
},
|
299 |
+
"36034": {
|
300 |
"content": "<extra_id_61>",
|
301 |
"lstrip": false,
|
302 |
"normalized": false,
|
|
|
304 |
"single_word": false,
|
305 |
"special": true
|
306 |
},
|
307 |
+
"36035": {
|
308 |
"content": "<extra_id_60>",
|
309 |
"lstrip": false,
|
310 |
"normalized": false,
|
|
|
312 |
"single_word": false,
|
313 |
"special": true
|
314 |
},
|
315 |
+
"36036": {
|
316 |
"content": "<extra_id_59>",
|
317 |
"lstrip": false,
|
318 |
"normalized": false,
|
|
|
320 |
"single_word": false,
|
321 |
"special": true
|
322 |
},
|
323 |
+
"36037": {
|
324 |
"content": "<extra_id_58>",
|
325 |
"lstrip": false,
|
326 |
"normalized": false,
|
|
|
328 |
"single_word": false,
|
329 |
"special": true
|
330 |
},
|
331 |
+
"36038": {
|
332 |
"content": "<extra_id_57>",
|
333 |
"lstrip": false,
|
334 |
"normalized": false,
|
|
|
336 |
"single_word": false,
|
337 |
"special": true
|
338 |
},
|
339 |
+
"36039": {
|
340 |
"content": "<extra_id_56>",
|
341 |
"lstrip": false,
|
342 |
"normalized": false,
|
|
|
344 |
"single_word": false,
|
345 |
"special": true
|
346 |
},
|
347 |
+
"36040": {
|
348 |
"content": "<extra_id_55>",
|
349 |
"lstrip": false,
|
350 |
"normalized": false,
|
|
|
352 |
"single_word": false,
|
353 |
"special": true
|
354 |
},
|
355 |
+
"36041": {
|
356 |
"content": "<extra_id_54>",
|
357 |
"lstrip": false,
|
358 |
"normalized": false,
|
|
|
360 |
"single_word": false,
|
361 |
"special": true
|
362 |
},
|
363 |
+
"36042": {
|
364 |
"content": "<extra_id_53>",
|
365 |
"lstrip": false,
|
366 |
"normalized": false,
|
|
|
368 |
"single_word": false,
|
369 |
"special": true
|
370 |
},
|
371 |
+
"36043": {
|
372 |
"content": "<extra_id_52>",
|
373 |
"lstrip": false,
|
374 |
"normalized": false,
|
|
|
376 |
"single_word": false,
|
377 |
"special": true
|
378 |
},
|
379 |
+
"36044": {
|
380 |
"content": "<extra_id_51>",
|
381 |
"lstrip": false,
|
382 |
"normalized": false,
|
|
|
384 |
"single_word": false,
|
385 |
"special": true
|
386 |
},
|
387 |
+
"36045": {
|
388 |
"content": "<extra_id_50>",
|
389 |
"lstrip": false,
|
390 |
"normalized": false,
|
|
|
392 |
"single_word": false,
|
393 |
"special": true
|
394 |
},
|
395 |
+
"36046": {
|
396 |
"content": "<extra_id_49>",
|
397 |
"lstrip": false,
|
398 |
"normalized": false,
|
|
|
400 |
"single_word": false,
|
401 |
"special": true
|
402 |
},
|
403 |
+
"36047": {
|
404 |
"content": "<extra_id_48>",
|
405 |
"lstrip": false,
|
406 |
"normalized": false,
|
|
|
408 |
"single_word": false,
|
409 |
"special": true
|
410 |
},
|
411 |
+
"36048": {
|
412 |
"content": "<extra_id_47>",
|
413 |
"lstrip": false,
|
414 |
"normalized": false,
|
|
|
416 |
"single_word": false,
|
417 |
"special": true
|
418 |
},
|
419 |
+
"36049": {
|
420 |
"content": "<extra_id_46>",
|
421 |
"lstrip": false,
|
422 |
"normalized": false,
|
|
|
424 |
"single_word": false,
|
425 |
"special": true
|
426 |
},
|
427 |
+
"36050": {
|
428 |
"content": "<extra_id_45>",
|
429 |
"lstrip": false,
|
430 |
"normalized": false,
|
|
|
432 |
"single_word": false,
|
433 |
"special": true
|
434 |
},
|
435 |
+
"36051": {
|
436 |
"content": "<extra_id_44>",
|
437 |
"lstrip": false,
|
438 |
"normalized": false,
|
|
|
440 |
"single_word": false,
|
441 |
"special": true
|
442 |
},
|
443 |
+
"36052": {
|
444 |
"content": "<extra_id_43>",
|
445 |
"lstrip": false,
|
446 |
"normalized": false,
|
|
|
448 |
"single_word": false,
|
449 |
"special": true
|
450 |
},
|
451 |
+
"36053": {
|
452 |
"content": "<extra_id_42>",
|
453 |
"lstrip": false,
|
454 |
"normalized": false,
|
|
|
456 |
"single_word": false,
|
457 |
"special": true
|
458 |
},
|
459 |
+
"36054": {
|
460 |
"content": "<extra_id_41>",
|
461 |
"lstrip": false,
|
462 |
"normalized": false,
|
|
|
464 |
"single_word": false,
|
465 |
"special": true
|
466 |
},
|
467 |
+
"36055": {
|
468 |
"content": "<extra_id_40>",
|
469 |
"lstrip": false,
|
470 |
"normalized": false,
|
|
|
472 |
"single_word": false,
|
473 |
"special": true
|
474 |
},
|
475 |
+
"36056": {
|
476 |
"content": "<extra_id_39>",
|
477 |
"lstrip": false,
|
478 |
"normalized": false,
|
|
|
480 |
"single_word": false,
|
481 |
"special": true
|
482 |
},
|
483 |
+
"36057": {
|
484 |
"content": "<extra_id_38>",
|
485 |
"lstrip": false,
|
486 |
"normalized": false,
|
|
|
488 |
"single_word": false,
|
489 |
"special": true
|
490 |
},
|
491 |
+
"36058": {
|
492 |
"content": "<extra_id_37>",
|
493 |
"lstrip": false,
|
494 |
"normalized": false,
|
|
|
496 |
"single_word": false,
|
497 |
"special": true
|
498 |
},
|
499 |
+
"36059": {
|
500 |
"content": "<extra_id_36>",
|
501 |
"lstrip": false,
|
502 |
"normalized": false,
|
|
|
504 |
"single_word": false,
|
505 |
"special": true
|
506 |
},
|
507 |
+
"36060": {
|
508 |
"content": "<extra_id_35>",
|
509 |
"lstrip": false,
|
510 |
"normalized": false,
|
|
|
512 |
"single_word": false,
|
513 |
"special": true
|
514 |
},
|
515 |
+
"36061": {
|
516 |
"content": "<extra_id_34>",
|
517 |
"lstrip": false,
|
518 |
"normalized": false,
|
|
|
520 |
"single_word": false,
|
521 |
"special": true
|
522 |
},
|
523 |
+
"36062": {
|
524 |
"content": "<extra_id_33>",
|
525 |
"lstrip": false,
|
526 |
"normalized": false,
|
|
|
528 |
"single_word": false,
|
529 |
"special": true
|
530 |
},
|
531 |
+
"36063": {
|
532 |
"content": "<extra_id_32>",
|
533 |
"lstrip": false,
|
534 |
"normalized": false,
|
|
|
536 |
"single_word": false,
|
537 |
"special": true
|
538 |
},
|
539 |
+
"36064": {
|
540 |
"content": "<extra_id_31>",
|
541 |
"lstrip": false,
|
542 |
"normalized": false,
|
|
|
544 |
"single_word": false,
|
545 |
"special": true
|
546 |
},
|
547 |
+
"36065": {
|
548 |
"content": "<extra_id_30>",
|
549 |
"lstrip": false,
|
550 |
"normalized": false,
|
|
|
552 |
"single_word": false,
|
553 |
"special": true
|
554 |
},
|
555 |
+
"36066": {
|
556 |
"content": "<extra_id_29>",
|
557 |
"lstrip": false,
|
558 |
"normalized": false,
|
|
|
560 |
"single_word": false,
|
561 |
"special": true
|
562 |
},
|
563 |
+
"36067": {
|
564 |
"content": "<extra_id_28>",
|
565 |
"lstrip": false,
|
566 |
"normalized": false,
|
|
|
568 |
"single_word": false,
|
569 |
"special": true
|
570 |
},
|
571 |
+
"36068": {
|
572 |
"content": "<extra_id_27>",
|
573 |
"lstrip": false,
|
574 |
"normalized": false,
|
|
|
576 |
"single_word": false,
|
577 |
"special": true
|
578 |
},
|
579 |
+
"36069": {
|
580 |
"content": "<extra_id_26>",
|
581 |
"lstrip": false,
|
582 |
"normalized": false,
|
|
|
584 |
"single_word": false,
|
585 |
"special": true
|
586 |
},
|
587 |
+
"36070": {
|
588 |
"content": "<extra_id_25>",
|
589 |
"lstrip": false,
|
590 |
"normalized": false,
|
|
|
592 |
"single_word": false,
|
593 |
"special": true
|
594 |
},
|
595 |
+
"36071": {
|
596 |
"content": "<extra_id_24>",
|
597 |
"lstrip": false,
|
598 |
"normalized": false,
|
|
|
600 |
"single_word": false,
|
601 |
"special": true
|
602 |
},
|
603 |
+
"36072": {
|
604 |
"content": "<extra_id_23>",
|
605 |
"lstrip": false,
|
606 |
"normalized": false,
|
|
|
608 |
"single_word": false,
|
609 |
"special": true
|
610 |
},
|
611 |
+
"36073": {
|
612 |
"content": "<extra_id_22>",
|
613 |
"lstrip": false,
|
614 |
"normalized": false,
|
|
|
616 |
"single_word": false,
|
617 |
"special": true
|
618 |
},
|
619 |
+
"36074": {
|
620 |
"content": "<extra_id_21>",
|
621 |
"lstrip": false,
|
622 |
"normalized": false,
|
|
|
624 |
"single_word": false,
|
625 |
"special": true
|
626 |
},
|
627 |
+
"36075": {
|
628 |
"content": "<extra_id_20>",
|
629 |
"lstrip": false,
|
630 |
"normalized": false,
|
|
|
632 |
"single_word": false,
|
633 |
"special": true
|
634 |
},
|
635 |
+
"36076": {
|
636 |
"content": "<extra_id_19>",
|
637 |
"lstrip": false,
|
638 |
"normalized": false,
|
|
|
640 |
"single_word": false,
|
641 |
"special": true
|
642 |
},
|
643 |
+
"36077": {
|
644 |
"content": "<extra_id_18>",
|
645 |
"lstrip": false,
|
646 |
"normalized": false,
|
|
|
648 |
"single_word": false,
|
649 |
"special": true
|
650 |
},
|
651 |
+
"36078": {
|
652 |
"content": "<extra_id_17>",
|
653 |
"lstrip": false,
|
654 |
"normalized": false,
|
|
|
656 |
"single_word": false,
|
657 |
"special": true
|
658 |
},
|
659 |
+
"36079": {
|
660 |
"content": "<extra_id_16>",
|
661 |
"lstrip": false,
|
662 |
"normalized": false,
|
|
|
664 |
"single_word": false,
|
665 |
"special": true
|
666 |
},
|
667 |
+
"36080": {
|
668 |
"content": "<extra_id_15>",
|
669 |
"lstrip": false,
|
670 |
"normalized": false,
|
|
|
672 |
"single_word": false,
|
673 |
"special": true
|
674 |
},
|
675 |
+
"36081": {
|
676 |
"content": "<extra_id_14>",
|
677 |
"lstrip": false,
|
678 |
"normalized": false,
|
|
|
680 |
"single_word": false,
|
681 |
"special": true
|
682 |
},
|
683 |
+
"36082": {
|
684 |
"content": "<extra_id_13>",
|
685 |
"lstrip": false,
|
686 |
"normalized": false,
|
|
|
688 |
"single_word": false,
|
689 |
"special": true
|
690 |
},
|
691 |
+
"36083": {
|
692 |
"content": "<extra_id_12>",
|
693 |
"lstrip": false,
|
694 |
"normalized": false,
|
|
|
696 |
"single_word": false,
|
697 |
"special": true
|
698 |
},
|
699 |
+
"36084": {
|
700 |
"content": "<extra_id_11>",
|
701 |
"lstrip": false,
|
702 |
"normalized": false,
|
|
|
704 |
"single_word": false,
|
705 |
"special": true
|
706 |
},
|
707 |
+
"36085": {
|
708 |
"content": "<extra_id_10>",
|
709 |
"lstrip": false,
|
710 |
"normalized": false,
|
|
|
712 |
"single_word": false,
|
713 |
"special": true
|
714 |
},
|
715 |
+
"36086": {
|
716 |
"content": "<extra_id_9>",
|
717 |
"lstrip": false,
|
718 |
"normalized": false,
|
|
|
720 |
"single_word": false,
|
721 |
"special": true
|
722 |
},
|
723 |
+
"36087": {
|
724 |
"content": "<extra_id_8>",
|
725 |
"lstrip": false,
|
726 |
"normalized": false,
|
|
|
728 |
"single_word": false,
|
729 |
"special": true
|
730 |
},
|
731 |
+
"36088": {
|
732 |
"content": "<extra_id_7>",
|
733 |
"lstrip": false,
|
734 |
"normalized": false,
|
|
|
736 |
"single_word": false,
|
737 |
"special": true
|
738 |
},
|
739 |
+
"36089": {
|
740 |
"content": "<extra_id_6>",
|
741 |
"lstrip": false,
|
742 |
"normalized": false,
|
|
|
744 |
"single_word": false,
|
745 |
"special": true
|
746 |
},
|
747 |
+
"36090": {
|
748 |
"content": "<extra_id_5>",
|
749 |
"lstrip": false,
|
750 |
"normalized": false,
|
|
|
752 |
"single_word": false,
|
753 |
"special": true
|
754 |
},
|
755 |
+
"36091": {
|
756 |
"content": "<extra_id_4>",
|
757 |
"lstrip": false,
|
758 |
"normalized": false,
|
|
|
760 |
"single_word": false,
|
761 |
"special": true
|
762 |
},
|
763 |
+
"36092": {
|
764 |
"content": "<extra_id_3>",
|
765 |
"lstrip": false,
|
766 |
"normalized": false,
|
|
|
768 |
"single_word": false,
|
769 |
"special": true
|
770 |
},
|
771 |
+
"36093": {
|
772 |
"content": "<extra_id_2>",
|
773 |
"lstrip": false,
|
774 |
"normalized": false,
|
|
|
776 |
"single_word": false,
|
777 |
"special": true
|
778 |
},
|
779 |
+
"36094": {
|
780 |
"content": "<extra_id_1>",
|
781 |
"lstrip": false,
|
782 |
"normalized": false,
|
|
|
784 |
"single_word": false,
|
785 |
"special": true
|
786 |
},
|
787 |
+
"36095": {
|
788 |
"content": "<extra_id_0>",
|
789 |
"lstrip": false,
|
790 |
"normalized": false,
|
|
|
889 |
"<extra_id_92>",
|
890 |
"<extra_id_93>",
|
891 |
"<extra_id_94>",
|
892 |
+
"<extra_id_95>"
|
|
|
|
|
|
|
|
|
893 |
],
|
894 |
"clean_up_tokenization_spaces": true,
|
895 |
"eos_token": "</s>",
|
896 |
+
"extra_ids": 96,
|
897 |
+
"model_max_length": 1000000000000000019884624838656,
|
898 |
"pad_token": "<pad>",
|
899 |
"sp_model_kwargs": {},
|
900 |
"tokenizer_class": "T5Tokenizer",
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:703a169fb341fafcf468148ed632fdba9035e19f3aa3c53918c5f713571a73e0
|
3 |
+
size 5304
|