Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -171,7 +171,7 @@ def main():
|
|
171 |
for match in exact_matches:
|
172 |
warehouse_index = text_pair[0] + 2
|
173 |
industry_index = text_pair[1] + 2
|
174 |
-
st.write(f"Row {
|
175 |
st.write(f"Warehouse: {match[2]}")
|
176 |
st.write(f"Industry: {match[3]}")
|
177 |
st.write(f"____________________")
|
@@ -183,7 +183,7 @@ def main():
|
|
183 |
warehouse_index = text_pair[0] + 2
|
184 |
industry_index = text_pair[1] + 2
|
185 |
|
186 |
-
st.write(f"Row {
|
187 |
st.write(f"Warehouse: {text_pair[2]}")
|
188 |
st.write(f"Industry: {text_pair[3]}")
|
189 |
st.write(f"____________________")
|
|
|
171 |
for match in exact_matches:
|
172 |
warehouse_index = text_pair[0] + 2
|
173 |
industry_index = text_pair[1] + 2
|
174 |
+
st.write(f"Row {warehouse_index} in warehouse item stocks is exactly the same as Row {industry_index} in industry item stocks:")
|
175 |
st.write(f"Warehouse: {match[2]}")
|
176 |
st.write(f"Industry: {match[3]}")
|
177 |
st.write(f"____________________")
|
|
|
183 |
warehouse_index = text_pair[0] + 2
|
184 |
industry_index = text_pair[1] + 2
|
185 |
|
186 |
+
st.write(f"Row {warehouse_index} in warehouse item stocks is similar to Row {industry_index} in industry item stocks:")
|
187 |
st.write(f"Warehouse: {text_pair[2]}")
|
188 |
st.write(f"Industry: {text_pair[3]}")
|
189 |
st.write(f"____________________")
|