Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -46,7 +46,7 @@ with st.form("consumption_form"):
|
|
46 |
marital_status = st.selectbox("Marital Status", options=marital_status_options, index=0)
|
47 |
marital_status_value = str(marital_status_options.index(marital_status) + 1)
|
48 |
|
49 |
-
consumption = st.number_input("Day/Night Consumption", min_value=0.0, value=1, format="%.2f")
|
50 |
|
51 |
income_options = ["Less than 10,000", "Between 10,000 and 30,000",
|
52 |
"Between 40,000 and 60,000", "Between 60,000 and 100,000", "More than 100,000"]
|
|
|
46 |
marital_status = st.selectbox("Marital Status", options=marital_status_options, index=0)
|
47 |
marital_status_value = str(marital_status_options.index(marital_status) + 1)
|
48 |
|
49 |
+
consumption = st.number_input("Day/Night Consumption", min_value=0.0, value=1.0, format="%.2f")
|
50 |
|
51 |
income_options = ["Less than 10,000", "Between 10,000 and 30,000",
|
52 |
"Between 40,000 and 60,000", "Between 60,000 and 100,000", "More than 100,000"]
|