r9y9 / deepvoice3_pytorch

PyTorch implementation of convolutional neural networks-based text-to-speech synthesis models
https://r9y9.github.io/deepvoice3_pytorch/
Other
1.97k stars 485 forks source link

Both Sample Colab Notebooks No Longer Work #229

Closed windowshopr closed 2 years ago

windowshopr commented 2 years ago

image

So if we just comment that line out and restart/run all, we then get:

image

...So we run !pip install --upgrade hparams, then restart and run all again, we get:

image

...and on the single speaker notebook, we get another similar error on this line:

image

What to do next? Might be time to update those sample notebooks. Thanks!

Najib-Haq commented 2 years ago

Single speaker notebook works for me if you change directory to the one where the github repo is cloned (Just change os.chdir(join(expanduser("~"), name)) to os.chdir(join('/content/', name)) for colab) and if you remain in the master branch (comment out !git checkout 7a10ac6763eda92595e257543494b6a95f64229b --quiet.)

Multi speaker works with similar changes + change ! pip install -q -e '.[train]' to ! pip install -q -e '.[bin]'

windowshopr commented 2 years ago

Worked! Thanks for the direction!