GinnM commited on
Commit
76068e7
1 Parent(s): 1b6d325

Upload tokenizer

Browse files
Files changed (3) hide show
  1. special_tokens_map.json +9 -0
  2. tokenizer.json +316 -0
  3. tokenizer_config.json +5 -0
special_tokens_map.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<cls>",
3
+ "cls_token": "<cls>",
4
+ "eos_token": "<sep>",
5
+ "mask_token": "<mask>",
6
+ "pad_token": "<pad>",
7
+ "sep_token": "<sep>",
8
+ "unk_token": "<unk>"
9
+ }
tokenizer.json ADDED
@@ -0,0 +1,316 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.0",
3
+ "truncation": null,
4
+ "padding": null,
5
+ "added_tokens": [
6
+ {
7
+ "id": 0,
8
+ "content": "<pad>",
9
+ "single_word": false,
10
+ "lstrip": false,
11
+ "rstrip": false,
12
+ "normalized": false,
13
+ "special": true
14
+ },
15
+ {
16
+ "id": 1,
17
+ "content": "<cls>",
18
+ "single_word": false,
19
+ "lstrip": false,
20
+ "rstrip": false,
21
+ "normalized": false,
22
+ "special": true
23
+ },
24
+ {
25
+ "id": 2,
26
+ "content": "<sep>",
27
+ "single_word": false,
28
+ "lstrip": false,
29
+ "rstrip": false,
30
+ "normalized": false,
31
+ "special": true
32
+ },
33
+ {
34
+ "id": 3,
35
+ "content": "<unk>",
36
+ "single_word": false,
37
+ "lstrip": false,
38
+ "rstrip": false,
39
+ "normalized": false,
40
+ "special": true
41
+ },
42
+ {
43
+ "id": 4,
44
+ "content": "<mask>",
45
+ "single_word": false,
46
+ "lstrip": false,
47
+ "rstrip": false,
48
+ "normalized": false,
49
+ "special": true
50
+ }
51
+ ],
52
+ "normalizer": null,
53
+ "pre_tokenizer": null,
54
+ "post_processor": {
55
+ "type": "TemplateProcessing",
56
+ "single": [
57
+ {
58
+ "SpecialToken": {
59
+ "id": "<cls>",
60
+ "type_id": 0
61
+ }
62
+ },
63
+ {
64
+ "Sequence": {
65
+ "id": "A",
66
+ "type_id": 0
67
+ }
68
+ },
69
+ {
70
+ "SpecialToken": {
71
+ "id": "<sep>",
72
+ "type_id": 0
73
+ }
74
+ }
75
+ ],
76
+ "pair": [
77
+ {
78
+ "SpecialToken": {
79
+ "id": "<cls>",
80
+ "type_id": 0
81
+ }
82
+ },
83
+ {
84
+ "Sequence": {
85
+ "id": "A",
86
+ "type_id": 0
87
+ }
88
+ },
89
+ {
90
+ "SpecialToken": {
91
+ "id": "<sep>",
92
+ "type_id": 0
93
+ }
94
+ },
95
+ {
96
+ "Sequence": {
97
+ "id": "B",
98
+ "type_id": 1
99
+ }
100
+ },
101
+ {
102
+ "SpecialToken": {
103
+ "id": "<sep>",
104
+ "type_id": 1
105
+ }
106
+ }
107
+ ],
108
+ "special_tokens": {
109
+ "<cls>": {
110
+ "id": "<cls>",
111
+ "ids": [
112
+ 1
113
+ ],
114
+ "tokens": [
115
+ "<cls>"
116
+ ]
117
+ },
118
+ "<sep>": {
119
+ "id": "<sep>",
120
+ "ids": [
121
+ 2
122
+ ],
123
+ "tokens": [
124
+ "<sep>"
125
+ ]
126
+ }
127
+ }
128
+ },
129
+ "decoder": {
130
+ "type": "BPEDecoder",
131
+ "suffix": "</w>"
132
+ },
133
+ "model": {
134
+ "type": "BPE",
135
+ "dropout": null,
136
+ "unk_token": null,
137
+ "continuing_subword_prefix": null,
138
+ "end_of_word_suffix": null,
139
+ "fuse_unk": false,
140
+ "byte_fallback": false,
141
+ "vocab": {
142
+ "<pad>": 0,
143
+ "<cls>": 1,
144
+ "<sep>": 2,
145
+ "<unk>": 3,
146
+ "<mask>": 4,
147
+ "A": 5,
148
+ "B": 6,
149
+ "C": 7,
150
+ "D": 8,
151
+ "E": 9,
152
+ "F": 10,
153
+ "G": 11,
154
+ "H": 12,
155
+ "I": 13,
156
+ "K": 14,
157
+ "L": 15,
158
+ "M": 16,
159
+ "N": 17,
160
+ "O": 18,
161
+ "P": 19,
162
+ "Q": 20,
163
+ "R": 21,
164
+ "S": 22,
165
+ "T": 23,
166
+ "U": 24,
167
+ "V": 25,
168
+ "W": 26,
169
+ "X": 27,
170
+ "Y": 28,
171
+ "Z": 29,
172
+ "AA": 30,
173
+ "LL": 31,
174
+ "SS": 32,
175
+ "LA": 33,
176
+ "LS": 34,
177
+ "GG": 35,
178
+ "LV": 36,
179
+ "LR": 37,
180
+ "LE": 38,
181
+ "LG": 39,
182
+ "LT": 40,
183
+ "AV": 41,
184
+ "AG": 42,
185
+ "LP": 43,
186
+ "LD": 44,
187
+ "LI": 45,
188
+ "AS": 46,
189
+ "EE": 47,
190
+ "RR": 48,
191
+ "LK": 49,
192
+ "VV": 50,
193
+ "AT": 51,
194
+ "AE": 52,
195
+ "SG": 53,
196
+ "DG": 54,
197
+ "AR": 55,
198
+ "KK": 56,
199
+ "AI": 57,
200
+ "AP": 58,
201
+ "TT": 59,
202
+ "LN": 60,
203
+ "LF": 61,
204
+ "LQ": 62,
205
+ "AD": 63,
206
+ "SV": 64,
207
+ "ST": 65,
208
+ "SI": 66,
209
+ "SP": 67,
210
+ "DE": 68,
211
+ "TG": 69,
212
+ "TV": 70,
213
+ "SR": 71,
214
+ "SE": 72,
215
+ "DV": 73,
216
+ "PP": 74,
217
+ "KE": 75,
218
+ "KI": 76,
219
+ "DI": 77,
220
+ "GV": 78,
221
+ "AQ": 79,
222
+ "AF": 80,
223
+ "RV": 81,
224
+ "TI": 82,
225
+ "NI": 83,
226
+ "PV": 84,
227
+ "RE": 85,
228
+ "SF": 86,
229
+ "KV": 87,
230
+ "NG": 88,
231
+ "LY": 89,
232
+ "RI": 90,
233
+ "PG": 91,
234
+ "RG": 92,
235
+ "DD": 93,
236
+ "PE": 94,
237
+ "AK": 95,
238
+ "NV": 96,
239
+ "SD": 97,
240
+ "TE": 98,
241
+ "QQ": 99
242
+ },
243
+ "merges": [
244
+ "A A",
245
+ "L L",
246
+ "S S",
247
+ "L A",
248
+ "L S",
249
+ "G G",
250
+ "L V",
251
+ "L R",
252
+ "L E",
253
+ "L G",
254
+ "L T",
255
+ "A V",
256
+ "A G",
257
+ "L P",
258
+ "L D",
259
+ "L I",
260
+ "A S",
261
+ "E E",
262
+ "R R",
263
+ "L K",
264
+ "V V",
265
+ "A T",
266
+ "A E",
267
+ "S G",
268
+ "D G",
269
+ "A R",
270
+ "K K",
271
+ "A I",
272
+ "A P",
273
+ "T T",
274
+ "L N",
275
+ "L F",
276
+ "L Q",
277
+ "A D",
278
+ "S V",
279
+ "S T",
280
+ "S I",
281
+ "S P",
282
+ "D E",
283
+ "T G",
284
+ "T V",
285
+ "S R",
286
+ "S E",
287
+ "D V",
288
+ "P P",
289
+ "K E",
290
+ "K I",
291
+ "D I",
292
+ "G V",
293
+ "A Q",
294
+ "A F",
295
+ "R V",
296
+ "T I",
297
+ "N I",
298
+ "P V",
299
+ "R E",
300
+ "S F",
301
+ "K V",
302
+ "N G",
303
+ "L Y",
304
+ "R I",
305
+ "P G",
306
+ "R G",
307
+ "D D",
308
+ "P E",
309
+ "A K",
310
+ "N V",
311
+ "S D",
312
+ "T E",
313
+ "Q Q"
314
+ ]
315
+ }
316
+ }
tokenizer_config.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "model_max_length": 1000000000000000019884624838656,
4
+ "tokenizer_class": "PreTrainedTokenizerFast"
5
+ }