Update app.py
Browse files
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 =
|
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]}")
|