OlzhasBatyrkhanov commited on
Commit
16521bd
·
1 Parent(s): 93e2510

v1.1.0 add caching, show answer as text

Browse files
Files changed (1) hide show
  1. app.py +12 -3
app.py CHANGED
@@ -4,7 +4,13 @@ from transformers import pipeline
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.
10
  A year later, she got married again in Westchester County, but to a different man and without divorcing her first husband.
@@ -24,7 +30,10 @@ Investigation Division. Seven of the men are from so-called "red-flagged" countr
24
  Her eighth husband, Rashid Rajput, was deported in 2006 to his native Pakistan after an investigation by the Joint Terrorism Task Force.
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.'}]
 
4
 
5
  st.title("FinalProject")
6
  st.write("123")
7
+
8
+ @st.cache_resource
9
+ def load_model():
10
+ print("loading model")
11
+ return pipeline("summarization", model="facebook/bart-large-cnn")
12
+
13
+ summarizer = load_model()
14
 
15
  ARTICLE = """ New York (CNN)When Liana Barrientos was 23 years old, she got married in Westchester County, New York.
16
  A year later, she got married again in Westchester County, but to a different man and without divorcing her first husband.
 
30
  Her eighth husband, Rashid Rajput, was deported in 2006 to his native Pakistan after an investigation by the Joint Terrorism Task Force.
31
  If convicted, Barrientos faces up to four years in prison. Her next court appearance is scheduled for May 18.
32
  """
33
+
34
+
35
+ answer = summarizer(ARTICLE, max_length=130, min_length=30, do_sample=False)
36
+
37
+ st.write(answer[0]['summary_text'])
38
 
39
  # >>> [{'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.'}]