-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Starting an unconditional generation experiment #5
Comments
I haven't experimented too much with unconditional generation yet. You'll have to make the code changes yourself if you want to play with it before I get around to making the changes. Besides removing the conditioning network, you'll also need to increase the receptive field size so that it covers the entire utterance. Specifically:
All of the changes I listed can be made in Let me know if you have more questions. I'd love to hear how your experiment goes! |
Finally got some results instead of small noise. A smaller dataset is used for training (up down left right). T=20 result in some recognizable voices. Thanks for helping! And what about adding padding to the short samples instead of deleting them? If all samples in a minibatch are deleted, the training process will be terminated, which is annoying. |
Great! Glad to hear you're getting something that resembles speech. Padding is a valid way to handle short samples, though it has the effect of being less computationally efficient. Another option - especially if you have a lot of short samples which it sounds like you do - is to reduce the number of frames to train on (also in |
Yes that works. My problems are solved. Thanks for your helping! |
1 similar comment
Yes that works. My problems are solved. Thanks for your helping! |
Hi, I'm very curious onto how to implement the unconditional generation for my experiments as well. Would have any code modifications on how to do this? Thanks so much |
@moiseshorta, have you tried making the changes I described in #5 (comment)? That should be a good starting point for your experiments. |
For unconditional generation, is that changing
y = self.dilated_conv(y) + conditioner
in model.pyto
y = self.dilated_conv(y)
avaliable?
And how to generate samples?
The text was updated successfully, but these errors were encountered: