padmalcom commited on
Commit
6d746ca
1 Parent(s): 7b76fd8

Create hyperparams.yaml

Browse files
Files changed (1) hide show
  1. hyperparams.yaml +37 -0
hyperparams.yaml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ################################
2
+ # Model: German HiFIGAN
3
+ # Authors: Jonas Freiknecht
4
+ # ################################
5
+
6
+ in_channels: 80
7
+ out_channels: 1
8
+ resblock_type: "1"
9
+ resblock_dilation_sizes: [[1, 3, 5], [1, 3, 5], [1, 3, 5]]
10
+ resblock_kernel_sizes: [3, 7, 11]
11
+ upsample_kernel_sizes: [16, 16, 4, 4]
12
+ upsample_initial_channel: 512
13
+ upsample_factors: [8, 8, 2, 2]
14
+ inference_padding: 5
15
+ cond_channels: 0
16
+ conv_post_bias: True
17
+
18
+ generator: !new:speechbrain.lobes.models.HifiGAN.HifiganGenerator
19
+ in_channels: !ref <in_channels>
20
+ out_channels: !ref <out_channels>
21
+ resblock_type: !ref <resblock_type>
22
+ resblock_dilation_sizes: !ref <resblock_dilation_sizes>
23
+ resblock_kernel_sizes: !ref <resblock_kernel_sizes>
24
+ upsample_kernel_sizes: !ref <upsample_kernel_sizes>
25
+ upsample_initial_channel: !ref <upsample_initial_channel>
26
+ upsample_factors: !ref <upsample_factors>
27
+ inference_padding: !ref <inference_padding>
28
+ cond_channels: !ref <cond_channels>
29
+ conv_post_bias: !ref <conv_post_bias>
30
+
31
+ modules:
32
+ generator: !ref <generator>
33
+
34
+ pretrainer: !new:speechbrain.utils.parameter_transfer.Pretrainer
35
+ loadables:
36
+ generator: !ref <generator>
37
+