Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -102,4 +102,4 @@ noise_scale_w_slider = gr.Slider(minimum=0.1, maximum=5, value=0.8, step=0.1, la
|
|
102 |
app = gr.Interface(fn=infer, inputs=[textbox, char_dropdown, language_dropdown, duration_slider, noise_scale_slider, noise_scale_w_slider,], outputs=["text","audio"],title=title, description=description, article=article, examples=examples)
|
103 |
|
104 |
if __name__=="__main__":
|
105 |
-
app.launch()
|
|
|
102 |
app = gr.Interface(fn=infer, inputs=[textbox, char_dropdown, language_dropdown, duration_slider, noise_scale_slider, noise_scale_w_slider,], outputs=["text","audio"],title=title, description=description, article=article, examples=examples)
|
103 |
|
104 |
if __name__=="__main__":
|
105 |
+
app.queue(concurrency_count=3).launch(show_api=False)
|