jonatasgrosman
commited on
Commit
•
642822e
1
Parent(s):
90bec53
jonatasgrosman/exp_w2v2t_th_hubert_s817
Browse files- .gitattributes +2 -0
- README.md +17 -0
- config.json +83 -0
- preprocessor_config.json +10 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- tokenizer_config.json +1 -0
- transcriptions_cv7_test.json +3 -0
- transcriptions_cv7_validation.json +3 -0
- vocab.json +1 -0
.gitattributes
CHANGED
@@ -25,3 +25,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
25 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
26 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
25 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
26 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
28 |
+
transcriptions_cv7_test.json filter=lfs diff=lfs merge=lfs -text
|
29 |
+
transcriptions_cv7_validation.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- th
|
4 |
+
license: apache-2.0
|
5 |
+
tags:
|
6 |
+
- automatic-speech-recognition
|
7 |
+
- th
|
8 |
+
datasets:
|
9 |
+
- mozilla-foundation/common_voice_7_0
|
10 |
+
---
|
11 |
+
# exp_w2v2t_th_hubert_s817
|
12 |
+
|
13 |
+
Fine-tuned [facebook/hubert-large-ll60k](https://huggingface.co/facebook/hubert-large-ll60k) for speech recognition on Thai using the train split of [Common Voice 7.0](https://huggingface.co/datasets/mozilla-foundation/common_voice_7_0).
|
14 |
+
When using this model, make sure that your speech input is sampled at 16kHz.
|
15 |
+
|
16 |
+
This model has been fine-tuned by the [HuggingSound](https://github.com/jonatasgrosman/huggingsound) tool.
|
17 |
+
|
config.json
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "facebook/hubert-large-ll60k",
|
3 |
+
"activation_dropout": 0.05,
|
4 |
+
"apply_spec_augment": true,
|
5 |
+
"architectures": [
|
6 |
+
"HubertForCTC"
|
7 |
+
],
|
8 |
+
"attention_dropout": 0.05,
|
9 |
+
"bos_token_id": 1,
|
10 |
+
"classifier_proj_size": 256,
|
11 |
+
"conv_bias": true,
|
12 |
+
"conv_dim": [
|
13 |
+
512,
|
14 |
+
512,
|
15 |
+
512,
|
16 |
+
512,
|
17 |
+
512,
|
18 |
+
512,
|
19 |
+
512
|
20 |
+
],
|
21 |
+
"conv_kernel": [
|
22 |
+
10,
|
23 |
+
3,
|
24 |
+
3,
|
25 |
+
3,
|
26 |
+
3,
|
27 |
+
2,
|
28 |
+
2
|
29 |
+
],
|
30 |
+
"conv_stride": [
|
31 |
+
5,
|
32 |
+
2,
|
33 |
+
2,
|
34 |
+
2,
|
35 |
+
2,
|
36 |
+
2,
|
37 |
+
2
|
38 |
+
],
|
39 |
+
"ctc_loss_reduction": "sum",
|
40 |
+
"ctc_zero_infinity": false,
|
41 |
+
"do_stable_layer_norm": true,
|
42 |
+
"eos_token_id": 2,
|
43 |
+
"feat_extract_activation": "gelu",
|
44 |
+
"feat_extract_dropout": 0.0,
|
45 |
+
"feat_extract_norm": "layer",
|
46 |
+
"feat_proj_dropout": 0.05,
|
47 |
+
"feat_proj_layer_norm": true,
|
48 |
+
"final_dropout": 0.05,
|
49 |
+
"gradient_checkpointing": false,
|
50 |
+
"hidden_act": "gelu",
|
51 |
+
"hidden_dropout": 0.05,
|
52 |
+
"hidden_size": 1024,
|
53 |
+
"initializer_range": 0.02,
|
54 |
+
"intermediate_size": 4096,
|
55 |
+
"layer_norm_eps": 1e-05,
|
56 |
+
"layerdrop": 0.05,
|
57 |
+
"mask_channel_length": 10,
|
58 |
+
"mask_channel_min_space": 1,
|
59 |
+
"mask_channel_other": 0.0,
|
60 |
+
"mask_channel_prob": 0.0,
|
61 |
+
"mask_channel_selection": "static",
|
62 |
+
"mask_feature_length": 10,
|
63 |
+
"mask_feature_min_masks": 0,
|
64 |
+
"mask_feature_prob": 0.0,
|
65 |
+
"mask_time_length": 10,
|
66 |
+
"mask_time_min_masks": 2,
|
67 |
+
"mask_time_min_space": 1,
|
68 |
+
"mask_time_other": 0.0,
|
69 |
+
"mask_time_prob": 0.05,
|
70 |
+
"mask_time_selection": "static",
|
71 |
+
"model_type": "hubert",
|
72 |
+
"num_attention_heads": 16,
|
73 |
+
"num_conv_pos_embedding_groups": 16,
|
74 |
+
"num_conv_pos_embeddings": 128,
|
75 |
+
"num_feat_extract_layers": 7,
|
76 |
+
"num_hidden_layers": 24,
|
77 |
+
"pad_token_id": 0,
|
78 |
+
"tokenizer_class": "Wav2Vec2CTCTokenizer",
|
79 |
+
"torch_dtype": "float32",
|
80 |
+
"transformers_version": "4.16.0.dev0",
|
81 |
+
"use_weighted_layer_sum": false,
|
82 |
+
"vocab_size": 60
|
83 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"feature_extractor_type": "Wav2Vec2FeatureExtractor",
|
4 |
+
"feature_size": 1,
|
5 |
+
"padding_side": "right",
|
6 |
+
"padding_value": 0,
|
7 |
+
"processor_class": "Wav2Vec2Processor",
|
8 |
+
"return_attention_mask": true,
|
9 |
+
"sampling_rate": 16000
|
10 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d3b4461d7712ebb388d8b521e2f2d3df333e14ff55ddf75482a08c7d3a66d0e7
|
3 |
+
size 1262168113
|
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": "|", "special_tokens_map_file": null, "tokenizer_file": null, "name_or_path": "/tmp/tmpjxv3vp_j", "tokenizer_class": "Wav2Vec2CTCTokenizer", "processor_class": "Wav2Vec2Processor"}
|
transcriptions_cv7_test.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3d70cdfffa9c395f2333a4f6c730b1c7a736f60983b39556bad2474f2471c0e8
|
3 |
+
size 28308967
|
transcriptions_cv7_validation.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3504134504e3c187ff4b861d6b2a7d5a559dfd0e72864e1ec2fcae8aa1aef55b
|
3 |
+
size 28712387
|
vocab.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"<pad>": 0, "<s>": 1, "</s>": 2, "<unk>": 3, "|": 4, "'": 5, "-": 6, "ก": 7, "ข": 8, "ค": 9, "ฆ": 10, "ง": 11, "จ": 12, "ฉ": 13, "ช": 14, "ซ": 15, "ฌ": 16, "ญ": 17, "ฎ": 18, "ฏ": 19, "ฐ": 20, "ฑ": 21, "ฒ": 22, "ณ": 23, "ด": 24, "ต": 25, "ถ": 26, "ท": 27, "ธ": 28, "น": 29, "บ": 30, "ป": 31, "ผ": 32, "ฝ": 33, "พ": 34, "ฟ": 35, "ภ": 36, "ม": 37, "ย": 38, "ร": 39, "ฤ": 40, "ล": 41, "ว": 42, "ศ": 43, "ษ": 44, "ส": 45, "ห": 46, "ฬ": 47, "อ": 48, "ฮ": 49, "ะ": 50, "า": 51, "ำ": 52, "เ": 53, "แ": 54, "โ": 55, "ใ": 56, "ไ": 57, "ๅ": 58, "ๆ": 59}
|