This commit is contained in:
zr_jin 2024-11-04 15:20:50 +08:00
parent f24713285a
commit 53ec156198
2 changed files with 10 additions and 8 deletions

View File

@ -1,4 +1,4 @@
# Copied from
# Modified from
# https://github.com/shivammehta25/Matcha-TTS/blob/main/matcha/utils/monotonic_align/setup.py
from Cython.Build import cythonize
from setuptools import Extension, setup

View File

@ -26,13 +26,15 @@ log "dl_dir: $dl_dir"
if [ $stage -le -1 ] && [ $stop_stage -ge -1 ]; then
log "Stage -1: build monotonic_align lib (used by vits and matcha recipes)"
if [ ! -d vits/monotonic_align/build ]; then
cd vits/monotonic_align
for recipe in vits matcha; do
if [ ! -d $recipe/monotonic_align/build ]; then
cd $recipe/monotonic_align
python3 setup.py build_ext --inplace
cd ../../
else
log "monotonic_align lib for vits already built"
log "monotonic_align lib for $recipe already built"
fi
done
fi
if [ $stage -le 0 ] && [ $stop_stage -ge 0 ]; then