File size: 426 Bytes
4b156f1
89bd5df
4b156f1
 
89bd5df
4b156f1
 
 
 
89bd5df
4b156f1
89bd5df
4b156f1
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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
  pip install -r requirements.txt
  cd $project
fi

python VC_inference.py --model_dir ../G_latest.pth --config_dir ../finetune_speaker.json