nsanghi commited on
Commit
1daf846
·
1 Parent(s): e13e0fa

Upload tokenizer

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