Spaces:
Runtime error
Runtime error
harveen
commited on
Commit
·
9273161
1
Parent(s):
a384454
Add
Browse files
app.py
CHANGED
@@ -4,7 +4,8 @@ os.system('wget -q https://storage.googleapis.com/vakyansh-open-models/tts/hindi
|
|
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 |
|
|
|
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 |
+
print(subdirs)
|
9 |
for name in files:
|
10 |
print(os.path.join(path, name))
|
11 |
|