Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -116,8 +116,8 @@ with gr.Blocks() as iface:
|
|
116 |
submit_btn = gr.Button(label="Run")
|
117 |
with gr.Column():
|
118 |
# out_val = gr.Textbox()
|
119 |
-
out_class = gr.Label()
|
120 |
out_text = gr.Textbox()
|
|
|
121 |
submit_btn.click(fn=classify_toxicity, inputs=[aud_input, miso_sounds, sense_slider], outputs=[out_class, out_text])
|
122 |
|
123 |
|
|
|
116 |
submit_btn = gr.Button(label="Run")
|
117 |
with gr.Column():
|
118 |
# out_val = gr.Textbox()
|
|
|
119 |
out_text = gr.Textbox()
|
120 |
+
out_class = gr.Label()
|
121 |
submit_btn.click(fn=classify_toxicity, inputs=[aud_input, miso_sounds, sense_slider], outputs=[out_class, out_text])
|
122 |
|
123 |
|