saifhmb
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -84,7 +84,7 @@ def main():
|
|
84 |
|
85 |
st.markdown("To determine whether a customer will make a purchase, please **enter** the Age and Estimated Salary:")
|
86 |
Age = st.number_input("Age")
|
87 |
-
EstimatedSalary = st.number_input("Estimated Salary"
|
88 |
result = ""
|
89 |
if st.button("Predict"):
|
90 |
result = prediction(Age, EstimatedSalary)
|
|
|
84 |
|
85 |
st.markdown("To determine whether a customer will make a purchase, please **enter** the Age and Estimated Salary:")
|
86 |
Age = st.number_input("Age")
|
87 |
+
EstimatedSalary = st.number_input("Estimated Salary")
|
88 |
result = ""
|
89 |
if st.button("Predict"):
|
90 |
result = prediction(Age, EstimatedSalary)
|