Spaces:
Runtime error
Runtime error
File size: 1,054 Bytes
707ea0a 6ff43d5 a1499b2 a384454 089e9e0 9273161 a384454 9f2a0ba bac3716 9f2a0ba 707ea0a bac3716 cbda29c bac3716 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import os
os.system('wget -q https://storage.googleapis.com/vakyansh-open-models/tts/hindi/hi-IN/female_voice_0/glow.zip && unzip -q glow.zip -d ttsv/checkpoints/')
os.system('wget -q https://storage.googleapis.com/vakyansh-open-models/tts/hindi/hi-IN/female_voice_0/hifi.zip && unzip -q hifi.zip -d ttsv/checkpoints/')
os.system('wget -q https://storage.googleapis.com/vakyansh-open-models/translit_models.zip -P ttsv/checkpoints/ && unzip -q ttsv/checkpoints/translit_models.zip -d ttsv/checkpoints/')
for path, subdirs, files in os.walk('ttsv/checkpoints/'):
print(subdirs)
for name in files:
print(os.path.join(path, name))
from ttsv.utils.inference.run_gradio import *
from argparse import Namespace
#os.system('python ttsv/utils/inference/run_gradio.py -a ttsv/checkpoints/glow/male -v ttsv/checkpoints/hifi/male -d cpu -L hi')
args = {
'acoustic':'/home/user/app/ttsv/checkpoints/glow/male',
'vocoder':'/home/user/app/ttsv/checkpoints/hifi/male',
'device':'cpu',
'lang':'hi'
}
build_gradio(Namespace(**args)) |