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
---> 72 denoiser = Denoiser(waveglow)
...
[/content/tacotron2/stft.py](https://localhost:8080/#) in __init__(self, filter_length, hop_length, win_length, window)
65 # get window and zero center pad it to filter_length
66 fft_window = get_window(window, win_length, fftbins=True)
---> 67 fft_window = pad_center(fft_window, filter_length)
68 fft_window = torch.from_numpy(fft_window).float()
69
TypeError: pad_center() takes 1 positional argument but 2 were given
The text was updated successfully, but these errors were encountered:
Hi @catafest, I encountered the same issue when trying to load the denoiser, and it seems to be related to the librosa version. I was able to resolve it by downgrading librosa to version 0.9.2 using the following command:
pip install librosa==0.9.2
You might find this related discussion helpful: Issue #1166.
Hello, do you have the official checkpoints? The current download links have access restrictions. If you have them, could you please share them with me? Thank you. @nenghakheng@catafest
I got this error on https://colab.research.google.com/github/catafest/colab_google/blob/master/catafest_0059.ipynb :
The text was updated successfully, but these errors were encountered: