init
Browse files
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("
|
|
|
|
| 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
|