niclas commited on
Commit
f3d6d91
·
1 Parent(s): 68cfe6c

add tokenizer

Browse files
Files changed (4) hide show
  1. .gitignore +1 -0
  2. special_tokens_map.json +1 -0
  3. tokenizer_config.json +1 -0
  4. vocab.json +1 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"bos_token": "<s>", "eos_token": "</s>", "unk_token": "[UNK]", "pad_token": "[PAD]"}
tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"unk_token": "[UNK]", "bos_token": "<s>", "eos_token": "</s>", "pad_token": "[PAD]", "do_lower_case": false, "word_delimiter_token": "|", "tokenizer_class": "Wav2Vec2CTCTokenizer"}
vocab.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"i": 0, "x": 1, "w": 2, "t": 4, "k": 5, "r": 6, "u": 7, "g": 8, "p": 9, "v": 10, "b": 11, "l": 12, "s": 13, "z": 14, "n": 15, "d": 16, "o": 17, "h": 18, "j": 19, "c": 20, "q": 21, "a": 22, "y": 23, "m": 24, "e": 25, "f": 26, "'": 27, "|": 3, "[UNK]": 28, "[PAD]": 29}