Update app.py
Browse files
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 |
-
|
|
|
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 |
|