Manu commited on
Commit
b863139
·
1 Parent(s): 448b3f1

examples removed

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -99,13 +99,12 @@ def synthesise_audio(text, forward_params=None):
99
 
100
  input_text = gr.Textbox(lines=10, label="Type the text you want to convert to speech:")
101
  #examples = gr.Examples(inputs=[["Feliz cumpleaños Nuria"]], outputs=[[]])
102
- examples = [["Feliz cumpleanos Nuria, que cumplas muchos mas"]]
103
  demo = gr.Interface(fn=synthesise_audio,
104
  inputs=input_text,
105
  outputs="audio",
106
  #outputs = gr.Audio(type="numpy"),
107
  description="----- manuai Text To Speech generator test -----",
108
- allow_flagging = False,
109
- examples = examples)
110
 
111
  demo.launch(debug = True)
 
99
 
100
  input_text = gr.Textbox(lines=10, label="Type the text you want to convert to speech:")
101
  #examples = gr.Examples(inputs=[["Feliz cumpleaños Nuria"]], outputs=[[]])
102
+
103
  demo = gr.Interface(fn=synthesise_audio,
104
  inputs=input_text,
105
  outputs="audio",
106
  #outputs = gr.Audio(type="numpy"),
107
  description="----- manuai Text To Speech generator test -----",
108
+ allow_flagging = False)
 
109
 
110
  demo.launch(debug = True)