A Turorial for the: Tutorial For Nervous Beginners (Win10) #1332
Replies: 4 comments 3 replies
-
|
Beta Was this translation helpful? Give feedback.
-
"install CUDA Toolkit 10.1" doesn't work with 30xx cards, had to install cuda 11 |
Beta Was this translation helpful? Give feedback.
-
Just in case you want to train a TTS model on Windows without WSL. I've created a step by step tutorial on that. |
Beta Was this translation helpful? Give feedback.
-
I get an error: |
Beta Was this translation helpful? Give feedback.
-
From Zero to something using windows 10
I came across this project and thought it was cool that I could train a voice to be used as a TTS. Just to get the example training to work has been a struggle to say the least. I have just finished getting the example to work so I wanted to share what I did in hopes somebody else finds it useful.
install Linux sub system
sudo apt install python3-pip # install pip
following https://tts.readthedocs.io/en/latest/tutorial_for_nervous_beginners.html
python3 -c 'from TTS.utils.downloaders import download_ljspeech; download_ljspeech("../recipes/ljspeech/");'
nano train.py # create new file
CUDA_VISIBLE_DEVICES=0 python3 train.py # start training
NOTES
Good Luck
Beta Was this translation helpful? Give feedback.
All reactions