epalvarez commited on
Commit
c2d5283
·
verified ·
1 Parent(s): 2aefedd

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -86,7 +86,7 @@ def predict_insurance_charge(age, bmi, children, sex, smoker, region):
86
  ))
87
  f.write("\n")
88
 
89
- prediction_result = prediction[0][0][0]S
90
  print(f"\nDebug - Prediction result: {prediction_result} - {type(prediction_result)}\n")
91
  return prediction_result
92
 
 
86
  ))
87
  f.write("\n")
88
 
89
+ prediction_result = prediction[0][0][0]
90
  print(f"\nDebug - Prediction result: {prediction_result} - {type(prediction_result)}\n")
91
  return prediction_result
92