green commited on
Commit
eaf763c
1 Parent(s): f1ed70b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -6
app.py CHANGED
@@ -265,16 +265,17 @@ with st.form(key='columns_in_form'):
265
  else:
266
  st.write("Your digest is ready:\n")
267
  st.info(digestor.text)
268
- st.write(f"""Text approximately {len(digestor.text.split(" ") )} words.""")
269
- st.write(f"""Number of articles summarized: {outdata['article_count']}""")
270
-
271
 
272
  st.success(f"""Digest completed in {digestor.timer.timers['digest_time']} seconds.""")
273
-
274
- st.write("Here are some stats about the summarization:\n")
275
 
276
  # Summarize the findings for all models
277
  show_length_graph()
278
-
 
 
279
 
280
  "st.session_state object:", st.session_state
 
265
  else:
266
  st.write("Your digest is ready:\n")
267
  st.info(digestor.text)
268
+
269
+ st.subheader("Summarization stats:")
 
270
 
271
  st.success(f"""Digest completed in {digestor.timer.timers['digest_time']} seconds.""")
272
+ st.write(f"""Text approximately {len(digestor.text.split(" ") )} words.""")
273
+ st.write(f"""Number of articles summarized: {outdata['article_count']}""")
274
 
275
  # Summarize the findings for all models
276
  show_length_graph()
277
+
278
+ st.subheader("Issues: ")
279
+ st.write("Repetition:")
280
 
281
  "st.session_state object:", st.session_state