segestic commited on
Commit
e2ff206
·
1 Parent(s): b7f151e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -42,7 +42,7 @@ st.title("🦠 Brain Tumor Prediction App from MRI Images")
42
 
43
 
44
 
45
- col1, col2 = st.columns([6, 3], gap="medium")
46
 
47
  with col1:
48
 
@@ -57,7 +57,7 @@ with col1:
57
  st.write(file_details)
58
 
59
  #View Uploaded Image
60
- st.image(load_image(image),width=512)
61
  #save image to disk
62
  saved = save_uploadedfile(image)
63
 
 
42
 
43
 
44
 
45
+ col1, spacer, col2 = st.columns([6,1,3], gap="medium")
46
 
47
  with col1:
48
 
 
57
  st.write(file_details)
58
 
59
  #View Uploaded Image
60
+ st.image(load_image(image),width=200)
61
  #save image to disk
62
  saved = save_uploadedfile(image)
63