Update app.py
Browse files
app.py
CHANGED
@@ -28,7 +28,7 @@ with col1:
|
|
28 |
st.image(image)
|
29 |
|
30 |
with col2:
|
31 |
-
choice = st.selectbox('Scale to', [
|
32 |
model_choice = st.selectbox('Model', ['EDSR', 'PAN', 'CARN'])
|
33 |
st.button('Upscale', on_click=upscale(model_choice))
|
34 |
|
|
|
28 |
st.image(image)
|
29 |
|
30 |
with col2:
|
31 |
+
choice = st.selectbox('Scale to', [2, 3, 4])
|
32 |
model_choice = st.selectbox('Model', ['EDSR', 'PAN', 'CARN'])
|
33 |
st.button('Upscale', on_click=upscale(model_choice))
|
34 |
|