EzraWilliam
commited on
Commit
•
68c8760
1
Parent(s):
e56b1f2
Upload tokenizer
Browse files- README.md +6 -6
- added_tokens.json +4 -0
- special_tokens_map.json +6 -0
- tokenizer_config.json +47 -0
- vocab.json +44 -0
README.md
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
---
|
2 |
-
license: apache-2.0
|
3 |
base_model: facebook/wav2vec2-xls-r-300m
|
4 |
-
tags:
|
5 |
-
- generated_from_trainer
|
6 |
datasets:
|
7 |
- common_voice_13_0
|
|
|
8 |
metrics:
|
9 |
- wer
|
|
|
|
|
10 |
model-index:
|
11 |
- name: XLS-R-demo-google-colab-Ezra_William_Prod_1
|
12 |
results:
|
13 |
- task:
|
14 |
-
name: Automatic Speech Recognition
|
15 |
type: automatic-speech-recognition
|
|
|
16 |
dataset:
|
17 |
name: common_voice_13_0
|
18 |
type: common_voice_13_0
|
@@ -20,9 +20,9 @@ model-index:
|
|
20 |
split: validation
|
21 |
args: id
|
22 |
metrics:
|
23 |
-
-
|
24 |
-
type: wer
|
25 |
value: 0.5410194506445588
|
|
|
26 |
---
|
27 |
|
28 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
1 |
---
|
|
|
2 |
base_model: facebook/wav2vec2-xls-r-300m
|
|
|
|
|
3 |
datasets:
|
4 |
- common_voice_13_0
|
5 |
+
license: apache-2.0
|
6 |
metrics:
|
7 |
- wer
|
8 |
+
tags:
|
9 |
+
- generated_from_trainer
|
10 |
model-index:
|
11 |
- name: XLS-R-demo-google-colab-Ezra_William_Prod_1
|
12 |
results:
|
13 |
- task:
|
|
|
14 |
type: automatic-speech-recognition
|
15 |
+
name: Automatic Speech Recognition
|
16 |
dataset:
|
17 |
name: common_voice_13_0
|
18 |
type: common_voice_13_0
|
|
|
20 |
split: validation
|
21 |
args: id
|
22 |
metrics:
|
23 |
+
- type: wer
|
|
|
24 |
value: 0.5410194506445588
|
25 |
+
name: Wer
|
26 |
---
|
27 |
|
28 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
added_tokens.json
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</s>": 43,
|
3 |
+
"<s>": 42
|
4 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "<s>",
|
3 |
+
"eos_token": "</s>",
|
4 |
+
"pad_token": "[PAD]",
|
5 |
+
"unk_token": "[UNK]"
|
6 |
+
}
|
tokenizer_config.json
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"40": {
|
4 |
+
"content": "[UNK]",
|
5 |
+
"lstrip": true,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": true,
|
8 |
+
"single_word": false,
|
9 |
+
"special": false
|
10 |
+
},
|
11 |
+
"41": {
|
12 |
+
"content": "[PAD]",
|
13 |
+
"lstrip": true,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": true,
|
16 |
+
"single_word": false,
|
17 |
+
"special": false
|
18 |
+
},
|
19 |
+
"42": {
|
20 |
+
"content": "<s>",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"43": {
|
28 |
+
"content": "</s>",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
}
|
35 |
+
},
|
36 |
+
"bos_token": "<s>",
|
37 |
+
"clean_up_tokenization_spaces": true,
|
38 |
+
"do_lower_case": false,
|
39 |
+
"eos_token": "</s>",
|
40 |
+
"model_max_length": 1000000000000000019884624838656,
|
41 |
+
"pad_token": "[PAD]",
|
42 |
+
"replace_word_delimiter_char": " ",
|
43 |
+
"target_lang": null,
|
44 |
+
"tokenizer_class": "Wav2Vec2CTCTokenizer",
|
45 |
+
"unk_token": "[UNK]",
|
46 |
+
"word_delimiter_token": "|"
|
47 |
+
}
|
vocab.json
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"(": 1,
|
3 |
+
")": 2,
|
4 |
+
"[": 3,
|
5 |
+
"[PAD]": 41,
|
6 |
+
"[UNK]": 40,
|
7 |
+
"\\": 4,
|
8 |
+
"a": 5,
|
9 |
+
"b": 6,
|
10 |
+
"c": 7,
|
11 |
+
"d": 8,
|
12 |
+
"e": 9,
|
13 |
+
"f": 10,
|
14 |
+
"g": 11,
|
15 |
+
"h": 12,
|
16 |
+
"i": 13,
|
17 |
+
"j": 14,
|
18 |
+
"k": 15,
|
19 |
+
"l": 16,
|
20 |
+
"m": 17,
|
21 |
+
"n": 18,
|
22 |
+
"o": 19,
|
23 |
+
"p": 20,
|
24 |
+
"q": 21,
|
25 |
+
"r": 22,
|
26 |
+
"s": 23,
|
27 |
+
"t": 24,
|
28 |
+
"u": 25,
|
29 |
+
"v": 26,
|
30 |
+
"w": 27,
|
31 |
+
"x": 28,
|
32 |
+
"y": 29,
|
33 |
+
"z": 30,
|
34 |
+
"|": 0,
|
35 |
+
"á": 31,
|
36 |
+
"é": 32,
|
37 |
+
"ł": 33,
|
38 |
+
"ń": 34,
|
39 |
+
"ō": 35,
|
40 |
+
"–": 36,
|
41 |
+
"—": 37,
|
42 |
+
"’": 38,
|
43 |
+
"!": 39
|
44 |
+
}
|