xy4286 commited on
Commit
dd6a21e
·
verified ·
1 Parent(s): 1336cb0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -2,14 +2,12 @@
2
 
3
  import gradio as gr
4
 
5
- title = "summary"
6
- description = "a summary test"
7
 
8
  gr.Interface.load(
9
  "huggingface/xy4286/pegasus-samsum",
10
  inputs=gr.Textbox(lines=5, label="Input Text"),
11
- title=title,
12
- description=description,
13
  ).launch()
14
 
15
 
 
2
 
3
  import gradio as gr
4
 
 
 
5
 
6
  gr.Interface.load(
7
  "huggingface/xy4286/pegasus-samsum",
8
  inputs=gr.Textbox(lines=5, label="Input Text"),
9
+ title="summary",
10
+ description="a summary test",
11
  ).launch()
12
 
13