wissemkarous commited on
Commit
0161f2f
1 Parent(s): 4e3edd8
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -138,7 +138,8 @@ def show_wellness_test_page():
138
  if pred:
139
  # Pass the values to the prediction page
140
  result = predict_result(df)
141
- st.write("This team will win : ",result,"%")
 
142
  threshold = 50
143
  thresholded_result = 1 if result > threshold else 0
144
  df['Label'] = thresholded_result
 
138
  if pred:
139
  # Pass the values to the prediction page
140
  result = predict_result(df)
141
+ st.write("Result : ",result,"%")
142
+ st.write("Made with <3")
143
  threshold = 50
144
  thresholded_result = 1 if result > threshold else 0
145
  df['Label'] = thresholded_result