slplab commited on
Commit
62451b6
ยท
1 Parent(s): 34dee2f

Initial commit for wav2vec2-xls-r-300m pronunciation model

Browse files
config.json ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/wav2vec2-xls-r-300m",
3
+ "activation_dropout": 0.0,
4
+ "adapter_attn_dim": null,
5
+ "adapter_kernel_size": 3,
6
+ "adapter_stride": 2,
7
+ "add_adapter": false,
8
+ "apply_spec_augment": true,
9
+ "architectures": [
10
+ "Wav2Vec2ForCTC"
11
+ ],
12
+ "attention_dropout": 0.1,
13
+ "bos_token_id": 1,
14
+ "classifier_proj_size": 256,
15
+ "codevector_dim": 768,
16
+ "contrastive_logits_temperature": 0.1,
17
+ "conv_bias": true,
18
+ "conv_dim": [
19
+ 512,
20
+ 512,
21
+ 512,
22
+ 512,
23
+ 512,
24
+ 512,
25
+ 512
26
+ ],
27
+ "conv_kernel": [
28
+ 10,
29
+ 3,
30
+ 3,
31
+ 3,
32
+ 3,
33
+ 2,
34
+ 2
35
+ ],
36
+ "conv_stride": [
37
+ 5,
38
+ 2,
39
+ 2,
40
+ 2,
41
+ 2,
42
+ 2,
43
+ 2
44
+ ],
45
+ "ctc_loss_reduction": "mean",
46
+ "ctc_zero_infinity": false,
47
+ "diversity_loss_weight": 0.1,
48
+ "do_stable_layer_norm": true,
49
+ "eos_token_id": 2,
50
+ "feat_extract_activation": "gelu",
51
+ "feat_extract_dropout": 0.0,
52
+ "feat_extract_norm": "layer",
53
+ "feat_proj_dropout": 0.1,
54
+ "feat_quantizer_dropout": 0.0,
55
+ "final_dropout": 0.0,
56
+ "gradient_checkpointing": false,
57
+ "hidden_act": "gelu",
58
+ "hidden_dropout": 0.1,
59
+ "hidden_size": 1024,
60
+ "initializer_range": 0.02,
61
+ "intermediate_size": 4096,
62
+ "layer_norm_eps": 1e-05,
63
+ "layerdrop": 0.1,
64
+ "mask_feature_length": 10,
65
+ "mask_feature_min_masks": 0,
66
+ "mask_feature_prob": 0.0,
67
+ "mask_time_length": 10,
68
+ "mask_time_min_masks": 2,
69
+ "mask_time_prob": 0.075,
70
+ "model_type": "wav2vec2",
71
+ "num_adapter_layers": 3,
72
+ "num_attention_heads": 16,
73
+ "num_codevector_groups": 2,
74
+ "num_codevectors_per_group": 320,
75
+ "num_conv_pos_embedding_groups": 16,
76
+ "num_conv_pos_embeddings": 128,
77
+ "num_feat_extract_layers": 7,
78
+ "num_hidden_layers": 24,
79
+ "num_negatives": 100,
80
+ "output_hidden_size": 1024,
81
+ "pad_token_id": 79,
82
+ "proj_codevector_dim": 768,
83
+ "tdnn_dilation": [
84
+ 1,
85
+ 2,
86
+ 3,
87
+ 1,
88
+ 1
89
+ ],
90
+ "tdnn_dim": [
91
+ 512,
92
+ 512,
93
+ 512,
94
+ 512,
95
+ 1500
96
+ ],
97
+ "tdnn_kernel": [
98
+ 5,
99
+ 3,
100
+ 3,
101
+ 1,
102
+ 1
103
+ ],
104
+ "torch_dtype": "float32",
105
+ "transformers_version": "4.48.1",
106
+ "use_weighted_layer_sum": false,
107
+ "vocab_size": 84,
108
+ "xvector_output_dim": 512
109
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7d4d56b7436c37080404b86bfa0f88d22e2c9d03cb7d6c7ab81d65fe2ad73f0
3
+ size 1262151880
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
+ }
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,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "79": {
4
+ "content": "<pad>",
5
+ "lstrip": false,
6
+ "normalized": true,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "80": {
12
+ "content": "<unk>",
13
+ "lstrip": false,
14
+ "normalized": true,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "82": {
20
+ "content": "<s>",
21
+ "lstrip": false,
22
+ "normalized": true,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "83": {
28
+ "content": "</s>",
29
+ "lstrip": false,
30
+ "normalized": true,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ }
35
+ },
36
+ "bos_token": "<s>",
37
+ "clean_up_tokenization_spaces": false,
38
+ "do_phonemize": false,
39
+ "eos_token": "</s>",
40
+ "extra_special_tokens": {},
41
+ "model_max_length": 1000000000000000019884624838656,
42
+ "pad_token": "<pad>",
43
+ "phone_delimiter_token": " ",
44
+ "phonemizer_backend": "espeak",
45
+ "phonemizer_lang": "en-us",
46
+ "processor_class": "Wav2Vec2Processor",
47
+ "tokenizer_class": "Wav2Vec2PhonemeCTCTokenizer",
48
+ "unk_token": "<unk>",
49
+ "word_delimiter_token": null
50
+ }
vocab.json ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<pad>": 79,
3
+ "<unk>": 80,
4
+ "|": 81,
5
+ "แ„€": 0,
6
+ "แ„‚": 1,
7
+ "แ„ƒ": 2,
8
+ "แ„„": 3,
9
+ "แ„…": 4,
10
+ "แ„†": 5,
11
+ "แ„‡": 6,
12
+ "แ„ˆ": 7,
13
+ "แ„‰": 8,
14
+ "แ„Š": 9,
15
+ "แ„Œ": 10,
16
+ "แ„": 11,
17
+ "แ„": 12,
18
+ "แ„‘": 13,
19
+ "แ„’": 14,
20
+ "แ…ก": 15,
21
+ "แ…ข": 16,
22
+ "แ…ฅ": 17,
23
+ "แ…ฆ": 18,
24
+ "แ…ง": 19,
25
+ "แ…ฉ": 20,
26
+ "แ…ซ": 21,
27
+ "แ…ญ": 22,
28
+ "แ…ฎ": 23,
29
+ "แ…ฏ": 24,
30
+ "แ…ฑ": 25,
31
+ "แ…ณ": 26,
32
+ "แ…ต": 27,
33
+ "แ†จ": 28,
34
+ "แ†ซ": 29,
35
+ "แ†ฎ": 30,
36
+ "แ†ฏ": 31,
37
+ "แ†ท": 32,
38
+ "แ†ธ": 33,
39
+ "ใ„ฑ": 34,
40
+ "ใ„ฒ": 35,
41
+ "ใ„ด": 36,
42
+ "ใ„ต": 37,
43
+ "ใ„ท": 38,
44
+ "ใ„ธ": 39,
45
+ "ใ„น": 40,
46
+ "ใ„บ": 41,
47
+ "ใ„ป": 42,
48
+ "ใ„ผ": 43,
49
+ "ใ…": 44,
50
+ "ใ…‚": 45,
51
+ "ใ…ƒ": 46,
52
+ "ใ…„": 47,
53
+ "ใ……": 48,
54
+ "ใ…†": 49,
55
+ "ใ…‡": 50,
56
+ "ใ…ˆ": 51,
57
+ "ใ…‰": 52,
58
+ "ใ…Š": 53,
59
+ "ใ…‹": 54,
60
+ "ใ…Œ": 55,
61
+ "ใ…": 56,
62
+ "ใ…Ž": 57,
63
+ "ใ…": 58,
64
+ "ใ…": 59,
65
+ "ใ…‘": 60,
66
+ "ใ…’": 61,
67
+ "ใ…“": 62,
68
+ "ใ…”": 63,
69
+ "ใ…•": 64,
70
+ "ใ…–": 65,
71
+ "ใ…—": 66,
72
+ "ใ…˜": 67,
73
+ "ใ…™": 68,
74
+ "ใ…š": 69,
75
+ "ใ…›": 70,
76
+ "ใ…œ": 71,
77
+ "ใ…": 72,
78
+ "ใ…ž": 73,
79
+ "ใ…Ÿ": 74,
80
+ "ใ… ": 75,
81
+ "ใ…ก": 76,
82
+ "ใ…ข": 77,
83
+ "ใ…ฃ": 78
84
+ }