Edresson / YourTTS

YourTTS: Towards Zero-Shot Multi-Speaker TTS and Zero-Shot Voice Conversion for everyone
Other
884 stars 77 forks source link

YourTTS_zeroshot_VC_demo.ipynb #10

Closed stalevna closed 2 years ago

stalevna commented 2 years ago

Hi! I am trying to run YourTTS_zeroshot_VC_demo.ipynb and there seems to be access changes to the file best_model.pth.tar I am downloading it right now and I will manually upload it, so that I can run the notebook, but could you kindly fix the access rights so that others could easily run it like it was before. Thank you in advance! image

shagho commented 2 years ago

@stalevna Hello! for solving this problem for last file downloading use this bash script. !wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://docs.google.com/uc?export=download&id=FILEID' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=FILEID" -O FILENAME && rm -rf /tmp/cookies.txt in above script just replace FILEID with drive file id and FILENAME with output name you want to save.

Jackiexiao commented 2 years ago

when try exec YourTTS-zeroshot-TTS Colab notebook

I encounter a problem

FileNotFoundError: [Errno 2] No such file or directory: 'best_model.pth.tar'

shagho commented 2 years ago

when try exec YourTTS-zeroshot-TTS Colab notebook

I encounter a problem

FileNotFoundError: [Errno 2] No such file or directory: 'best_model.pth.tar'

because the model didn't download and use this script to download the model wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://docs.google.com/uc?export=download&id=FILEID' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=FILEID" -O FILENAME && rm -rf /tmp/cookies.txt

in above script just replace FILEID with drive file id and FILENAME with output name you want to save.

Jackiexiao commented 2 years ago

thx

shagho commented 2 years ago

you're welcome!