gonzalobenegas commited on
Commit
4fe2b29
1 Parent(s): 3828811

Upload tokenizer

Browse files
Files changed (3) hide show
  1. special_tokens_map.json +16 -0
  2. tokenizer.json +51 -0
  3. tokenizer_config.json +26 -0
special_tokens_map.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "pad_token": {
3
+ "content": "[PAD]",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "unk_token": {
10
+ "content": "[UNK]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ }
16
+ }
tokenizer.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.0",
3
+ "truncation": null,
4
+ "padding": null,
5
+ "added_tokens": [
6
+ {
7
+ "id": 0,
8
+ "content": "[PAD]",
9
+ "single_word": false,
10
+ "lstrip": false,
11
+ "rstrip": false,
12
+ "normalized": false,
13
+ "special": true
14
+ },
15
+ {
16
+ "id": 1,
17
+ "content": "[UNK]",
18
+ "single_word": false,
19
+ "lstrip": false,
20
+ "rstrip": false,
21
+ "normalized": false,
22
+ "special": true
23
+ }
24
+ ],
25
+ "normalizer": {
26
+ "type": "Lowercase"
27
+ },
28
+ "pre_tokenizer": {
29
+ "type": "Whitespace"
30
+ },
31
+ "post_processor": null,
32
+ "decoder": null,
33
+ "model": {
34
+ "type": "BPE",
35
+ "dropout": null,
36
+ "unk_token": "[UNK]",
37
+ "continuing_subword_prefix": null,
38
+ "end_of_word_suffix": null,
39
+ "fuse_unk": false,
40
+ "byte_fallback": false,
41
+ "vocab": {
42
+ "[PAD]": 0,
43
+ "[UNK]": 1,
44
+ "a": 2,
45
+ "c": 3,
46
+ "g": 4,
47
+ "t": 5
48
+ },
49
+ "merges": []
50
+ }
51
+ }
tokenizer_config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ }
19
+ },
20
+ "clean_up_tokenization_spaces": true,
21
+ "model_max_length": 1000000000000000019884624838656,
22
+ "pad_token": "[PAD]",
23
+ "padding_side": "left",
24
+ "tokenizer_class": "PreTrainedTokenizerFast",
25
+ "unk_token": "[UNK]"
26
+ }