Plsek commited on
Commit
fc27f4e
·
1 Parent(s): 77d5b19

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -151,8 +151,9 @@ if uploaded_file is not None:
151
  with colB:
152
  st.markdown("""<style>[data-baseweb="select"] {margin-top: -36px;}</style>""", unsafe_allow_html=True)
153
  threshold = st.slider("", 0.0, 1.0, 0.0, 0.05, label_visibility="hidden")
 
154
  y_pred = np.where(y_pred > threshold, y_pred, 0)
155
- plot_prediction(y_pred)
156
 
157
  plot_prediction(y_pred)
158
 
 
151
  with colB:
152
  st.markdown("""<style>[data-baseweb="select"] {margin-top: -36px;}</style>""", unsafe_allow_html=True)
153
  threshold = st.slider("", 0.0, 1.0, 0.0, 0.05, label_visibility="hidden")
154
+ if threshold > 0: detect = True
155
  y_pred = np.where(y_pred > threshold, y_pred, 0)
156
+ # plot_prediction(y_pred)
157
 
158
  plot_prediction(y_pred)
159