install missing deps

This commit is contained in:
Fangjun Kuang 2024-10-28 23:12:16 +08:00
parent 908da44978
commit a6d018acec
2 changed files with 7 additions and 4 deletions

View File

@ -2,13 +2,13 @@
set -ex set -ex
sudo apt-get install sox apt-get install sox
python3 -m pip install piper_phonemize -f https://k2-fsa.github.io/icefall/piper_phonemize.html python3 -m pip install piper_phonemize -f https://k2-fsa.github.io/icefall/piper_phonemize.html
python3 -m pip install espnet_tts_frontend python3 -m pip install espnet_tts_frontend
python3 -m pip install numba python3 -m pip install numba
pytnon3 -m pip install conformer==0.3.2 diffusers python3 -m pip install conformer==0.3.2 diffusers librosa
log() { log() {
# This function is from espnet # This function is from espnet
@ -37,12 +37,12 @@ function prepare_data() {
} }
function train() { function train() {
pushd ./vits pushd ./matcha
sed -i.bak s/1500/3/g ./train.py sed -i.bak s/1500/3/g ./train.py
git diff . git diff .
popd popd
./vits/train.py \ ./matcha/train.py \
--exp-dir matcha/exp \ --exp-dir matcha/exp \
--num-epochs 1 \ --num-epochs 1 \
--save-every-n 1 \ --save-every-n 1 \

View File

@ -0,0 +1,3 @@
conformer==0.3.2
diffusers # developed using version ==0.25.0
librosa