yuyijiong commited on
Commit
546c355
1 Parent(s): 8cc3bcd

Upload tokenizer

Browse files
Files changed (3) hide show
  1. special_tokens_map.json +5 -0
  2. spiece.model +3 -0
  3. tokenizer_config.json +14 -0
special_tokens_map.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "eos_token": "</s>",
3
+ "pad_token": "<pad>",
4
+ "unk_token": "<unk>"
5
+ }
spiece.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c65feffa65ff0378759778193852083d23349cb1b40c906e9463a12f8076ff32
3
+ size 680811
tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [],
3
+ "clean_up_tokenization_spaces": true,
4
+ "do_lower_case": true,
5
+ "eos_token": "</s>",
6
+ "extra_ids": 0,
7
+ "max_length": 1024,
8
+ "model_max_length": 1000000000000000019884624838656,
9
+ "pad_token": "<pad>",
10
+ "sp_model_kwargs": {},
11
+ "tokenizer_class": "T5Tokenizer",
12
+ "truncation": true,
13
+ "unk_token": "<unk>"
14
+ }