Update app.py
Browse files
app.py
CHANGED
@@ -87,7 +87,7 @@ if uploaded_file is not None:
|
|
87 |
|
88 |
with col2:
|
89 |
# st.markdown("""<style>[data-baseweb="select"] {margin-top: -52px;}</style>""", unsafe_allow_html=True)
|
90 |
-
st.markdown("""<style>[data-baseweb="select"] {margin-top:
|
91 |
|
92 |
max_scale = int(data.shape[0] // 128)
|
93 |
# scale = st.slider("Scale", 1, max_scale, 1, 1)
|
@@ -97,7 +97,7 @@ if uploaded_file is not None:
|
|
97 |
detect = st.button('Detect cavities')
|
98 |
|
99 |
with col4:
|
100 |
-
st.markdown("""<style>[data-baseweb="select"] {margin-top:
|
101 |
download = st.button('Download')
|
102 |
|
103 |
colA, colB = st.columns(2)
|
@@ -122,9 +122,8 @@ if uploaded_file is not None:
|
|
122 |
|
123 |
plot_prediction(y_pred)
|
124 |
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
st.download_button(label="Download", data=data, file_name="predicted.fits", mime="application/octet-stream")
|
|
|
87 |
|
88 |
with col2:
|
89 |
# st.markdown("""<style>[data-baseweb="select"] {margin-top: -52px;}</style>""", unsafe_allow_html=True)
|
90 |
+
st.markdown("""<style>[data-baseweb="select"] {margin-top: 32px;}</style>""", unsafe_allow_html=True)
|
91 |
|
92 |
max_scale = int(data.shape[0] // 128)
|
93 |
# scale = st.slider("Scale", 1, max_scale, 1, 1)
|
|
|
97 |
detect = st.button('Detect cavities')
|
98 |
|
99 |
with col4:
|
100 |
+
st.markdown("""<style>[data-baseweb="select"] {margin-top: 32px;}</style>""", unsafe_allow_html=True)
|
101 |
download = st.button('Download')
|
102 |
|
103 |
colA, colB = st.columns(2)
|
|
|
122 |
|
123 |
plot_prediction(y_pred)
|
124 |
|
125 |
+
ccd = CCDData(y_pred, unit="adu", wcs=wcs)
|
126 |
+
ccd.write("predicted.fits", overwrite=True)
|
127 |
+
with open('predicted.fits', 'rb') as f:
|
128 |
+
data = f.read()
|
129 |
+
st.download_button(label="Download", data=data, file_name="predicted.fits", mime="application/octet-stream")
|
|