Flo161 commited on
Commit
fe62e5f
·
1 Parent(s): 03d1fb8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,4 +1,5 @@
1
  from transformers import pipeline
 
2
 
3
  summarizer = pipeline("summarization", model="facebook/bart-large-cnn")
4
 
@@ -20,4 +21,4 @@ Investigation Division. Seven of the men are from so-called "red-flagged" countr
20
  Her eighth husband, Rashid Rajput, was deported in 2006 to his native Pakistan after an investigation by the Joint Terrorism Task Force.
21
  If convicted, Barrientos faces up to four years in prison. Her next court appearance is scheduled for May 18.
22
  """
23
- print(summarizer(ARTICLE, max_length=130, min_length=30, do_sample=False))
 
1
  from transformers import pipeline
2
+ import streamlit as st
3
 
4
  summarizer = pipeline("summarization", model="facebook/bart-large-cnn")
5
 
 
21
  Her eighth husband, Rashid Rajput, was deported in 2006 to his native Pakistan after an investigation by the Joint Terrorism Task Force.
22
  If convicted, Barrientos faces up to four years in prison. Her next court appearance is scheduled for May 18.
23
  """
24
+ st.write(summarizer(ARTICLE, max_length=130, min_length=30, do_sample=False))