Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -82,11 +82,11 @@ def text_to_audio(text):
|
|
82 |
# Crear interfaz en Gradio
|
83 |
interface = gr.Interface(
|
84 |
fn=text_to_audio,
|
85 |
-
inputs=gr.Textbox(lines=2, placeholder="Escribe
|
86 |
outputs=gr.Audio(label="Audio generado"),
|
87 |
title="Demo de TTS con Tacotron2 + Generador",
|
88 |
description="Convierte texto en audio usando Tacotron2 + modelo Generator entrenado.",
|
89 |
-
examples=[["
|
90 |
)
|
91 |
|
92 |
# Lanzar aplicaci贸n
|
|
|
82 |
# Crear interfaz en Gradio
|
83 |
interface = gr.Interface(
|
84 |
fn=text_to_audio,
|
85 |
+
inputs=gr.Textbox(lines=2, placeholder="Escribe algo (ej. 'Hello world')"),
|
86 |
outputs=gr.Audio(label="Audio generado"),
|
87 |
title="Demo de TTS con Tacotron2 + Generador",
|
88 |
description="Convierte texto en audio usando Tacotron2 + modelo Generator entrenado.",
|
89 |
+
examples=[["Hello"], ["Hi there"]]
|
90 |
)
|
91 |
|
92 |
# Lanzar aplicaci贸n
|