Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ def main():
|
|
10 |
st.title("Predict mobile price range")
|
11 |
|
12 |
with st.form("questionaire"):
|
13 |
-
battery_power = st.slider("Battery Power(mAh)",min_value =
|
14 |
blue = st.selectbox("Have Bluetooth?",options = bool_list)
|
15 |
clock_speed = st.slider("Microprocessor clock speed",min_value = 0.1, max_value = 3.0, step=0.1)
|
16 |
dual_sim = st.selectbox("Have Dualsim?",options = bool_list)
|
|
|
10 |
st.title("Predict mobile price range")
|
11 |
|
12 |
with st.form("questionaire"):
|
13 |
+
battery_power = st.slider("Battery Power(mAh)",min_value = 1, max_value = 2000, step=1)
|
14 |
blue = st.selectbox("Have Bluetooth?",options = bool_list)
|
15 |
clock_speed = st.slider("Microprocessor clock speed",min_value = 0.1, max_value = 3.0, step=0.1)
|
16 |
dual_sim = st.selectbox("Have Dualsim?",options = bool_list)
|