galkinv42 commited on
Commit
455cbeb
·
verified ·
1 Parent(s): c19ab85

Upload tokenizer

Browse files
Files changed (2) hide show
  1. tokenizer.json +0 -0
  2. tokenizer_config.json +26 -0
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "clean_up_tokenization_spaces": true,
4
+ "cls_token": "[CLS]",
5
+ "extra_special_tokens": [
6
+ "<|padding|>",
7
+ "<|endoftext|>",
8
+ "[UNK]",
9
+ "[CLS]",
10
+ "[SEP]",
11
+ "[PAD]",
12
+ "[MASK]"
13
+ ],
14
+ "is_local": false,
15
+ "mask_token": "[MASK]",
16
+ "model_input_names": [
17
+ "input_ids",
18
+ "attention_mask"
19
+ ],
20
+ "model_max_length": 1000000000000000019884624838656,
21
+ "model_specific_special_tokens": {},
22
+ "pad_token": "[PAD]",
23
+ "sep_token": "[SEP]",
24
+ "tokenizer_class": "TokenizersBackend",
25
+ "unk_token": "[UNK]"
26
+ }