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