kmchiti commited on
Commit
5086f63
·
verified ·
1 Parent(s): 5d5e3e3

Upload tokenizer

Browse files
Files changed (3) hide show
  1. special_tokens_map.json +10 -0
  2. tokenizer.json +0 -0
  3. tokenizer_config.json +36 -0
special_tokens_map.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<eos>",
4
+ "[PAD]",
5
+ "<bos>"
6
+ ],
7
+ "bos_token": "<bos>",
8
+ "eos_token": "<eos>",
9
+ "pad_token": "[PAD]"
10
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "30000": {
4
+ "content": "<eos>",
5
+ "lstrip": true,
6
+ "normalized": false,
7
+ "rstrip": true,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "30001": {
12
+ "content": "[PAD]",
13
+ "lstrip": true,
14
+ "normalized": false,
15
+ "rstrip": true,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "30002": {
20
+ "content": "<bos>",
21
+ "lstrip": true,
22
+ "normalized": false,
23
+ "rstrip": true,
24
+ "single_word": false,
25
+ "special": true
26
+ }
27
+ },
28
+ "additional_special_tokens": [
29
+ "<eos>",
30
+ "[PAD]",
31
+ "<bos>"
32
+ ],
33
+ "clean_up_tokenization_spaces": true,
34
+ "model_max_length": 1000000000000000019884624838656,
35
+ "tokenizer_class": "PreTrainedTokenizerFast"
36
+ }