Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
analist
/
upscaler
like
3
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
70d7fb2
upscaler
/
app.py
analist
Create app.py
70d7fb2
over 1 year ago
raw
Copy download link
history
blame
Safe
229 Bytes
import
streamlit
as
st
st.title(
'Take your picture to the next level'
)
col1, col2 = st.columns([
3
,
1
])
with
col1:
st.camera_input(
'Post your picture'
)
with
col2:
choice = st.selectbox(
'Scale to'
, [
'x2'
,
'x3'
,
'x4'
])