Spaces:
Sleeping
Sleeping
Commit
·
93e2510
1
Parent(s):
68c03aa
v1.0.2 testing new model
Browse files
app.py
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
import streamlit as st
|
2 |
from transformers import pipeline
|
3 |
|
|
|
|
|
|
|
4 |
summarizer = pipeline("summarization", model="facebook/bart-large-cnn")
|
5 |
|
6 |
ARTICLE = """ New York (CNN)When Liana Barrientos was 23 years old, she got married in Westchester County, New York.
|
@@ -22,4 +25,6 @@ Her eighth husband, Rashid Rajput, was deported in 2006 to his native Pakistan a
|
|
22 |
If convicted, Barrientos faces up to four years in prison. Her next court appearance is scheduled for May 18.
|
23 |
"""
|
24 |
print(summarizer(ARTICLE, max_length=130, min_length=30, do_sample=False))
|
|
|
|
|
25 |
# >>> [{'summary_text': 'Liana Barrientos, 39, is charged with two counts of "offering a false instrument for filing in the first degree" In total, she has been married 10 times, with nine of her marriages occurring between 1999 and 2002. She is believed to still be married to four men.'}]
|
|
|
1 |
import streamlit as st
|
2 |
from transformers import pipeline
|
3 |
|
4 |
+
|
5 |
+
st.title("FinalProject")
|
6 |
+
st.write("123")
|
7 |
summarizer = pipeline("summarization", model="facebook/bart-large-cnn")
|
8 |
|
9 |
ARTICLE = """ New York (CNN)When Liana Barrientos was 23 years old, she got married in Westchester County, New York.
|
|
|
25 |
If convicted, Barrientos faces up to four years in prison. Her next court appearance is scheduled for May 18.
|
26 |
"""
|
27 |
print(summarizer(ARTICLE, max_length=130, min_length=30, do_sample=False))
|
28 |
+
st.write("123")
|
29 |
+
|
30 |
# >>> [{'summary_text': 'Liana Barrientos, 39, is charged with two counts of "offering a false instrument for filing in the first degree" In total, she has been married 10 times, with nine of her marriages occurring between 1999 and 2002. She is believed to still be married to four men.'}]
|