Spaces:
Runtime error
Runtime error
harveen
commited on
Commit
·
a384454
1
Parent(s):
6ff43d5
Add
Browse files
app.py
CHANGED
@@ -2,7 +2,12 @@ import os
|
|
2 |
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/')
|
3 |
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/')
|
4 |
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/')
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
6 |
from ttsv.utils.inference.run_gradio import *
|
7 |
from argparse import Namespace
|
8 |
|
|
|
2 |
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/')
|
3 |
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/')
|
4 |
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/')
|
5 |
+
|
6 |
+
|
7 |
+
for path, subdirs, files in os.walk('tts/checkpoints'):
|
8 |
+
for name in files:
|
9 |
+
print(os.path.join(path, name))
|
10 |
+
|
11 |
from ttsv.utils.inference.run_gradio import *
|
12 |
from argparse import Namespace
|
13 |
|