AigizK commited on
Commit
e6f2ad2
1 Parent(s): 9515ed0

Upload tokenizer

Browse files
README.md CHANGED
@@ -1,18 +1,18 @@
1
  ---
2
- license: cc-by-nc-4.0
3
  base_model: utter-project/mHuBERT-147
4
- tags:
5
- - generated_from_trainer
6
  datasets:
7
  - common_voice_17_0
 
8
  metrics:
9
  - wer
 
 
10
  model-index:
11
  - name: training
12
  results:
13
  - task:
14
- name: Automatic Speech Recognition
15
  type: automatic-speech-recognition
 
16
  dataset:
17
  name: common_voice_17_0
18
  type: common_voice_17_0
@@ -20,9 +20,9 @@ model-index:
20
  split: test
21
  args: ba
22
  metrics:
23
- - name: Wer
24
- type: wer
25
  value: 0.12020672995899107
 
26
  ---
27
 
28
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
 
1
  ---
 
2
  base_model: utter-project/mHuBERT-147
 
 
3
  datasets:
4
  - common_voice_17_0
5
+ license: cc-by-nc-4.0
6
  metrics:
7
  - wer
8
+ tags:
9
+ - generated_from_trainer
10
  model-index:
11
  - name: training
12
  results:
13
  - task:
 
14
  type: automatic-speech-recognition
15
+ name: Automatic Speech Recognition
16
  dataset:
17
  name: common_voice_17_0
18
  type: common_voice_17_0
 
20
  split: test
21
  args: ba
22
  metrics:
23
+ - type: wer
 
24
  value: 0.12020672995899107
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>": 40,
3
+ "<s>": 39
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
+ "37": {
4
+ "content": "[UNK]",
5
+ "lstrip": true,
6
+ "normalized": false,
7
+ "rstrip": true,
8
+ "single_word": false,
9
+ "special": false
10
+ },
11
+ "38": {
12
+ "content": "[PAD]",
13
+ "lstrip": true,
14
+ "normalized": false,
15
+ "rstrip": true,
16
+ "single_word": false,
17
+ "special": false
18
+ },
19
+ "39": {
20
+ "content": "<s>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "40": {
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,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "[PAD]": 38,
3
+ "[UNK]": 37,
4
+ "|": 0,
5
+ "а": 1,
6
+ "б": 2,
7
+ "в": 3,
8
+ "г": 4,
9
+ "д": 5,
10
+ "ж": 6,
11
+ "з": 7,
12
+ "и": 8,
13
+ "й": 9,
14
+ "к": 10,
15
+ "л": 11,
16
+ "м": 12,
17
+ "н": 13,
18
+ "о": 14,
19
+ "п": 15,
20
+ "р": 16,
21
+ "с": 17,
22
+ "т": 18,
23
+ "у": 19,
24
+ "ф": 20,
25
+ "х": 21,
26
+ "ц": 22,
27
+ "ч": 23,
28
+ "ш": 24,
29
+ "щ": 25,
30
+ "ы": 26,
31
+ "э": 27,
32
+ "ғ": 28,
33
+ "ҙ": 29,
34
+ "ҡ": 30,
35
+ "ң": 31,
36
+ "ҫ": 32,
37
+ "ү": 33,
38
+ "һ": 34,
39
+ "ә": 35,
40
+ "ө": 36
41
+ }