Eiki commited on
Commit
7252eed
1 Parent(s): 9c35440

Upload tokenizer

Browse files
Files changed (3) hide show
  1. special_tokens_map.json +12 -0
  2. tokenizer.json +0 -0
  3. tokenizer_config.json +10 -0
special_tokens_map.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "xNeed",
4
+ "xEffect",
5
+ "xIntent",
6
+ "xReact"
7
+ ],
8
+ "bos_token": "<s>",
9
+ "eos_token": "</s>",
10
+ "pad_token": "</s>",
11
+ "unk_token": "<unk>"
12
+ }
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": "<s>",
3
+ "clean_up_tokenization_spaces": true,
4
+ "eos_token": "</s>",
5
+ "model_max_length": 1024,
6
+ "padding_side": "right",
7
+ "tokenizer_class": "PreTrainedTokenizerFast",
8
+ "truncation_side": "right",
9
+ "unk_token": "<unk>"
10
+ }