Updated
Browse files
app.py
CHANGED
|
@@ -66,6 +66,7 @@ if file is not None:
|
|
| 66 |
|
| 67 |
for i, idx in enumerate(indices[0]):
|
| 68 |
product_path = filenames[idx]
|
|
|
|
| 69 |
st.write(product_path)
|
| 70 |
product_image = Image.open(product_path)
|
| 71 |
|
|
|
|
| 66 |
|
| 67 |
for i, idx in enumerate(indices[0]):
|
| 68 |
product_path = filenames[idx]
|
| 69 |
+
product_path = product_path.replace("\\", "\")
|
| 70 |
st.write(product_path)
|
| 71 |
product_image = Image.open(product_path)
|
| 72 |
|