Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Kolpitor
/
AI_ML
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5f9a6f6
AI_ML
/
app.py
Kolpitor
Update app.py
5f9a6f6
over 2 years ago
raw
Copy download link
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
)