Suchith-nj commited on
Commit
9e76a11
·
1 Parent(s): c1f097f

fix width issues

Browse files
Files changed (1) hide show
  1. pages/1_Image_Classifier.py +1 -1
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, use_container_width=True)
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")