Update app.py
Browse files
app.py
CHANGED
|
@@ -9,7 +9,7 @@ mm2=load_model()
|
|
| 9 |
st.title('custo_churn')
|
| 10 |
st.write('enter the details')
|
| 11 |
cred=st.number_input('credit score',min_value=300,max_value=900,value=650)
|
| 12 |
-
geo=st.selectbox('geography',['
|
| 13 |
Age = st.number_input("Age (customer's age in years)", min_value=18, max_value=100, value=30)
|
| 14 |
Tenure = st.number_input("Tenure (number of years the customer has been with the bank)", value=12)
|
| 15 |
Balance = st.number_input("Account Balance (customer’s account balance)", min_value=0.0, value=10000.0)
|
|
|
|
| 9 |
st.title('custo_churn')
|
| 10 |
st.write('enter the details')
|
| 11 |
cred=st.number_input('credit score',min_value=300,max_value=900,value=650)
|
| 12 |
+
geo=st.selectbox('geography',['France','Germany','Spain'])
|
| 13 |
Age = st.number_input("Age (customer's age in years)", min_value=18, max_value=100, value=30)
|
| 14 |
Tenure = st.number_input("Tenure (number of years the customer has been with the bank)", value=12)
|
| 15 |
Balance = st.number_input("Account Balance (customer’s account balance)", min_value=0.0, value=10000.0)
|