sanchit-gandhi commited on
Commit
c65c43f
·
1 Parent(s): 8fa00cf

Upload tokenizer

Browse files
Files changed (3) hide show
  1. special_tokens_map.json +4 -0
  2. tokenizer_config.json +12 -0
  3. vocab.json +29 -0
special_tokens_map.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "pad_token": "|",
3
+ "unk_token": "<unk>"
4
+ }
tokenizer_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_blank": true,
3
+ "clean_up_tokenization_spaces": true,
4
+ "is_uroman": false,
5
+ "language": "gog",
6
+ "model_max_length": 1000000000000000019884624838656,
7
+ "normalize": true,
8
+ "pad_token": "|",
9
+ "phonemize": false,
10
+ "tokenizer_class": "VitsTokenizer",
11
+ "unk_token": "<unk>"
12
+ }
vocab.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ " ": 26,
3
+ "'": 23,
4
+ "-": 25,
5
+ "a": 1,
6
+ "b": 18,
7
+ "c": 17,
8
+ "d": 21,
9
+ "e": 7,
10
+ "f": 24,
11
+ "g": 13,
12
+ "h": 12,
13
+ "i": 3,
14
+ "j": 20,
15
+ "k": 11,
16
+ "l": 8,
17
+ "m": 9,
18
+ "n": 4,
19
+ "o": 5,
20
+ "p": 22,
21
+ "s": 15,
22
+ "t": 16,
23
+ "u": 2,
24
+ "v": 19,
25
+ "w": 6,
26
+ "y": 10,
27
+ "z": 14,
28
+ "|": 0
29
+ }