Ashish Soni commited on
Commit
3173be4
·
1 Parent(s): 4c05f8b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ get_completion = pipeline("summarization", model="shleifer/distilbart-cnn-12-6")
6
  def summarize(input):
7
  output = get_completion(input)
8
  return output[0]['summary_text']
9
-
10
  gr.close_all()
11
  demo = gr.Interface(fn=summarize, inputs="text", outputs="text")
12
  demo.launch()
 
6
  def summarize(input):
7
  output = get_completion(input)
8
  return output[0]['summary_text']
9
+
10
  gr.close_all()
11
  demo = gr.Interface(fn=summarize, inputs="text", outputs="text")
12
  demo.launch()