analist commited on
Commit
82e08d5
1 Parent(s): 018107d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ with col2:
14
  model_choice = st.selectbox('Model', ['EDSR', 'PAN', 'CARN'])
15
 
16
  with col1:
17
- file = st.file_uploader('Post your picture')
18
  if file is not None:
19
  image = Image.open(file)
20
 
 
14
  model_choice = st.selectbox('Model', ['EDSR', 'PAN', 'CARN'])
15
 
16
  with col1:
17
+ file = st.file_uploader('Post your picture', type=['png', 'jpeg'])
18
  if file is not None:
19
  image = Image.open(file)
20