Update app.py
Browse files
app.py
CHANGED
@@ -207,12 +207,6 @@ col3.subheader("Prediction")
|
|
207 |
col5.subheader("Decomposed")
|
208 |
col6.subheader("")
|
209 |
|
210 |
-
# Threshold slider
|
211 |
-
with col4:
|
212 |
-
st.markdown("")
|
213 |
-
# st.markdown("""<style>[data-baseweb="select"] {margin-top: -36px;}</style>""", unsafe_allow_html=True)
|
214 |
-
threshold = st.slider("Threshold", 0.0, 1.0, 0.0, 0.05, key="threshold") #, label_visibility="hidden")
|
215 |
-
|
216 |
# Scale selectbox
|
217 |
with col1:
|
218 |
st.markdown("""<style>[data-baseweb="select"] {margin-top: -46px;}</style>""", unsafe_allow_html=True)
|
@@ -223,6 +217,12 @@ with col1:
|
|
223 |
# Detect button
|
224 |
with col3: detect = st.button('Detect', key="detect")
|
225 |
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
# Decompose button
|
227 |
with col5: decompose = st.button('Decompose', key="decompose")
|
228 |
|
|
|
207 |
col5.subheader("Decomposed")
|
208 |
col6.subheader("")
|
209 |
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
# Scale selectbox
|
211 |
with col1:
|
212 |
st.markdown("""<style>[data-baseweb="select"] {margin-top: -46px;}</style>""", unsafe_allow_html=True)
|
|
|
217 |
# Detect button
|
218 |
with col3: detect = st.button('Detect', key="detect")
|
219 |
|
220 |
+
# Threshold slider
|
221 |
+
with col4:
|
222 |
+
st.markdown("")
|
223 |
+
# st.markdown("""<style>[data-baseweb="select"] {margin-top: -36px;}</style>""", unsafe_allow_html=True)
|
224 |
+
threshold = st.slider("Threshold", min_value=0.0, max_value=1.0, step=0.05, key="threshold") #, label_visibility="hidden")
|
225 |
+
|
226 |
# Decompose button
|
227 |
with col5: decompose = st.button('Decompose', key="decompose")
|
228 |
|