Update app.py
Browse files
app.py
CHANGED
@@ -188,7 +188,7 @@ if uploaded_file is not None:
|
|
188 |
ccd.write(f"predicted_{i+1}.fits", overwrite=True)
|
189 |
image_decomposed += (i+1) * np.where(cav > 0, 1, 0)
|
190 |
|
191 |
-
shutil.make_archive("predictions", 'zip', "predictions")
|
192 |
np.save("decomposed.npy", image_decomposed)
|
193 |
|
194 |
try: image_decomposed = np.load("decomposed.npy")
|
@@ -196,8 +196,14 @@ if uploaded_file is not None:
|
|
196 |
plot_decomposed(image_decomposed)
|
197 |
|
198 |
with col6:
|
199 |
-
|
200 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
# st.markdown("""<style>[data-baseweb="select"] {margin-top: 16px;}</style>""", unsafe_allow_html=True)
|
202 |
# # download = st.button('Download')
|
203 |
-
download = st.download_button(label="Download", data=res, file_name=
|
|
|
188 |
ccd.write(f"predicted_{i+1}.fits", overwrite=True)
|
189 |
image_decomposed += (i+1) * np.where(cav > 0, 1, 0)
|
190 |
|
191 |
+
shutil.make_archive("predictions.zip", 'zip', "predictions")
|
192 |
np.save("decomposed.npy", image_decomposed)
|
193 |
|
194 |
try: image_decomposed = np.load("decomposed.npy")
|
|
|
196 |
plot_decomposed(image_decomposed)
|
197 |
|
198 |
with col6:
|
199 |
+
try:
|
200 |
+
name = 'predictions.zip'
|
201 |
+
with open(name, 'rb') as f:
|
202 |
+
res = f.read()
|
203 |
+
except:
|
204 |
+
name = uploaded_file
|
205 |
+
with open(name, 'rb') as f:
|
206 |
+
res = f.read()
|
207 |
# st.markdown("""<style>[data-baseweb="select"] {margin-top: 16px;}</style>""", unsafe_allow_html=True)
|
208 |
# # download = st.button('Download')
|
209 |
+
download = st.download_button(label="Download", data=res, file_name=name, mime="application/octet-stream")
|