You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
I am working on Ubuntu 20.04 with jupyter notebooks on my laptop. As I don't have a graphics card, I changed the decoder definition from NVWavenetGenerator to WavenetGenerator and removed .cuda() from the code to make it runnable locally. The code runs without a problem but the output is a bunch of 0 second audio clips. I have tried debugging by placing disp() in the forward of the encoder and decoder but have not yet fixed the problem. Any help or ideas would be appreciated. Thanks in advance!
The text was updated successfully, but these errors were encountered:
nishkakhendry
changed the title
Generated outputs using pretrained model and Generate.ipynb giving 0 second audio outputs
Running pretrained model and Generate.ipynb giving 0 second audio outputs
Jul 26, 2021
Yes. This happens when you use WavenetGenerator decoder (WavenetGenerator) but keep the parameters of NVWavenetGenerator from the ipython script. Try to modify decoder from "decoder = NVWavenetGenerator(decoder, rate // 20, batch_size, 3)" to "decoder = WavenetGenerator(decoder, batch_size, wav_freq=rate)". The inference is much slower but it seems to work without needing of wavenet compilation via setup.py or make.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am working on Ubuntu 20.04 with jupyter notebooks on my laptop. As I don't have a graphics card, I changed the decoder definition from NVWavenetGenerator to WavenetGenerator and removed .cuda() from the code to make it runnable locally. The code runs without a problem but the output is a bunch of 0 second audio clips. I have tried debugging by placing disp() in the forward of the encoder and decoder but have not yet fixed the problem. Any help or ideas would be appreciated. Thanks in advance!
The text was updated successfully, but these errors were encountered: