Update my_model/results/demo.py
Browse files- my_model/results/demo.py +1 -1
my_model/results/demo.py
CHANGED
@@ -208,7 +208,7 @@ class ResultDemonstrator:
|
|
208 |
|
209 |
for img_filename in target_imgs:
|
210 |
image_data = self.main_data[self.main_data['image_filename'] == img_filename]
|
211 |
-
im = Image.open(f"config.DEMO_IMAGES_PATH/{img_filename}")
|
212 |
col1, col2 = st.columns([1, 2]) # to display images side by side with their data.
|
213 |
# Create a container for each image
|
214 |
with st.container():
|
|
|
208 |
|
209 |
for img_filename in target_imgs:
|
210 |
image_data = self.main_data[self.main_data['image_filename'] == img_filename]
|
211 |
+
im = Image.open(f"{config.DEMO_IMAGES_PATH}/{img_filename}")
|
212 |
col1, col2 = st.columns([1, 2]) # to display images side by side with their data.
|
213 |
# Create a container for each image
|
214 |
with st.container():
|