kaiyuy commited on
Commit
9e2519d
1 Parent(s): 17a771e

Upload 3 files

Browse files
Files changed (3) hide show
  1. config.json +6 -0
  2. model.bin +3 -0
  3. vocabulary.json +386 -0
config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<pad>",
3
+ "eos_token": "</s>",
4
+ "layer_norm_epsilon": null,
5
+ "unk_token": "<unk>"
6
+ }
model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e890b5e057d5992090b8c6a3cad3d4ba8e047258465f2c40a8006085d79ad0e
3
+ size 870637853
vocabulary.json ADDED
@@ -0,0 +1,386 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "<pad>",
3
+ "</s>",
4
+ "<unk>",
5
+ "\u0000",
6
+ "\u0001",
7
+ "\u0002",
8
+ "\u0003",
9
+ "\u0004",
10
+ "\u0005",
11
+ "\u0006",
12
+ "\u0007",
13
+ "\b",
14
+ "\t",
15
+ "\n",
16
+ "\u000b",
17
+ "\f",
18
+ "\r",
19
+ "\u000e",
20
+ "\u000f",
21
+ "\u0010",
22
+ "\u0011",
23
+ "\u0012",
24
+ "\u0013",
25
+ "\u0014",
26
+ "\u0015",
27
+ "\u0016",
28
+ "\u0017",
29
+ "\u0018",
30
+ "\u0019",
31
+ "\u001a",
32
+ "\u001b",
33
+ "\u001c",
34
+ "\u001d",
35
+ "\u001e",
36
+ "\u001f",
37
+ " ",
38
+ "!",
39
+ "\"",
40
+ "#",
41
+ "$",
42
+ "%",
43
+ "&",
44
+ "'",
45
+ "(",
46
+ ")",
47
+ "*",
48
+ "+",
49
+ ",",
50
+ "-",
51
+ ".",
52
+ "/",
53
+ "0",
54
+ "1",
55
+ "2",
56
+ "3",
57
+ "4",
58
+ "5",
59
+ "6",
60
+ "7",
61
+ "8",
62
+ "9",
63
+ ":",
64
+ ";",
65
+ "<",
66
+ "=",
67
+ ">",
68
+ "?",
69
+ "@",
70
+ "A",
71
+ "B",
72
+ "C",
73
+ "D",
74
+ "E",
75
+ "F",
76
+ "G",
77
+ "H",
78
+ "I",
79
+ "J",
80
+ "K",
81
+ "L",
82
+ "M",
83
+ "N",
84
+ "O",
85
+ "P",
86
+ "Q",
87
+ "R",
88
+ "S",
89
+ "T",
90
+ "U",
91
+ "V",
92
+ "W",
93
+ "X",
94
+ "Y",
95
+ "Z",
96
+ "[",
97
+ "\\",
98
+ "]",
99
+ "^",
100
+ "_",
101
+ "`",
102
+ "a",
103
+ "b",
104
+ "c",
105
+ "d",
106
+ "e",
107
+ "f",
108
+ "g",
109
+ "h",
110
+ "i",
111
+ "j",
112
+ "k",
113
+ "l",
114
+ "m",
115
+ "n",
116
+ "o",
117
+ "p",
118
+ "q",
119
+ "r",
120
+ "s",
121
+ "t",
122
+ "u",
123
+ "v",
124
+ "w",
125
+ "x",
126
+ "y",
127
+ "z",
128
+ "{",
129
+ "|",
130
+ "}",
131
+ "~",
132
+ "\u007f",
133
+ "\u0080",
134
+ "\u0081",
135
+ "\u0082",
136
+ "\u0083",
137
+ "\u0084",
138
+ "\u0085",
139
+ "\u0086",
140
+ "\u0087",
141
+ "\u0088",
142
+ "\u0089",
143
+ "\u008a",
144
+ "\u008b",
145
+ "\u008c",
146
+ "\u008d",
147
+ "\u008e",
148
+ "\u008f",
149
+ "\u0090",
150
+ "\u0091",
151
+ "\u0092",
152
+ "\u0093",
153
+ "\u0094",
154
+ "\u0095",
155
+ "\u0096",
156
+ "\u0097",
157
+ "\u0098",
158
+ "\u0099",
159
+ "\u009a",
160
+ "\u009b",
161
+ "\u009c",
162
+ "\u009d",
163
+ "\u009e",
164
+ "\u009f",
165
+ "\u00a0",
166
+ "\u00a1",
167
+ "\u00a2",
168
+ "\u00a3",
169
+ "\u00a4",
170
+ "\u00a5",
171
+ "\u00a6",
172
+ "\u00a7",
173
+ "\u00a8",
174
+ "\u00a9",
175
+ "\u00aa",
176
+ "\u00ab",
177
+ "\u00ac",
178
+ "\u00ad",
179
+ "\u00ae",
180
+ "\u00af",
181
+ "\u00b0",
182
+ "\u00b1",
183
+ "\u00b2",
184
+ "\u00b3",
185
+ "\u00b4",
186
+ "\u00b5",
187
+ "\u00b6",
188
+ "\u00b7",
189
+ "\u00b8",
190
+ "\u00b9",
191
+ "\u00ba",
192
+ "\u00bb",
193
+ "\u00bc",
194
+ "\u00bd",
195
+ "\u00be",
196
+ "\u00bf",
197
+ "\u00c0",
198
+ "\u00c1",
199
+ "\u00c2",
200
+ "\u00c3",
201
+ "\u00c4",
202
+ "\u00c5",
203
+ "\u00c6",
204
+ "\u00c7",
205
+ "\u00c8",
206
+ "\u00c9",
207
+ "\u00ca",
208
+ "\u00cb",
209
+ "\u00cc",
210
+ "\u00cd",
211
+ "\u00ce",
212
+ "\u00cf",
213
+ "\u00d0",
214
+ "\u00d1",
215
+ "\u00d2",
216
+ "\u00d3",
217
+ "\u00d4",
218
+ "\u00d5",
219
+ "\u00d6",
220
+ "\u00d7",
221
+ "\u00d8",
222
+ "\u00d9",
223
+ "\u00da",
224
+ "\u00db",
225
+ "\u00dc",
226
+ "\u00dd",
227
+ "\u00de",
228
+ "\u00df",
229
+ "\u00e0",
230
+ "\u00e1",
231
+ "\u00e2",
232
+ "\u00e3",
233
+ "\u00e4",
234
+ "\u00e5",
235
+ "\u00e6",
236
+ "\u00e7",
237
+ "\u00e8",
238
+ "\u00e9",
239
+ "\u00ea",
240
+ "\u00eb",
241
+ "\u00ec",
242
+ "\u00ed",
243
+ "\u00ee",
244
+ "\u00ef",
245
+ "\u00f0",
246
+ "\u00f1",
247
+ "\u00f2",
248
+ "\u00f3",
249
+ "\u00f4",
250
+ "\u00f5",
251
+ "\u00f6",
252
+ "\u00f7",
253
+ "\u00f8",
254
+ "\u00f9",
255
+ "\u00fa",
256
+ "\u00fb",
257
+ "\u00fc",
258
+ "\u00fd",
259
+ "\u00fe",
260
+ "\u00ff",
261
+ "<extra_id_0>",
262
+ "<extra_id_1>",
263
+ "<extra_id_2>",
264
+ "<extra_id_3>",
265
+ "<extra_id_4>",
266
+ "<extra_id_5>",
267
+ "<extra_id_6>",
268
+ "<extra_id_7>",
269
+ "<extra_id_8>",
270
+ "<extra_id_9>",
271
+ "<extra_id_10>",
272
+ "<extra_id_11>",
273
+ "<extra_id_12>",
274
+ "<extra_id_13>",
275
+ "<extra_id_14>",
276
+ "<extra_id_15>",
277
+ "<extra_id_16>",
278
+ "<extra_id_17>",
279
+ "<extra_id_18>",
280
+ "<extra_id_19>",
281
+ "<extra_id_20>",
282
+ "<extra_id_21>",
283
+ "<extra_id_22>",
284
+ "<extra_id_23>",
285
+ "<extra_id_24>",
286
+ "<extra_id_25>",
287
+ "<extra_id_26>",
288
+ "<extra_id_27>",
289
+ "<extra_id_28>",
290
+ "<extra_id_29>",
291
+ "<extra_id_30>",
292
+ "<extra_id_31>",
293
+ "<extra_id_32>",
294
+ "<extra_id_33>",
295
+ "<extra_id_34>",
296
+ "<extra_id_35>",
297
+ "<extra_id_36>",
298
+ "<extra_id_37>",
299
+ "<extra_id_38>",
300
+ "<extra_id_39>",
301
+ "<extra_id_40>",
302
+ "<extra_id_41>",
303
+ "<extra_id_42>",
304
+ "<extra_id_43>",
305
+ "<extra_id_44>",
306
+ "<extra_id_45>",
307
+ "<extra_id_46>",
308
+ "<extra_id_47>",
309
+ "<extra_id_48>",
310
+ "<extra_id_49>",
311
+ "<extra_id_50>",
312
+ "<extra_id_51>",
313
+ "<extra_id_52>",
314
+ "<extra_id_53>",
315
+ "<extra_id_54>",
316
+ "<extra_id_55>",
317
+ "<extra_id_56>",
318
+ "<extra_id_57>",
319
+ "<extra_id_58>",
320
+ "<extra_id_59>",
321
+ "<extra_id_60>",
322
+ "<extra_id_61>",
323
+ "<extra_id_62>",
324
+ "<extra_id_63>",
325
+ "<extra_id_64>",
326
+ "<extra_id_65>",
327
+ "<extra_id_66>",
328
+ "<extra_id_67>",
329
+ "<extra_id_68>",
330
+ "<extra_id_69>",
331
+ "<extra_id_70>",
332
+ "<extra_id_71>",
333
+ "<extra_id_72>",
334
+ "<extra_id_73>",
335
+ "<extra_id_74>",
336
+ "<extra_id_75>",
337
+ "<extra_id_76>",
338
+ "<extra_id_77>",
339
+ "<extra_id_78>",
340
+ "<extra_id_79>",
341
+ "<extra_id_80>",
342
+ "<extra_id_81>",
343
+ "<extra_id_82>",
344
+ "<extra_id_83>",
345
+ "<extra_id_84>",
346
+ "<extra_id_85>",
347
+ "<extra_id_86>",
348
+ "<extra_id_87>",
349
+ "<extra_id_88>",
350
+ "<extra_id_89>",
351
+ "<extra_id_90>",
352
+ "<extra_id_91>",
353
+ "<extra_id_92>",
354
+ "<extra_id_93>",
355
+ "<extra_id_94>",
356
+ "<extra_id_95>",
357
+ "<extra_id_96>",
358
+ "<extra_id_97>",
359
+ "<extra_id_98>",
360
+ "<extra_id_99>",
361
+ "<extra_id_100>",
362
+ "<extra_id_101>",
363
+ "<extra_id_102>",
364
+ "<extra_id_103>",
365
+ "<extra_id_104>",
366
+ "<extra_id_105>",
367
+ "<extra_id_106>",
368
+ "<extra_id_107>",
369
+ "<extra_id_108>",
370
+ "<extra_id_109>",
371
+ "<extra_id_110>",
372
+ "<extra_id_111>",
373
+ "<extra_id_112>",
374
+ "<extra_id_113>",
375
+ "<extra_id_114>",
376
+ "<extra_id_115>",
377
+ "<extra_id_116>",
378
+ "<extra_id_117>",
379
+ "<extra_id_118>",
380
+ "<extra_id_119>",
381
+ "<extra_id_120>",
382
+ "<extra_id_121>",
383
+ "<extra_id_122>",
384
+ "<extra_id_123>",
385
+ "<extra_id_124>"
386
+ ]