Mattral commited on
Commit
56d95c6
·
verified ·
1 Parent(s): 5f6939a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -128,8 +128,17 @@ def main():
128
  st.header("Exact Matches")
129
  st.write(exact_matches)
130
 
131
- st.header("Similar Texts")
132
  for text_pair in similar_texts:
 
 
 
 
 
 
 
 
 
133
  st.write(f"Row {text_pair[0]} in warehouse item stocks is similar to Row {text_pair[1]} in industry item stocks:")
134
  st.write(f"Warehouse: {text_pair[2]}")
135
  st.write(f"Industry: {text_pair[3]}")
 
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:
133
+ st.write(f"Row {text_pair[0]} in warehouse item stocks is similar to Row {text_pair[1]} in industry item stocks:")
134
+ st.write(f"Warehouse: {text_pair[2]}")
135
+ st.write(f"Industry: {text_pair[3]}")
136
+ st.write
137
+
138
+
139
+ st.header("Exactly Same Texts")
140
+
141
+ for text_pair in exact_matches:
142
  st.write(f"Row {text_pair[0]} in warehouse item stocks is similar to Row {text_pair[1]} in industry item stocks:")
143
  st.write(f"Warehouse: {text_pair[2]}")
144
  st.write(f"Industry: {text_pair[3]}")