File size: 310 Bytes
70d7fb2
 
 
 
 
 
 
 
 
 
 
6228942
70d7fb2
52d03a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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'])
    model_choice = st.selectbox('Model', ['EDSR', 'PAN', 'CARN'])

st.text(choice)