harishsohani commited on
Commit
26df5a7
·
verified ·
1 Parent(s): 3f4368e

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ Tenure = st.number_input ("Tenure (Months with the company)", min_value
19
  MonthlyCharges = st.number_input ("Monthly Charges", min_value=0.0, value=50.0)
20
  TotalCharges = st.number_input ("Total Charges", min_value=0.0, value=600.0)
21
 
22
- input_data = pd.DataFrame {
23
  'customerID': CustId,
24
  'SeniorCitizen': 1 if Age > 60 else 0,
25
  'tenure': Tenure,
 
19
  MonthlyCharges = st.number_input ("Monthly Charges", min_value=0.0, value=50.0)
20
  TotalCharges = st.number_input ("Total Charges", min_value=0.0, value=600.0)
21
 
22
+ input_data = {
23
  'customerID': CustId,
24
  'SeniorCitizen': 1 if Age > 60 else 0,
25
  'tenure': Tenure,