-
Notifications
You must be signed in to change notification settings - Fork 32
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
how to predict #11
Comments
By prediction, do you mean predicting whether an audio is noisy or not? (discriminator) Or, do you mean denoising? (generator) Either case, you can load the models saved at the end of every epoch using discriminator = torch.load('discriminator-5.pkl')
output = discriminator(audio) |
Thank you very much for your kind reply.
Could you give some advice on this? Thanks, |
My bad. Since we're saving the
|
Hi,
thank you for the nice implementation.
Regarding predict, should I use Tensorflow original version?
(https://github.com/santi-pdp/segan/blob/master/main.py)
Your REDADME explain only about training, so let me confirm how to predict the model.
Regards,
The text was updated successfully, but these errors were encountered: