saifhmb commited on
Commit
dbcccbc
·
unverified ·
1 Parent(s): 210e627

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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", "Type Here")
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)