Update app.py
Browse files
app.py
CHANGED
|
@@ -13,5 +13,5 @@ def predict(ina):
|
|
| 13 |
aud=gr.Audio(type='filepath')
|
| 14 |
oa=gr.Audio()
|
| 15 |
pf=gr.File()
|
| 16 |
-
demo = gr.Interface(fn=
|
| 17 |
demo.launch()
|
|
|
|
| 13 |
aud=gr.Audio(type='filepath')
|
| 14 |
oa=gr.Audio()
|
| 15 |
pf=gr.File()
|
| 16 |
+
demo = gr.Interface(fn=predict, inputs=[aud], outputs=[oa,pf])
|
| 17 |
demo.launch()
|