mskov commited on
Commit
335e90e
1 Parent(s): 5be3ad4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -30,8 +30,8 @@ with gr.Blocks() as iface:
30
  with gr.Column():
31
  aud_input = gr.Audio(source="upload", type="filepath", label="Upload Audio File")
32
  text = gr.Textbox(label="Enter Text", placeholder="Enter text here...")
33
- submit_btn = gr.Button(label="Submit")
34
- with g.Column():
35
  out_text = gr.Textbox()
36
  submit_btn.click(fn=classify_toxicity, inputs=[aud_input, text], outputs=out_text)
37
 
 
30
  with gr.Column():
31
  aud_input = gr.Audio(source="upload", type="filepath", label="Upload Audio File")
32
  text = gr.Textbox(label="Enter Text", placeholder="Enter text here...")
33
+ submit_btn = gr.Button(label="Run")
34
+ with gr.Column():
35
  out_text = gr.Textbox()
36
  submit_btn.click(fn=classify_toxicity, inputs=[aud_input, text], outputs=out_text)
37