Spaces:
Running
Running
Commit
·
373dd05
1
Parent(s):
b59d991
Update app.py
Browse files
app.py
CHANGED
@@ -155,6 +155,7 @@ with gr.Blocks() as demo:
|
|
155 |
input_checks = gr.CheckboxGroup(
|
156 |
["emotion frequencies", "emotion distribution over time", "peaks", "topics"],
|
157 |
label = "Select options")
|
|
|
158 |
output = gr.Textbox()
|
159 |
send_btn.click(fn=inference_sentence, inputs=input_file, outputs=output)
|
160 |
|
|
|
155 |
input_checks = gr.CheckboxGroup(
|
156 |
["emotion frequencies", "emotion distribution over time", "peaks", "topics"],
|
157 |
label = "Select options")
|
158 |
+
send_btn = gr.Button("Send")
|
159 |
output = gr.Textbox()
|
160 |
send_btn.click(fn=inference_sentence, inputs=input_file, outputs=output)
|
161 |
|