Update app.py
Browse files
app.py
CHANGED
@@ -180,8 +180,7 @@ if uploaded_file is not None:
|
|
180 |
with col5: decompose = st.button('Decompose')
|
181 |
|
182 |
with col6:
|
183 |
-
|
184 |
-
with open('predictions.zip', 'rb') as f:
|
185 |
res = f.read()
|
186 |
st.markdown("")
|
187 |
st.markdown("")
|
@@ -207,4 +206,9 @@ if uploaded_file is not None:
|
|
207 |
|
208 |
image_decomposed = decompose_cavity(y_pred_th)
|
209 |
|
210 |
-
plot_decomposed(image_decomposed)
|
|
|
|
|
|
|
|
|
|
|
|
180 |
with col5: decompose = st.button('Decompose')
|
181 |
|
182 |
with col6:
|
183 |
+
with open(uploaded_file.name, 'rb') as f:
|
|
|
184 |
res = f.read()
|
185 |
st.markdown("")
|
186 |
st.markdown("")
|
|
|
206 |
|
207 |
image_decomposed = decompose_cavity(y_pred_th)
|
208 |
|
209 |
+
plot_decomposed(image_decomposed)
|
210 |
+
|
211 |
+
shutil.make_archive("predictions", 'zip', "predictions")
|
212 |
+
with open('predictions.zip', 'rb') as f:
|
213 |
+
res = f.read()
|
214 |
+
download.data=res
|