richardorama commited on
Commit
dd63333
1 Parent(s): f7d4880

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -30,6 +30,8 @@ If convicted, Barrientos faces up to four years in prison. Her next court appea
30
  ARTICLE = st.sidebar.text_area('Article', DEFAULT_ARTICLE, height=150)
31
 
32
  def summarize(txt=ARTICLE):
 
 
33
  st.write(summarizer(txt, max_length=130, min_length=30, do_sample=False))
34
  # [{'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.'}]
35
 
 
30
  ARTICLE = st.sidebar.text_area('Article', DEFAULT_ARTICLE, height=150)
31
 
32
  def summarize(txt=ARTICLE):
33
+ st.write(txt)
34
+ st.write('--------------------------------------------------------------')
35
  st.write(summarizer(txt, max_length=130, min_length=30, do_sample=False))
36
  # [{'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.'}]
37