Spaces:
Runtime error
Runtime error
Commit
·
569ed18
1
Parent(s):
10738ea
Update app.py
Browse files
app.py
CHANGED
|
@@ -13,6 +13,12 @@ m = model_names[0]
|
|
| 13 |
# m = model
|
| 14 |
# break
|
| 15 |
print(model_names)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
tts = TTS(m, gpu=False).to("cpu")
|
| 17 |
#tts.to("cuda") # cuda only
|
| 18 |
|
|
|
|
| 13 |
# m = model
|
| 14 |
# break
|
| 15 |
print(model_names)
|
| 16 |
+
print(os.listdir("."))
|
| 17 |
+
print(os.listdir("./TTS/utils"))
|
| 18 |
+
try:
|
| 19 |
+
print(open("./TTS/utils/io.py", "r").read())
|
| 20 |
+
except:
|
| 21 |
+
print("mauvais fichier")
|
| 22 |
tts = TTS(m, gpu=False).to("cpu")
|
| 23 |
#tts.to("cuda") # cuda only
|
| 24 |
|