Update app.py
Browse files
app.py
CHANGED
@@ -59,8 +59,7 @@ if uploaded_image is not None:
|
|
59 |
st.pyplot(fig)
|
60 |
|
61 |
# Example images
|
62 |
-
|
63 |
-
|
64 |
-
"pokemon/train/lapras/00000000.png"]
|
65 |
for example_image in example_images:
|
66 |
-
st.image(example_image, use_column_width=True)
|
|
|
59 |
st.pyplot(fig)
|
60 |
|
61 |
# Example images
|
62 |
+
st.sidebar.title("Examples")
|
63 |
+
example_images = ["pokemon/train/chansey/00000000.png", "pokemon/train/growlithe/00000000.png", "pokemon/train/lapras/00000000.png"]
|
|
|
64 |
for example_image in example_images:
|
65 |
+
st.sidebar.image(example_image, use_column_width=True)
|