From baccedee54ec3f45e84caafd78ae270b86af6e0b Mon Sep 17 00:00:00 2001 From: huangyuxin Date: Thu, 20 Jan 2022 05:15:26 +0000 Subject: [PATCH 1/3] fix g2p, test=doc --- examples/other/g2p/run.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/other/g2p/run.sh b/examples/other/g2p/run.sh index 214b8b3d..bbf6dd60 100755 --- a/examples/other/g2p/run.sh +++ b/examples/other/g2p/run.sh @@ -4,6 +4,10 @@ source path.sh USE_SCLITE=true # test g2p +if [ ! -d datasets/BZNSYP ];then + echo "Please download BZNSYP dataset" + exit +fi echo "Start get g2p test data ..." python3 get_g2p_data.py --root-dir=~/datasets/BZNSYP --output-dir=data/g2p echo "Start test g2p ..." From 89a5c4ec5b6bb5d4166d6e86e0aa6ee48fbeedfc Mon Sep 17 00:00:00 2001 From: Jackwaterveg <87408988+Jackwaterveg@users.noreply.github.com> Date: Thu, 20 Jan 2022 13:19:32 +0800 Subject: [PATCH 2/3] Update run.sh --- examples/other/g2p/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/other/g2p/run.sh b/examples/other/g2p/run.sh index bbf6dd60..d52ed0c6 100755 --- a/examples/other/g2p/run.sh +++ b/examples/other/g2p/run.sh @@ -4,7 +4,7 @@ source path.sh USE_SCLITE=true # test g2p -if [ ! -d datasets/BZNSYP ];then +if [ ! -d ~datasets/BZNSYP ];then echo "Please download BZNSYP dataset" exit fi From 9764535d3df77f8b238f96a6f77a5a01f15c27b4 Mon Sep 17 00:00:00 2001 From: TianYuan Date: Thu, 20 Jan 2022 13:45:05 +0800 Subject: [PATCH 3/3] Update run.sh --- examples/other/g2p/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/other/g2p/run.sh b/examples/other/g2p/run.sh index d52ed0c6..9794e791 100755 --- a/examples/other/g2p/run.sh +++ b/examples/other/g2p/run.sh @@ -4,7 +4,7 @@ source path.sh USE_SCLITE=true # test g2p -if [ ! -d ~datasets/BZNSYP ];then +if [ ! -d ~/datasets/BZNSYP ];then echo "Please download BZNSYP dataset" exit fi