From bfe34e6a4ebabc5fc53246cb8099fa4d6ec0fe91 Mon Sep 17 00:00:00 2001 From: TianYuan Date: Tue, 28 Feb 2023 12:42:14 +0000 Subject: [PATCH] rm opt stage cause op missing --- examples/csmsc/vits/run.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/examples/csmsc/vits/run.sh b/examples/csmsc/vits/run.sh index 8c59e6b2b..ac190bfa8 100755 --- a/examples/csmsc/vits/run.sh +++ b/examples/csmsc/vits/run.sh @@ -39,11 +39,3 @@ fi if [ ${stage} -le 4 ] && [ ${stop_stage} -ge 4 ]; then CUDA_VISIBLE_DEVICES=${gpus} ./local/inference.sh ${train_output_path} ${add_blank}|| exit -1 fi - -# must run after stage 3 (which stage generated static models) -if [ ${stage} -le 5 ] && [ ${stop_stage} -ge 5 ]; then - # NOTE by yuantian 2022.11.21: please compile develop version of Paddle-Lite to export and run TTS models, - # cause TTS models are supported by https://github.com/PaddlePaddle/Paddle-Lite/pull/9587 - # and https://github.com/PaddlePaddle/Paddle-Lite/pull/9706 - ./local/export2lite.sh ${train_output_path} inference pdlite vits_csmsc x86 -fi