init
Browse files- config.json +82 -0
- model.safetensors +3 -0
- preprocessor_config.json +11 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +4 -0
- tokenizer_config.json +12 -0
- vocab.json +40 -0
config.json
ADDED
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"activation_dropout": 0.1,
|
3 |
+
"architectures": [
|
4 |
+
"VitsModel"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.1,
|
7 |
+
"depth_separable_channels": 2,
|
8 |
+
"depth_separable_num_layers": 3,
|
9 |
+
"duration_predictor_dropout": 0.5,
|
10 |
+
"duration_predictor_filter_channels": 256,
|
11 |
+
"duration_predictor_flow_bins": 10,
|
12 |
+
"duration_predictor_kernel_size": 3,
|
13 |
+
"duration_predictor_num_flows": 4,
|
14 |
+
"duration_predictor_tail_bound": 5.0,
|
15 |
+
"ffn_dim": 768,
|
16 |
+
"ffn_kernel_size": 3,
|
17 |
+
"flow_size": 192,
|
18 |
+
"hidden_act": "relu",
|
19 |
+
"hidden_dropout": 0.1,
|
20 |
+
"hidden_size": 192,
|
21 |
+
"initializer_range": 0.02,
|
22 |
+
"layer_norm_eps": 1e-05,
|
23 |
+
"layerdrop": 0.1,
|
24 |
+
"leaky_relu_slope": 0.1,
|
25 |
+
"model_type": "vits",
|
26 |
+
"noise_scale": 0.667,
|
27 |
+
"noise_scale_duration": 0.8,
|
28 |
+
"num_attention_heads": 2,
|
29 |
+
"num_hidden_layers": 6,
|
30 |
+
"num_speakers": 1,
|
31 |
+
"posterior_encoder_num_wavenet_layers": 16,
|
32 |
+
"prior_encoder_num_flows": 4,
|
33 |
+
"prior_encoder_num_wavenet_layers": 4,
|
34 |
+
"resblock_dilation_sizes": [
|
35 |
+
[
|
36 |
+
1,
|
37 |
+
3,
|
38 |
+
5
|
39 |
+
],
|
40 |
+
[
|
41 |
+
1,
|
42 |
+
3,
|
43 |
+
5
|
44 |
+
],
|
45 |
+
[
|
46 |
+
1,
|
47 |
+
3,
|
48 |
+
5
|
49 |
+
]
|
50 |
+
],
|
51 |
+
"resblock_kernel_sizes": [
|
52 |
+
3,
|
53 |
+
7,
|
54 |
+
11
|
55 |
+
],
|
56 |
+
"sampling_rate": 16000,
|
57 |
+
"speaker_embedding_size": 0,
|
58 |
+
"speaking_rate": 1.0,
|
59 |
+
"spectrogram_bins": 513,
|
60 |
+
"torch_dtype": "float32",
|
61 |
+
"transformers_version": "4.33.0.dev0",
|
62 |
+
"upsample_initial_channel": 512,
|
63 |
+
"upsample_kernel_sizes": [
|
64 |
+
16,
|
65 |
+
16,
|
66 |
+
4,
|
67 |
+
4
|
68 |
+
],
|
69 |
+
"upsample_rates": [
|
70 |
+
8,
|
71 |
+
8,
|
72 |
+
2,
|
73 |
+
2
|
74 |
+
],
|
75 |
+
"use_bias": true,
|
76 |
+
"use_stochastic_duration_prediction": true,
|
77 |
+
"vocab_size": 38,
|
78 |
+
"wavenet_dilation_rate": 1,
|
79 |
+
"wavenet_dropout": 0.0,
|
80 |
+
"wavenet_kernel_size": 5,
|
81 |
+
"window_size": 4
|
82 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ac1c8e767282f625d99e75816293fec6541634e8e6e6c2bd1adda146aa97af43
|
3 |
+
size 145227512
|
preprocessor_config.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"feature_extractor_type": "VitsFeatureExtractor",
|
3 |
+
"feature_size": 80,
|
4 |
+
"hop_length": 256,
|
5 |
+
"max_wav_value": 32768.0,
|
6 |
+
"n_fft": 1024,
|
7 |
+
"padding_side": "right",
|
8 |
+
"padding_value": 0.0,
|
9 |
+
"return_attention_mask": false,
|
10 |
+
"sampling_rate": 16000
|
11 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8ec2ad8e116c42620785f67dff5827329c43b093643a9f1a45a6ae903a849689
|
3 |
+
size 145388722
|
special_tokens_map.json
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"pad_token": "|",
|
3 |
+
"unk_token": "<unk>"
|
4 |
+
}
|
tokenizer_config.json
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_blank": true,
|
3 |
+
"clean_up_tokenization_spaces": true,
|
4 |
+
"is_uroman": false,
|
5 |
+
"language": "kmr-script_arabic",
|
6 |
+
"model_max_length": 1000000000000000019884624838656,
|
7 |
+
"normalize": true,
|
8 |
+
"pad_token": "|",
|
9 |
+
"phonemize": false,
|
10 |
+
"tokenizer_class": "VitsTokenizer",
|
11 |
+
"unk_token": "<unk>"
|
12 |
+
}
|
vocab.json
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
" ": 37,
|
3 |
+
"b": 35,
|
4 |
+
"c": 36,
|
5 |
+
"m": 34,
|
6 |
+
"|": 0,
|
7 |
+
"ئ": 16,
|
8 |
+
"ا": 2,
|
9 |
+
"ب": 9,
|
10 |
+
"ت": 11,
|
11 |
+
"ج": 26,
|
12 |
+
"ح": 29,
|
13 |
+
"خ": 19,
|
14 |
+
"د": 8,
|
15 |
+
"ر": 7,
|
16 |
+
"ز": 22,
|
17 |
+
"س": 15,
|
18 |
+
"ش": 23,
|
19 |
+
"ع": 31,
|
20 |
+
"غ": 33,
|
21 |
+
"ف": 28,
|
22 |
+
"ق": 30,
|
23 |
+
"ك": 10,
|
24 |
+
"ل": 14,
|
25 |
+
"م": 12,
|
26 |
+
"ن": 4,
|
27 |
+
"ه": 13,
|
28 |
+
"و": 5,
|
29 |
+
"پ": 24,
|
30 |
+
"چ": 25,
|
31 |
+
"ڕ": 27,
|
32 |
+
"ژ": 21,
|
33 |
+
"ڤ": 18,
|
34 |
+
"گ": 20,
|
35 |
+
"ڵ": 32,
|
36 |
+
"ۆ": 17,
|
37 |
+
"ی": 3,
|
38 |
+
"ێ": 6,
|
39 |
+
"ە": 1
|
40 |
+
}
|