Mattral commited on
Commit
a5d721e
·
verified ·
1 Parent(s): 8e6869e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -127,6 +127,11 @@ def main():
127
  # Display results
128
  st.header("Exact Matches")
129
  st.write(exact_matches)
 
 
 
 
 
130
 
131
  st.header("Similar (but Not Same) Texts")
132
  for text_pair in similar_texts:
 
127
  # Display results
128
  st.header("Exact Matches")
129
  st.write(exact_matches)
130
+ for text_pair in exact_matches:
131
+ st.write(f"Row {text_pair[0]} in warehouse item stocks is similar to Row {text_pair[1]} in industry item stocks:")
132
+ st.write(f"Warehouse: {text_pair[2]}")
133
+ st.write(f"Industry: {text_pair[3]}")
134
+ st.write
135
 
136
  st.header("Similar (but Not Same) Texts")
137
  for text_pair in similar_texts: