andreaskoepf commited on
Commit
bf3e7f7
1 Parent(s): f5d8a73

Upload tokenizer

Browse files
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ ">>MIDDLE<<",
4
+ "<|prompter|>",
5
+ ">>ABSTRACT<<",
6
+ ">>DOMAIN<<",
7
+ "<|prefix_begin|>",
8
+ "<|assistant|>",
9
+ ">>SUMMARY<<",
10
+ "<|prefix_end|>",
11
+ ">>INTRODUCTION<<",
12
+ ">>TITLE<<",
13
+ ">>PREFIX<<",
14
+ ">>SUFFIX<<",
15
+ ">>ANSWER<<",
16
+ "<|system|>",
17
+ ">>QUESTION<<",
18
+ ">>COMMENT<<"
19
+ ],
20
+ "eos_token": "<|endoftext|>",
21
+ "pad_token": "<|endoftext|>",
22
+ "sep_token": "<|endoftext|>"
23
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "clean_up_tokenization_spaces": true,
4
+ "eos_token": "<|endoftext|>",
5
+ "model_max_length": 2048,
6
+ "special_tokens_map_file": null,
7
+ "tokenizer_class": "PreTrainedTokenizerFast"
8
+ }