Create prepare.sh
Browse files- prepare.sh +7 -0
prepare.sh
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|
| 4 |
+
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 |
+
PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True python3 train_glowtts.py
|