tbdatasci commited on
Commit
2492612
·
1 Parent(s): 96e44c9

Shortened the description

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -12,8 +12,8 @@ gr.close_all()
12
  demo = gr.Interface(fn=summarize,
13
  inputs=[gr.Textbox(label="Text to summarize", lines=6)],
14
  outputs=[gr.Textbox(label="Result", lines=3)],
15
- title="Text summarization with distilbart-cnn",
16
- description="Summarize any text using the `shleifer/distilbart-cnn-12-6` model under the hood!"
17
  )
18
 
19
  demo.launch()
 
12
  demo = gr.Interface(fn=summarize,
13
  inputs=[gr.Textbox(label="Text to summarize", lines=6)],
14
  outputs=[gr.Textbox(label="Result", lines=3)],
15
+ title="Text summarization with bart-cnn",
16
+ description="Summarize any text!"
17
  )
18
 
19
  demo.launch()