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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -8,7 +8,7 @@ model = joblib.load(model_path)
8
 
9
  # Define the prediction function
10
  def predict_ckd_severity(age, c3, c4):
11
- c3_c4_ratio = c3 / c4
12
  features = np.array([[age, c3, c4, c3_c4_ratio]])
13
  prediction = model.predict(features)[0]
14
  probability = model.predict_proba(features)[0][prediction] * 100
@@ -18,7 +18,6 @@ def predict_ckd_severity(age, c3, c4):
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}%."
 
8
 
9
  # Define the prediction function
10
  def predict_ckd_severity(age, c3, c4):
11
+ c3_c4_ratio = round(c3 / c4, 2)
12
  features = np.array([[age, c3, c4, c3_c4_ratio]])
13
  prediction = model.predict(features)[0]
14
  probability = model.predict_proba(features)[0][prediction] * 100
 
18
  else:
19
  adjusted_probability = ((probability - 50) / 50) * 100
20
 
 
21
 
22
  if prediction == 1:
23
  result = f"The CKD status is most likely to progress into Severe (1). The probability is {adjusted_probability:.2f}%."