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