2018-06-21 13:46:20 +00:00
|
|
|
#!/bin/bash
|
2019-04-18 15:34:54 +00:00
|
|
|
yes | apt-get install sox
|
2019-04-23 12:58:00 +00:00
|
|
|
yes | apt-get install ffmpeg
|
2019-02-20 15:45:31 +00:00
|
|
|
yes | apt-get install espeak
|
2019-04-29 09:35:52 +00:00
|
|
|
yes | apt-get install tmux
|
|
|
|
yes | apt-get install zsh
|
2019-08-13 10:14:08 +00:00
|
|
|
# pip3 install https://download.pytorch.org/whl/cu100/torch-1.1.0-cp37-cp37m-linux_x86_64.whl
|
2019-05-06 14:14:02 +00:00
|
|
|
# wget https://www.dropbox.com/s/m8waow6b3ydpf6h/MozillaDataset.tar.gz?dl=0 -O /data/rw/home/mozilla.tar
|
2019-04-29 09:35:52 +00:00
|
|
|
wget https://www.dropbox.com/s/wqn5v3wkktw9lmo/install.sh?dl=0 -O install.sh
|
|
|
|
sudo sh install.sh
|
2019-02-20 15:45:31 +00:00
|
|
|
python3 setup.py develop
|
2019-06-03 13:34:36 +00:00
|
|
|
# cp -R ${USER_DIR}/GermanData ../tmp/
|
2019-09-20 16:45:48 +00:00
|
|
|
# cp -R /data/ro/shared/data/keithito/LJSpeech-1.1/ ../tmp/
|
2019-10-12 23:22:30 +00:00
|
|
|
# python3 distribute.py --config_path config.json --data_path /data/ro/shared/data/keithito/LJSpeech-1.1/
|
2019-06-14 14:18:49 +00:00
|
|
|
# cp -R ${USER_DIR}/Mozilla_22050 ../tmp/
|
|
|
|
# python3 distribute.py --config_path config_tacotron_gst.json --data_path ../tmp/Mozilla_22050/
|
2019-10-12 23:22:30 +00:00
|
|
|
# python3 distribute.py --config_path config.json --data_path /data/rw/home/LibriTTS/train-clean-360
|
|
|
|
python3 distribute.py --config_path config.json
|
2019-09-05 10:54:45 +00:00
|
|
|
while true; do sleep 1000000; done
|