synthesis.sh 264 字节
Newer Older
L
lifuchen 已提交
1 2 3 4 5 6
# train model

python -u synthesis.py \
--use_gpu=1 \
--alpha=1.0 \
--checkpoint_path='checkpoint/' \
L
lifuchen 已提交
7
--fastspeech_step=89000 \
L
lifuchen 已提交
8
--log_dir='./log' \
9
--config_path='configs/synthesis.yaml' \
L
lifuchen 已提交
10 11 12 13 14 15

if [ $? -ne 0 ]; then
    echo "Failed in synthesis!"
    exit 1
fi
exit 0