analist commited on
Commit
be6e1cf
·
1 Parent(s): 667c42e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,7 +28,7 @@ with col1:
28
  st.image(image)
29
 
30
  with col2:
31
- choice = st.selectbox('Scale to', ['x2', 'x3', 'x4'])
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