Spaces:
Runtime error
Runtime error
Update streamlit_app.py
Browse files- streamlit_app.py +1 -1
streamlit_app.py
CHANGED
|
@@ -82,7 +82,7 @@ selection = {}
|
|
| 82 |
|
| 83 |
for i, img_id in enumerate(image_ids):
|
| 84 |
col = cols[i % 4]
|
| 85 |
-
image_path = f"
|
| 86 |
image = Image.open(image_path)
|
| 87 |
col.image(image, caption=f"ID {img_id}", use_container_width=True)
|
| 88 |
selection[img_id] = col.checkbox(f"Select ID {img_id}")
|
|
|
|
| 82 |
|
| 83 |
for i, img_id in enumerate(image_ids):
|
| 84 |
col = cols[i % 4]
|
| 85 |
+
image_path = f"images/{img_id}.png"
|
| 86 |
image = Image.open(image_path)
|
| 87 |
col.image(image, caption=f"ID {img_id}", use_container_width=True)
|
| 88 |
selection[img_id] = col.checkbox(f"Select ID {img_id}")
|