AXL14 commited on
Commit
c4afc2d
1 Parent(s): d51b408

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -238,7 +238,7 @@ def compute(Y_pred, Y_test):
238
  plt.colorbar()
239
  st.pyplot()
240
 
241
- c1, c2 = st.beta_columns((4, 3))
242
  # Output plot
243
  plt.figure(figsize=(12, 6))
244
  plt.scatter(range(len(Y_pred)), Y_pred, color="blue", lw=5, label="Predictions")
@@ -301,7 +301,7 @@ def user_inputs_ui(da, data):
301
  # User values
302
  st.markdown("<hr>", unsafe_allow_html=True)
303
  st.header("2) User Values")
304
- with st.beta_expander("Learn More"):
305
  st.markdown("""
306
  Please fill in your data to see the results.<br>
307
  <p style='color: red;'> 1 - High Risk </p> <p style='color: green;'> 0 - Low Risk </p>
 
238
  plt.colorbar()
239
  st.pyplot()
240
 
241
+ c1, c2 = st.columns((4, 3))
242
  # Output plot
243
  plt.figure(figsize=(12, 6))
244
  plt.scatter(range(len(Y_pred)), Y_pred, color="blue", lw=5, label="Predictions")
 
301
  # User values
302
  st.markdown("<hr>", unsafe_allow_html=True)
303
  st.header("2) User Values")
304
+ with st.expander("Learn More"):
305
  st.markdown("""
306
  Please fill in your data to see the results.<br>
307
  <p style='color: red;'> 1 - High Risk </p> <p style='color: green;'> 0 - Low Risk </p>