bayartsogt
commited on
Commit
•
6f6cde3
1
Parent(s):
7071f7f
hifigan
Browse files- config.yaml +5 -1
- hifigan-00015000.bin +3 -0
- hifigan.json +37 -0
config.yaml
CHANGED
@@ -22,6 +22,10 @@ transforms:
|
|
22 |
'*':
|
23 |
- global_cmvn
|
24 |
vocab_filename: spm_char.txt
|
|
|
|
|
|
|
|
|
25 |
hub:
|
26 |
lang: mn
|
27 |
-
speaker: 0
|
|
|
22 |
'*':
|
23 |
- global_cmvn
|
24 |
vocab_filename: spm_char.txt
|
25 |
+
vocoder:
|
26 |
+
type: hifigan
|
27 |
+
checkpoint: hifigan-00015000.bin
|
28 |
+
config: hifigan.json
|
29 |
hub:
|
30 |
lang: mn
|
31 |
+
speaker: 0
|
hifigan-00015000.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:af36e2c5db9ed998f895cdb2f1b563a9f8c1830c4739bef9637130faaa35477c
|
3 |
+
size 55823149
|
hifigan.json
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"resblock": "1",
|
3 |
+
"num_gpus": 0,
|
4 |
+
"batch_size": 32,
|
5 |
+
"learning_rate": 0.0002,
|
6 |
+
"adam_b1": 0.8,
|
7 |
+
"adam_b2": 0.99,
|
8 |
+
"lr_decay": 0.999,
|
9 |
+
"seed": 1234,
|
10 |
+
|
11 |
+
"upsample_rates": [8,8,2,2],
|
12 |
+
"upsample_kernel_sizes": [16,16,4,4],
|
13 |
+
"upsample_initial_channel": 512,
|
14 |
+
"resblock_kernel_sizes": [3,7,11],
|
15 |
+
"resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
|
16 |
+
|
17 |
+
"segment_size": 8192,
|
18 |
+
"num_mels": 80,
|
19 |
+
"num_freq": 1025,
|
20 |
+
"n_fft": 1024,
|
21 |
+
"hop_size": 256,
|
22 |
+
"win_size": 1024,
|
23 |
+
|
24 |
+
"sampling_rate": 22050,
|
25 |
+
|
26 |
+
"fmin": 0,
|
27 |
+
"fmax": 8000,
|
28 |
+
"fmax_for_loss": null,
|
29 |
+
|
30 |
+
"num_workers": 4,
|
31 |
+
|
32 |
+
"dist_config": {
|
33 |
+
"dist_backend": "nccl",
|
34 |
+
"dist_url": "tcp://localhost:54321",
|
35 |
+
"world_size": 1
|
36 |
+
}
|
37 |
+
}
|