Plsek commited on
Commit
925e662
·
1 Parent(s): 3bee343

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -162,9 +162,12 @@ if uploaded_file is not None:
162
  st.session_state.default = 0.0
163
 
164
  with col1:
 
 
 
165
  # st.markdown("""<style>[data-baseweb="select"] {margin-top: -26px;}</style>""", unsafe_allow_html=True)
166
  max_scale = int(data.shape[0] // 128)
167
- scale = st.selectbox('Scale:',[f"{(i+1)*128}x{(i+1)*128}" for i in range(max_scale)], label_visibility="hidden", on_change=lambda _: st.session_state.default = 0.0)
168
  scale = int(scale.split("x")[0]) // 128
169
 
170
  with col3:
 
162
  st.session_state.default = 0.0
163
 
164
  with col1:
165
+ def default_theshold():
166
+ st.session_state.default = 0.0
167
+
168
  # st.markdown("""<style>[data-baseweb="select"] {margin-top: -26px;}</style>""", unsafe_allow_html=True)
169
  max_scale = int(data.shape[0] // 128)
170
+ scale = st.selectbox('Scale:',[f"{(i+1)*128}x{(i+1)*128}" for i in range(max_scale)], label_visibility="hidden", on_change=default_threshold)
171
  scale = int(scale.split("x")[0]) // 128
172
 
173
  with col3: