sanchit-gandhi commited on
Commit
04154a6
·
1 Parent(s): a180b31

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": "lex",
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
+ " ": 23,
3
+ "'": 18,
4
+ "-": 25,
5
+ "_": 0,
6
+ "a": 4,
7
+ "b": 9,
8
+ "c": 6,
9
+ "d": 26,
10
+ "e": 2,
11
+ "f": 21,
12
+ "g": 22,
13
+ "h": 16,
14
+ "i": 3,
15
+ "j": 12,
16
+ "k": 11,
17
+ "l": 1,
18
+ "m": 10,
19
+ "n": 15,
20
+ "o": 5,
21
+ "p": 13,
22
+ "r": 20,
23
+ "s": 14,
24
+ "t": 7,
25
+ "u": 17,
26
+ "w": 8,
27
+ "y": 24,
28
+ "z": 19
29
+ }