Tensorflowtts: Problem when training Multiband MelGAN

Created on 4 Sep 2020  ·  6Comments  ·  Source: TensorSpeech/TensorFlowTTS

Some early steps, it is okay
1
9

After that, I got a problem
1
1

I also fix that like https://github.com/TensorSpeech/TensorFlowTTS/issues/113, but it doesn't work
image

Thank you !

MelGAN question ❓

All 6 comments

sub_sc_loss = tf.where(sub_sc_loss >= 10.0, 0.0, sub_sc_loss)
sub_mag_loss = tf.where(sub_mag_loss >= 10.0, 0.0, sub_mag_loss)
full_sc_loss = tf.where(full_sc_loss >= 10.0, 0.0, full_sc_loss)
full_mag_loss = tf.where(full_mag_loss >= 10.0, 0.0, full_mag_loss)
gen_loss = 0.5 * (sub_sc_loss + sub_mag_loss) + 0.5 * (
     full_sc_loss + full_mag_loss
)

try this. Let read the loss function here (https://github.com/TensorSpeech/TensorFlowTTS/blob/master/examples/multiband_melgan/train_multiband_melgan.py#L109). I think 10.0 is enough, in case the loss don't decrease, let try to set it by 20.0

thank you, I will try this !

I solved this by decreasing the learning rate (similar to the paper).
Thank you !

I solved this by decreasing the learning rate (similar to the paper).
Thank you !

okay, let share some results if you can :)).

I solved this by decreasing the learning rate (similar to the paper).
Thank you !

okay, let share some results if you can :)).

https://drive.google.com/drive/folders/1IST9UElMdxFj2SOJwQbUcNDp1PJ4Gdju?usp=sharing, here is the result after 400k steps :D

I solved this by decreasing the learning rate (similar to the paper).
Thank you !

okay, let share some results if you can :)).

https://drive.google.com/drive/folders/1IST9UElMdxFj2SOJwQbUcNDp1PJ4Gdju?usp=sharing, here is the result after 400k steps :D

it's good :)), let see the quality at 1M steps.

Was this page helpful?
0 / 5 - 0 ratings