mskov commited on
Commit
b0955e4
·
1 Parent(s): 988f2ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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()