diff --git a/tests/bash_tests/test_vocoder_gan_train.sh b/tests/bash_tests/test_vocoder_gan_train.sh deleted file mode 100755 index b2f43721..00000000 --- a/tests/bash_tests/test_vocoder_gan_train.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash -set -xe -BASEDIR=$(dirname "$0") -echo "$BASEDIR" -# create run dir -mkdir $BASEDIR/../train_outputs -# run training -CUDA_VISIBLE_DEVICES="" python TTS/bin/train_vocoder_gan.py --config_path $BASEDIR/../inputs/test_vocoder_multiband_melgan_config.json -# find the training folder -LATEST_FOLDER=$(ls $BASEDIR/../train_outputs/| sort | tail -1) -echo $LATEST_FOLDER -# continue the previous training -CUDA_VISIBLE_DEVICES="" python TTS/bin/train_vocoder_gan.py --continue_path $BASEDIR/../train_outputs/$LATEST_FOLDER -# remove all the outputs -rm -rf $BASEDIR/../train_outputs/$LATEST_FOLDER diff --git a/tests/bash_tests/test_vocoder_wavegrad_train.sh b/tests/bash_tests/test_vocoder_wavegrad_train.sh deleted file mode 100755 index 9626187f..00000000 --- a/tests/bash_tests/test_vocoder_wavegrad_train.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash -set -xe -BASEDIR=$(dirname "$0") -echo "$BASEDIR" -# create run dir -mkdir -p $BASEDIR/../train_outputs -# run training -CUDA_VISIBLE_DEVICES="" python TTS/bin/train_vocoder_wavegrad.py --config_path $BASEDIR/../inputs/test_vocoder_wavegrad.json -# find the training folder -LATEST_FOLDER=$(ls $BASEDIR/../train_outputs/| sort | tail -1) -echo $LATEST_FOLDER -# continue the previous training -CUDA_VISIBLE_DEVICES="" python TTS/bin/train_vocoder_wavegrad.py --continue_path $BASEDIR/../train_outputs/$LATEST_FOLDER -# remove all the outputs -rm -rf $BASEDIR/../train_outputs/$LATEST_FOLDER \ No newline at end of file diff --git a/tests/bash_tests/test_vocoder_wavernn_train.sh b/tests/bash_tests/test_vocoder_wavernn_train.sh deleted file mode 100755 index 7b554fc9..00000000 --- a/tests/bash_tests/test_vocoder_wavernn_train.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash -set -xe -BASEDIR=$(dirname "$0") -echo "$BASEDIR" -# create run dir -mkdir -p $BASEDIR/../train_outputs -# run training -CUDA_VISIBLE_DEVICES="" python TTS/bin/train_vocoder_wavernn.py --config_path $BASEDIR/../inputs/test_vocoder_wavernn_config.json -# find the training folder -LATEST_FOLDER=$(ls $BASEDIR/../train_outputs/| sort | tail -1) -echo $LATEST_FOLDER -# continue the previous training -CUDA_VISIBLE_DEVICES="" python TTS/bin/train_vocoder_wavernn.py --continue_path $BASEDIR/../train_outputs/$LATEST_FOLDER -# remove all the outputs -rm -rf $BASEDIR/../train_outputs/$LATEST_FOLDER \ No newline at end of file