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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -20,4 +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
- st.write(f"Predicted annual salary: ${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 = round(prediction)
24
+ st.write(f"Predicted annual salary: ${rounded_prediction[0]}")