Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ st.markdown("This is a Deep Learning application to identify if a satellite imag
|
|
12 |
st.markdown('The predicting result will be "Palm", or "Others".')
|
13 |
st.markdown('You can click "Browse files" multiple times until adding all images before generating prediction.\n')
|
14 |
|
15 |
-
uploaded_file = st.file_uploader("Upload an image file", type="jpg")
|
16 |
st.image(uploaded_file, width=100)
|
17 |
|
18 |
img_height = 224
|
|
|
12 |
st.markdown('The predicting result will be "Palm", or "Others".')
|
13 |
st.markdown('You can click "Browse files" multiple times until adding all images before generating prediction.\n')
|
14 |
|
15 |
+
uploaded_file = st.file_uploader("Upload an image file", type="jpg", accept_multiple_files=True)
|
16 |
st.image(uploaded_file, width=100)
|
17 |
|
18 |
img_height = 224
|