Spaces:
Runtime error
Runtime error
Commit ·
574501f
1
Parent(s): 2d65886
Update app.py
Browse files
app.py
CHANGED
|
@@ -7,7 +7,7 @@ import gradio as gr
|
|
| 7 |
from TTS.api import TTS
|
| 8 |
|
| 9 |
model_names = TTS().list_models()
|
| 10 |
-
m = model_names[
|
| 11 |
tts = TTS(m, gpu=False)
|
| 12 |
tts.to("cpu")
|
| 13 |
#tts.to("cuda") # cuda only
|
|
|
|
| 7 |
from TTS.api import TTS
|
| 8 |
|
| 9 |
model_names = TTS().list_models()
|
| 10 |
+
m = model_names[1]
|
| 11 |
tts = TTS(m, gpu=False)
|
| 12 |
tts.to("cpu")
|
| 13 |
#tts.to("cuda") # cuda only
|