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

python -u synthesis.py \
--use_gpu=1 \
--alpha=1.0 \
6 7 8 9 10
--checkpoint='./checkpoint/fastspeech/step-120000' \
--config='configs/ljspeech.yaml' \
--config_clarine='../clarinet/configs/config.yaml' \
--checkpoint_clarinet='../clarinet/checkpoint/step-500000' \
--output='./synthesis' \
L
lifuchen 已提交
11 12 13 14 15 16

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