Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -169,18 +169,18 @@ def main():
|
|
169 |
# Display exact matches
|
170 |
st.header("Exact Matches Compare")
|
171 |
for match in exact_matches:
|
172 |
-
st.write(f"Row {match[0]} in warehouse item stocks is exactly the same as Row {match[1]} in industry item stocks:")
|
173 |
-
st.write(f"Warehouse: {match[2]
|
174 |
-
st.write(f"Industry: {match[3]
|
175 |
st.write(f"____________________")
|
176 |
st.write()
|
177 |
|
178 |
# Display similar texts
|
179 |
st.header("Similar (but Not Same) Texts")
|
180 |
for text_pair in similar_texts:
|
181 |
-
st.write(f"Row {text_pair[0]} in warehouse item stocks is similar to Row {text_pair[1]} in industry item stocks:")
|
182 |
-
st.write(f"Warehouse: {text_pair[2]
|
183 |
-
st.write(f"Industry: {text_pair[3]
|
184 |
st.write(f"____________________")
|
185 |
st.write()
|
186 |
|
|
|
169 |
# Display exact matches
|
170 |
st.header("Exact Matches Compare")
|
171 |
for match in exact_matches:
|
172 |
+
st.write(f"Row {match[0]+2} in warehouse item stocks is exactly the same as Row {match[1]+2} in industry item stocks:")
|
173 |
+
st.write(f"Warehouse: {match[2]}")
|
174 |
+
st.write(f"Industry: {match[3]}")
|
175 |
st.write(f"____________________")
|
176 |
st.write()
|
177 |
|
178 |
# Display similar texts
|
179 |
st.header("Similar (but Not Same) Texts")
|
180 |
for text_pair in similar_texts:
|
181 |
+
st.write(f"Row {text_pair[0]+2} in warehouse item stocks is similar to Row {text_pair[1]+2} in industry item stocks:")
|
182 |
+
st.write(f"Warehouse: {text_pair[2]}")
|
183 |
+
st.write(f"Industry: {text_pair[3]}")
|
184 |
st.write(f"____________________")
|
185 |
st.write()
|
186 |
|