avo-milas commited on
Commit
545c2fd
·
verified ·
1 Parent(s): d06f735

Update streamlit_app.py

Browse files
Files changed (1) hide show
  1. 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"../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}")
 
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}")