wsntxxn commited on
Commit
1a9a647
1 Parent(s): 5f8ff8b

Upload tokenizer

Browse files
special_tokens_map.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<start>",
4
+ "<end>"
5
+ ],
6
+ "bos_token": "<start>",
7
+ "eos_token": "<end>",
8
+ "unk_token": "<unk>"
9
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<start>",
3
+ "bos_token_id": 1,
4
+ "clean_up_tokenization_spaces": true,
5
+ "eos_token": "<end>",
6
+ "eos_token_id": 2,
7
+ "model_max_length": 1000000000000000019884624838656,
8
+ "tokenizer_class": "PreTrainedTokenizerFast",
9
+ "unk_token": "<unk>"
10
+ }