sulaimank commited on
Commit
60af470
1 Parent(s): e02b416

Create hyperparams.yaml

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