Update app.py
Browse files
app.py
CHANGED
|
@@ -15,4 +15,7 @@ import gradio as gr
|
|
| 15 |
demo = gr.Interface(
|
| 16 |
fn=classify_audio, inputs=gr.Audio(type="filepath"), outputs="label"
|
| 17 |
)
|
|
|
|
|
|
|
|
|
|
| 18 |
demo.launch(debug=True)
|
|
|
|
| 15 |
demo = gr.Interface(
|
| 16 |
fn=classify_audio, inputs=gr.Audio(type="filepath"), outputs="label"
|
| 17 |
)
|
| 18 |
+
|
| 19 |
+
examples = ['normal.wav']
|
| 20 |
+
|
| 21 |
demo.launch(debug=True)
|