Plsek commited on
Commit
16cf1a4
·
1 Parent(s): ff9f313

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -8
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: 52px;}</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,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: 52px;}</style>""", unsafe_allow_html=True)
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
- if download:
126
- ccd = CCDData(y_pred, unit="adu", wcs=wcs)
127
- ccd.write("predicted.fits", overwrite=True)
128
- with open('predicted.fits', 'rb') as f:
129
- data = f.read()
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")