Spaces:
Sleeping
Sleeping
Update description in app.py
Browse files
app.py
CHANGED
|
@@ -11,8 +11,9 @@ gradio_app = gr.Interface(
|
|
| 11 |
predict,
|
| 12 |
inputs = gr.Textbox(label="Enter text to be summarized"),
|
| 13 |
outputs = gr.Textbox(label="Summarized text"),
|
| 14 |
-
title="Text Summarizer"
|
|
|
|
| 15 |
)
|
| 16 |
|
| 17 |
if __name__ == "__main__":
|
| 18 |
-
gradio_app.launch()
|
|
|
|
| 11 |
predict,
|
| 12 |
inputs = gr.Textbox(label="Enter text to be summarized"),
|
| 13 |
outputs = gr.Textbox(label="Summarized text"),
|
| 14 |
+
title="Text Summarizer",
|
| 15 |
+
desc="This application performs text summarization using a T5 model fined-tuned on a summarization dataset. Note that this application often takes 30 or more seconds to run."
|
| 16 |
)
|
| 17 |
|
| 18 |
if __name__ == "__main__":
|
| 19 |
+
gradio_app.launch()
|