Upload hifigan_config.json
Browse files- hifigan_config.json +38 -0
hifigan_config.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"resblock": "1",
|
| 3 |
+
"num_gpus": 4,
|
| 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": [ 10, 6, 2, 2, 2],
|
| 12 |
+
"upsample_kernel_sizes": [20,12, 4, 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 |
+
"discriminator_periods": [2,3, 5, 7, 11, 17, 23, 37],
|
| 17 |
+
|
| 18 |
+
"segment_size": 11520,
|
| 19 |
+
"num_mels": 100,
|
| 20 |
+
"num_freq": 641,
|
| 21 |
+
"n_fft" : 1280,
|
| 22 |
+
"hop_size": 320,
|
| 23 |
+
"win_size": 1280,
|
| 24 |
+
|
| 25 |
+
"sampling_rate": 32000,
|
| 26 |
+
|
| 27 |
+
"fmin": 0,
|
| 28 |
+
"fmax": 16000,
|
| 29 |
+
"fmax_for_loss": null,
|
| 30 |
+
|
| 31 |
+
"num_workers": 4,
|
| 32 |
+
|
| 33 |
+
"dist_config": {
|
| 34 |
+
"dist_backend": "nccl",
|
| 35 |
+
"dist_url": "tcp://localhost:54321",
|
| 36 |
+
"world_size": 1
|
| 37 |
+
}
|
| 38 |
+
}
|