Kolpitor commited on
Commit
28a2b6f
·
1 Parent(s): c1eaa65

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,5 +1,6 @@
1
 
2
  import streamlit as st
 
3
 
4
  """
5
  # AI_ML
@@ -8,4 +9,4 @@ import streamlit as st
8
  uploaded_file = st.file_uploader("Choose a picture")
9
 
10
 
11
- st.image(load_image(uploaded_file),width=250)
 
1
 
2
  import streamlit as st
3
+ from PIL import Image
4
 
5
  """
6
  # AI_ML
 
9
  uploaded_file = st.file_uploader("Choose a picture")
10
 
11
 
12
+ st.image(Image.open(uploaded_file),width=250)