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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -152,6 +152,7 @@ if uploaded_file is not None:
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
 
156
  plot_prediction(y_pred)
157
 
 
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