Update app.py
Browse files
app.py
CHANGED
@@ -33,7 +33,7 @@ if uploaded_file is not None:
|
|
33 |
|
34 |
img = Image.open(uploaded_file)
|
35 |
img_resized = img.resize((100, 100))
|
36 |
-
st.image(img_resized, caption="Uploaded Image.", use_container_width=
|
37 |
|
38 |
|
39 |
if st.button('Classify'):
|
|
|
33 |
|
34 |
img = Image.open(uploaded_file)
|
35 |
img_resized = img.resize((100, 100))
|
36 |
+
st.image(img_resized, caption="Uploaded Image.", use_container_width=False)
|
37 |
|
38 |
|
39 |
if st.button('Classify'):
|