You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
540 B
24 lines
540 B
2 years ago
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
source path.sh
|
||
|
|
||
|
gpus=0,1
|
||
|
stage=3
|
||
|
stop_stage=100
|
||
|
|
||
|
model_dir=models
|
||
|
output_dir=output
|
||
|
|
||
|
# with the following command, you can choose the stage range you want to run
|
||
|
# such as `./run.sh --stage 0 --stop-stage 0`
|
||
|
# this can not be mixed use with `$1`, `$2` ...
|
||
|
source ${MAIN_ROOT}/utils/parse_options.sh || exit 1
|
||
|
|
||
|
|
||
|
if [ ${stage} -le 3 ] && [ ${stop_stage} -ge 3 ]; then
|
||
|
# synthesize_e2e, vocoder is hifigan by default
|
||
|
CUDA_VISIBLE_DEVICES=${gpus} ./local/synthesize_e2e.sh ${model_dir} ${output_dir} || exit -1
|
||
|
fi
|
||
|
|