Spaces:
Runtime error
Runtime error
Commit
·
aee9fe8
1
Parent(s):
061a8cf
Update app.py
Browse files
app.py
CHANGED
@@ -76,5 +76,5 @@ if __name__ == "__main__":
|
|
76 |
t5_output = gr.Textbox(label="T5 Base Output")
|
77 |
bert_output = gr.Textbox(label="Bert2Bert Base Output")
|
78 |
para_output = gr.Textbox(label="T5 Paraphrase Output")
|
79 |
-
analyze_button.click(summarize, inputs=input_text, outputs=[
|
80 |
demo.launch()
|
|
|
76 |
t5_output = gr.Textbox(label="T5 Base Output")
|
77 |
bert_output = gr.Textbox(label="Bert2Bert Base Output")
|
78 |
para_output = gr.Textbox(label="T5 Paraphrase Output")
|
79 |
+
analyze_button.click(summarize, inputs=input_text, outputs=[t5_output, bert_output, para_output])
|
80 |
demo.launch()
|