ParakeetRebeccaRosario/examples/fastspeech/synthesis.sh

14 lines
223 B
Bash
Raw Normal View History

2020-02-13 14:53:45 +08:00
# train model
python -u synthesis.py \
--use_gpu=1 \
--alpha=1.0 \
--checkpoint_path='checkpoint/' \
--fastspeech_step=71000 \
--log_dir='./log' \
if [ $? -ne 0 ]; then
echo "Failed in synthesis!"
exit 1
fi
exit 0