willco-afk commited on
Commit
3543c6b
·
verified ·
1 Parent(s): 78435e5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -29,8 +29,7 @@ uploaded_file = st.file_uploader("Choose an image...", type=["jpg", "jpeg", "png
29
  if uploaded_file is not None:
30
  # Display the uploaded image
31
  image = Image.open(uploaded_file)
32
- # Updated Line:
33
- st.image(image, caption="Uploaded Image.", use_container_width=True)
34
  st.write("")
35
  st.write("Classifying...")
36
 
 
29
  if uploaded_file is not None:
30
  # Display the uploaded image
31
  image = Image.open(uploaded_file)
32
+ st.image(image, caption="Uploaded Image.", use_column_width=True)
 
33
  st.write("")
34
  st.write("Classifying...")
35