DantheMan124 commited on
Commit
db09ba7
·
verified ·
1 Parent(s): fb6e0f5

Upload tokenizer

Browse files
Files changed (2) hide show
  1. tokenizer.json +0 -0
  2. tokenizer_config.json +28 -0
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": true,
3
+ "backend": "tokenizers",
4
+ "bos_token": "[CLS]",
5
+ "cls_token": "[CLS]",
6
+ "do_lower_case": false,
7
+ "eos_token": "[SEP]",
8
+ "extra_special_tokens": [
9
+ "[PAD]",
10
+ "[CLS]",
11
+ "[SEP]"
12
+ ],
13
+ "is_local": true,
14
+ "local_files_only": false,
15
+ "mask_token": "[MASK]",
16
+ "max_length": 512,
17
+ "model_max_length": 1000000000000000019884624838656,
18
+ "pad_token": "[PAD]",
19
+ "sep_token": "[SEP]",
20
+ "split_by_punct": false,
21
+ "stride": 0,
22
+ "tokenizer_class": "DebertaV2Tokenizer",
23
+ "truncation_side": "right",
24
+ "truncation_strategy": "longest_first",
25
+ "unk_id": 3,
26
+ "unk_token": "[UNK]",
27
+ "vocab_type": "spm"
28
+ }