Spaces:
Sleeping
Sleeping
Fix description
Browse files
app.py
CHANGED
|
@@ -12,7 +12,7 @@ gradio_app = gr.Interface(
|
|
| 12 |
inputs = gr.Textbox(label="Enter text to be summarized"),
|
| 13 |
outputs = gr.Textbox(label="Summarized text"),
|
| 14 |
title="Text Summarizer",
|
| 15 |
-
|
| 16 |
)
|
| 17 |
|
| 18 |
if __name__ == "__main__":
|
|
|
|
| 12 |
inputs = gr.Textbox(label="Enter text to be summarized"),
|
| 13 |
outputs = gr.Textbox(label="Summarized text"),
|
| 14 |
title="Text Summarizer",
|
| 15 |
+
description="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__":
|