Update app.py
Browse files
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 |
|