@@ -29,7 +29,7 @@ multiband_melgan_generator_params:
2929# ##########################################################
3030# DISCRIMINATOR NETWORK ARCHITECTURE SETTING #
3131# ##########################################################
32- discriminator_params :
32+ multiband_melgan_discriminator_params :
3333 out_channels : 1 # Number of output channels.
3434 scales : 3 # Number of multi-scales.
3535 downsample_pooling : " AveragePooling1D" # Pooling type for the input downsampling.
@@ -79,14 +79,14 @@ is_shuffle: true # shuffle dataset after each epoch.
7979# ##########################################################
8080generator_optimizer_params :
8181 lr_fn : " PiecewiseConstantDecay"
82- lr_params :
82+ lr_params :
8383 boundaries : [100000, 200000, 300000, 400000, 500000, 600000, 700000]
8484 values : [0.001, 0.0005, 0.00025, 0.000125, 0.0000625, 0.00003125, 0.000015625, 0.000001]
8585 amsgrad : false
8686
8787discriminator_optimizer_params :
8888 lr_fn : " PiecewiseConstantDecay"
89- lr_params :
89+ lr_params :
9090 boundaries : [100000, 200000, 300000, 400000, 500000]
9191 values : [0.00025, 0.000125, 0.0000625, 0.00003125, 0.000015625, 0.000001]
9292 amsgrad : false
0 commit comments