ashutoshzade commited on
Commit
420b426
·
1 Parent(s): 775ea34

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ print(summarizer(ARTICLE, max_length=230, min_length=30, do_sample=False))
8
 
9
  def summarize(input):
10
  #output = get_completion(input)
11
- output = summarizer(ARTICLE, max_length=230, min_length=30, do_sample=False))
12
  #return output[0]['summary_text']
13
  return output
14
 
 
8
 
9
  def summarize(input):
10
  #output = get_completion(input)
11
+ output = summarizer(ARTICLE, max_length=230, min_length=30, do_sample=False)
12
  #return output[0]['summary_text']
13
  return output
14