Skip to content

Instantly share code, notes, and snippets.

@ChrisTowles
Last active February 10, 2019 00:41
Show Gist options
  • Save ChrisTowles/e491f36a4d77763835d3145518515a7c to your computer and use it in GitHub Desktop.
Save ChrisTowles/e491f36a4d77763835d3145518515a7c to your computer and use it in GitHub Desktop.
conda activate tf

# no idea why but had problems with ~ in path. 

cd /home/towlesd/Code/tacotron2
mkdir /home/towlesd/OutputDir/
mkdir /home/towlesd/OutputDir/tacotron2
mkdir /home/towlesd/OutputDir/tacotron2/source
mkdir /home/towlesd/OutputDir/tacotron2/target
mkdir /home/towlesd/OutputDir/tacotron2/results
mkdir /home/towlesd/OutputDir/tacotron2/checkpoints

python3 generate_training_list.py --dataset=ljspeech --data-root=/home/towlesd/OutputDir/tacotron2/source

conda activate tf
cd /home/towlesd/Code/tacotron2

python3 train.py --dataset=ljspeech \
--data-root=/home/towlesd/OutputDir/tacotron2/source \
--checkpoint-dir=/home/towlesd/OutputDir/tacotron2/checkpoints 



python3 train_postnet.py --dataset=ljspeech \
--data-root=/home/towlesd/OutputDir/tacotron2/source 
--checkpoint-dir=/home/towlesd/OutputDir/tacotron2/checkpoints 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment