File size: 510 Bytes
4b156f1 89bd5df 4b156f1 89bd5df 4b156f1 89bd5df 4b156f1 bc8b0b8 ab8a40d 4b156f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#!/bin/bash
project=project
if [ -d "SuTTS" ]; then
echo "SuTTS already exists"
cd $project
git pull --recurse-submodules
git submodule update --recursive
git submodule sync
else
git clone https://github.com/Plachtaa/VITS-fast-fine-tuning.git --recurse-submodules $project
cd $project
fi
#pip install -r requirements.txt
cd monotonic_align/
mkdir monotonic_align
python setup.py build_ext --inplace
cd ..
python VC_inference.py --model_dir ../G_latest.pth --config_dir ../finetune_speaker.json
|