green commited on
Commit
fdf8ddf
1 Parent(s): 240b9d5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -321,7 +321,8 @@ with st.form(key='columns_in_form'):
321
  st.subheader("Text redundancy: ")
322
  for each in selections:
323
  # check if two source articles share a cluster and not a source.
324
- st.write(clusters[each])
 
325
 
326
  st.write("If more than one source have their own versions of the same topic from the same perspective, the result may be repetitive, or it may add nuance and the two summaries may complement each other.")
327
 
 
321
  st.subheader("Text redundancy: ")
322
  for each in selections:
323
  # check if two source articles share a cluster and not a source.
324
+ for i in clusters[each]:
325
+ st.write(i[3].source_name)
326
 
327
  st.write("If more than one source have their own versions of the same topic from the same perspective, the result may be repetitive, or it may add nuance and the two summaries may complement each other.")
328