Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
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 =
|
| 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,
|