DocSrvNyk commited on
Commit
2bf0366
·
verified ·
1 Parent(s): 9ff51c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -18,6 +18,8 @@ def predict_ckd_severity(age, c3, c4):
18
  else:
19
  adjusted_probability = ((probability - 50) / 50) * 100
20
 
 
 
21
  if prediction == 1:
22
  result = f"The CKD status is most likely to progress into Severe (1). The probability is {adjusted_probability:.2f}%."
23
  else:
 
18
  else:
19
  adjusted_probability = ((probability - 50) / 50) * 100
20
 
21
+ adjusted_probability = 2 * adjusted_probability
22
+
23
  if prediction == 1:
24
  result = f"The CKD status is most likely to progress into Severe (1). The probability is {adjusted_probability:.2f}%."
25
  else: