Spaces:
Running
Running
Suchith-nj
commited on
Commit
·
9e76a11
1
Parent(s):
c1f097f
fix width issues
Browse files
pages/1_Image_Classifier.py
CHANGED
|
@@ -43,7 +43,7 @@ with col1:
|
|
| 43 |
uploaded_file = st.file_uploader("Choose a food image", type=["jpg", "jpeg", "png"])
|
| 44 |
if uploaded_file:
|
| 45 |
image = Image.open(uploaded_file)
|
| 46 |
-
st.image(image,
|
| 47 |
|
| 48 |
with col2:
|
| 49 |
st.subheader("Results")
|
|
|
|
| 43 |
uploaded_file = st.file_uploader("Choose a food image", type=["jpg", "jpeg", "png"])
|
| 44 |
if uploaded_file:
|
| 45 |
image = Image.open(uploaded_file)
|
| 46 |
+
st.image(image, width=400)
|
| 47 |
|
| 48 |
with col2:
|
| 49 |
st.subheader("Results")
|