RichardErkhov commited on
Commit
4f70f89
1 Parent(s): 4cd2f81

uploaded model

Browse files
Files changed (1) hide show
  1. tokenizer_config.json +42 -0
tokenizer_config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_prefix_space": true,
4
+ "added_tokens_decoder": {
5
+ "0": {
6
+ "content": "<s>",
7
+ "lstrip": false,
8
+ "normalized": true,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "1": {
14
+ "content": "</s>",
15
+ "lstrip": false,
16
+ "normalized": true,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "<unk>",
23
+ "lstrip": false,
24
+ "normalized": true,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ }
29
+ },
30
+ "bos_token": "<s>",
31
+ "clean_up_tokenization_spaces": true,
32
+ "eos_token": "</s>",
33
+ "errors": "replace",
34
+ "max_length": 2048,
35
+ "model_max_length": 2048,
36
+ "pad_to_multiple_of": null,
37
+ "pad_token": "<unk>",
38
+ "pad_token_type_id": 0,
39
+ "padding_side": "right",
40
+ "tokenizer_class": "GPT2Tokenizer",
41
+ "unk_token": "<unk>"
42
+ }