Update prepare.sh
Browse files- prepare.sh +6 -1
prepare.sh
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
pip install git+https://github.com/idiap/coqui-tts.git
|
| 2 |
sudo apt update && sudo apt install espeak -y
|
| 3 |
sudo apt install ffmpeg libavcodec-dev libavformat-dev libavutil-dev -y
|
|
@@ -5,4 +6,8 @@ pip install "coqui-tts[codec]"
|
|
| 5 |
wget https://data.keithito.com/data/speech/LJSpeech-1.1.tar.bz2
|
| 6 |
tar -xjf LJSpeech-1.1.tar.bz2
|
| 7 |
wget https://huggingface.co/LH-Tech-AI/Flare-TTS-28M/resolve/main/model.pth
|
| 8 |
-
wget https://huggingface.co/LH-Tech-AI/Flare-TTS-28M/resolve/main/config.json
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Installs
|
| 2 |
pip install git+https://github.com/idiap/coqui-tts.git
|
| 3 |
sudo apt update && sudo apt install espeak -y
|
| 4 |
sudo apt install ffmpeg libavcodec-dev libavformat-dev libavutil-dev -y
|
|
|
|
| 6 |
wget https://data.keithito.com/data/speech/LJSpeech-1.1.tar.bz2
|
| 7 |
tar -xjf LJSpeech-1.1.tar.bz2
|
| 8 |
wget https://huggingface.co/LH-Tech-AI/Flare-TTS-28M/resolve/main/model.pth
|
| 9 |
+
wget https://huggingface.co/LH-Tech-AI/Flare-TTS-28M/resolve/main/config.json
|
| 10 |
+
|
| 11 |
+
# Start training
|
| 12 |
+
screen -S vocoder
|
| 13 |
+
PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True python3 train_vocoder.py
|