Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -139,6 +139,6 @@ with gr.Blocks() as iface:
|
|
139 |
out_val = gr.Textbox()
|
140 |
plot = gr.barplot()
|
141 |
out_text = gr.Textbox()
|
142 |
-
submit_btn.click(fn=classify_toxicity, inputs=[aud_input, text, anxiety_class, emo_class, explit_preference], outputs=out_val, plot, out_text)
|
143 |
|
144 |
iface.launch()
|
|
|
139 |
out_val = gr.Textbox()
|
140 |
plot = gr.barplot()
|
141 |
out_text = gr.Textbox()
|
142 |
+
submit_btn.click(fn=classify_toxicity, inputs=[aud_input, text, anxiety_class, emo_class, explit_preference], outputs=[out_val, plot, out_text])
|
143 |
|
144 |
iface.launch()
|