AI_ML / app.py
Kolpitor's picture
Update app.py
5f9a6f6
raw
history blame
197 Bytes
import streamlit as st
from PIL import Image
"""
# AI_ML
"""
uploaded_file = st.file_uploader("Choose a picture")
if uploaded_file is not None:
st.image(Image.open(uploaded_file),width=250)