qwenzoo commited on
Commit
ba278d8
1 Parent(s): 0e8d842

Upload tokenizer

Browse files
special_tokens_map.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "eos_token": "</s>",
3
+ "pad_token": "<pad>"
4
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "eos_token": "</s>",
4
+ "model_max_length": 2048,
5
+ "pad_token": "<pad>",
6
+ "tokenizer_class": "PreTrainedTokenizerFast"
7
+ }