wiaandev commited on
Commit
ccf4de5
·
1 Parent(s): cdc3ab5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,5 +20,5 @@ for feature in model_info["features"]:
20
  if st.button("Predict Salary"):
21
  input_features = [feature_values[feature] for feature in model_info["features"]]
22
  prediction = model.predict([input_features])[0]
23
- rounded_prediction = round(prediction)
24
  st.write(f"Predicted annual salary: ${rounded_prediction[0]}")
 
20
  if st.button("Predict Salary"):
21
  input_features = [feature_values[feature] for feature in model_info["features"]]
22
  prediction = model.predict([input_features])[0]
23
+ rounded_prediction = math.ceil(prediction)
24
  st.write(f"Predicted annual salary: ${rounded_prediction[0]}")