Update app.py
Browse files
app.py
CHANGED
@@ -169,11 +169,17 @@ os.system("rm -R -- */")
|
|
169 |
with col:
|
170 |
with st.container():
|
171 |
# Create heading and description
|
172 |
-
st.markdown("<h1 align='center'>Cavity Detection Tool</h1>", unsafe_allow_html=True)
|
173 |
-
st.markdown("Cavity Detection Tool (CADET) is a machine learning pipeline trained to detect X-ray cavities from noisy Chandra images of early-type galaxies.")
|
174 |
-
st.markdown("To use this tool: upload your image, select the scale of interest, make a prediction, and decompose it into individual cavities!")
|
175 |
-
st.markdown("Input images should be in units of counts, centred at the galaxy center, and point sources should be filled with surrounding background ([dmfilth](https://cxc.cfa.harvard.edu/ciao/ahelp/dmfilth.html)).")
|
176 |
-
st.markdown("If you use this tool for your research, please cite [Plšek et al. 2023](https://arxiv.org/abs/2304.05457)")
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
|
178 |
# _, col_1, col_2, col_3, _ = st.columns([bordersize, 2.0, 0.5, 0.5, bordersize])
|
179 |
|
|
|
169 |
with col:
|
170 |
with st.container():
|
171 |
# Create heading and description
|
172 |
+
# st.markdown("<h1 align='center'>Cavity Detection Tool</h1>", unsafe_allow_html=True)
|
173 |
+
# st.markdown("Cavity Detection Tool (CADET) is a machine learning pipeline trained to detect X-ray cavities from noisy Chandra images of early-type galaxies.")
|
174 |
+
# st.markdown("To use this tool: upload your image, select the scale of interest, make a prediction, and decompose it into individual cavities!")
|
175 |
+
# st.markdown("Input images should be in units of counts, centred at the galaxy center, and point sources should be filled with surrounding background ([dmfilth](https://cxc.cfa.harvard.edu/ciao/ahelp/dmfilth.html)).")
|
176 |
+
# st.markdown("If you use this tool for your research, please cite [Plšek et al. 2023](https://arxiv.org/abs/2304.05457)")
|
177 |
+
|
178 |
+
st.markdown("<h1 align='center'>Cavity Detection Tool</h1> <br>\
|
179 |
+
Cavity Detection Tool (CADET) is a machine learning pipeline trained to detect X-ray cavities from noisy Chandra images of early-type galaxies. <br>\
|
180 |
+
To use this tool: upload your image, select the scale of interest, make a prediction, and decompose it into individual cavities! <br>\
|
181 |
+
Input images should be in units of counts, centred at the galaxy center, and point sources should be filled with surrounding background ([dmfilth](https://cxc.cfa.harvard.edu/ciao/ahelp/dmfilth.html)). <br>\
|
182 |
+
If you use this tool for your research, please cite <a href='https://arxiv.org/abs/2304.05457'>Plšek et al. 2023</a>", unsafe_allow_html=True)
|
183 |
|
184 |
# _, col_1, col_2, col_3, _ = st.columns([bordersize, 2.0, 0.5, 0.5, bordersize])
|
185 |
|