Update app.py
Browse files
app.py
CHANGED
@@ -219,7 +219,7 @@ if uploaded_file is not None:
|
|
219 |
plot_decomposed(image_decomposed)
|
220 |
|
221 |
with col6:
|
222 |
-
shutil.make_archive("predictions
|
223 |
with open('predictions.zip', 'rb') as f:
|
224 |
res = f.read()
|
225 |
st.markdown("""<style>[data-baseweb="select"] {margin-top: 16px;}</style>""", unsafe_allow_html=True)
|
|
|
219 |
plot_decomposed(image_decomposed)
|
220 |
|
221 |
with col6:
|
222 |
+
shutil.make_archive("predictions", 'zip', "predictions")
|
223 |
with open('predictions.zip', 'rb') as f:
|
224 |
res = f.read()
|
225 |
st.markdown("""<style>[data-baseweb="select"] {margin-top: 16px;}</style>""", unsafe_allow_html=True)
|