dross20 commited on
Commit
4e6078d
·
1 Parent(s): 1863c16

Update description in app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
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()