yhn112 commited on
Commit
c4c0478
1 Parent(s): b96709b

Create new file

Browse files
Files changed (1) hide show
  1. tokenizer/config.json +19 -0
tokenizer/config.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "[CLS]",
3
+ "eos_token": "[SEP]",
4
+ "unk_token": "<unk>",
5
+ "sep_token": "[SEP]",
6
+ "pad_token": "<pad>",
7
+ "cls_token": "[CLS]",
8
+ "mask_token": {
9
+ "content": "[MASK]",
10
+ "single_word": false,
11
+ "lstrip": true,
12
+ "rstrip": false,
13
+ "normalized": false
14
+ },
15
+ "max_length": 512,
16
+ "special_tokens_map_file": null,
17
+ "name_or_path": null,
18
+ "model_type": "albert"
19
+ }