kishorekashyap
commited on
Commit
·
da8a335
1
Parent(s):
ed680fb
Update hyperparams.yaml
Browse files- hyperparams.yaml +15 -3
hyperparams.yaml
CHANGED
@@ -60,13 +60,25 @@ model: !new:speechbrain.lobes.models.Tacotron2.Tacotron2
|
|
60 |
decoder_no_early_stopping: !ref <decoder_no_early_stopping>
|
61 |
|
62 |
# Function that converts the text into a sequence of valid characters.
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
modules:
|
66 |
-
|
67 |
|
68 |
pretrainer: !new:speechbrain.utils.parameter_transfer.Pretrainer
|
69 |
loadables:
|
70 |
-
|
|
|
71 |
|
72 |
|
|
|
60 |
decoder_no_early_stopping: !ref <decoder_no_early_stopping>
|
61 |
|
62 |
# Function that converts the text into a sequence of valid characters.
|
63 |
+
generator: !new:speechbrain.lobes.models.HifiGAN.HifiganGenerator
|
64 |
+
in_channels: !ref <in_channels>
|
65 |
+
out_channels: !ref <out_channels>
|
66 |
+
resblock_type: !ref <resblock_type>
|
67 |
+
resblock_dilation_sizes: !ref <resblock_dilation_sizes>
|
68 |
+
resblock_kernel_sizes: !ref <resblock_kernel_sizes>
|
69 |
+
upsample_kernel_sizes: !ref <upsample_kernel_sizes>
|
70 |
+
upsample_initial_channel: !ref <upsample_initial_channel>
|
71 |
+
upsample_factors: !ref <upsample_factors>
|
72 |
+
inference_padding: !ref <inference_padding>
|
73 |
+
cond_channels: !ref <cond_channels>
|
74 |
+
conv_post_bias: !ref <conv_post_bias>
|
75 |
|
76 |
modules:
|
77 |
+
generator: !ref <generator>
|
78 |
|
79 |
pretrainer: !new:speechbrain.utils.parameter_transfer.Pretrainer
|
80 |
loadables:
|
81 |
+
generator: !ref <generator>
|
82 |
+
|
83 |
|
84 |
|