Skip to content
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

DeepVoice3 multi-speaker TTS en demo.ipynb fixes #217

Open
CaptainStabs opened this issue Dec 28, 2020 · 2 comments
Open

DeepVoice3 multi-speaker TTS en demo.ipynb fixes #217

CaptainStabs opened this issue Dec 28, 2020 · 2 comments

Comments

@CaptainStabs
Copy link

CaptainStabs commented Dec 28, 2020

Couldn't find the notebook on this repo so I'll just put the changes here.
On running the notebook, a FileNotFoundError is thrown due to the repo being cloned into /content/ instead of /root/

try:
  os.chdir(join(expanduser("~"), name))
except FileNotFoundError:
  os.chdir("/content/deepvoice3_pytorch")

# Use pytorch v0.3.1
!pip install -q torch==0.3.1```
@rachejazz
Copy link

rachejazz commented Feb 2, 2021

Another fix with placing %cd in:

%cd ~
import os
from os.path import exists, join, expanduser

# Clone
name = "deepvoice3_pytorch"
if not exists(name):
  ! git clone https://github.com/r9y9/$name

@mdkberry
Copy link

neither of these work, getting
"ERROR: Could not find a version that satisfies the requirement torch==0.3.1 (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2, 0.4.1, 0.4.1.post2, 1.0.0, 1.0.1, 1.0.1.post2, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.4.0, 1.5.0, 1.5.1, 1.6.0, 1.7.0, 1.7.1, 1.8.0)
ERROR: No matching distribution found for torch==0.3.1"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants