Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ def main():
|
|
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)
|
17 |
four_g = st.selectbox("Have 4G?",options = bool_list)
|
18 |
-
m_dep = st.slider("Mobile Depth(cm)",min_value = 0.1, max_value = 1, step=0.1)
|
19 |
mobile_wt = st.slider("Mobile Weight(gram)",min_value = 50, max_value = 200, step=1)
|
20 |
n_cores = st.slider("Number of processor core",min_value = 1, max_value = 8, step=1)
|
21 |
px_height = st.slider("Resolution height(pixels)",min_value = 1, max_value = 1960, step=1)
|
|
|
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)
|
17 |
four_g = st.selectbox("Have 4G?",options = bool_list)
|
18 |
+
m_dep = st.slider("Mobile Depth(cm)",min_value = 0.1, max_value = 1.0, step=0.1)
|
19 |
mobile_wt = st.slider("Mobile Weight(gram)",min_value = 50, max_value = 200, step=1)
|
20 |
n_cores = st.slider("Number of processor core",min_value = 1, max_value = 8, step=1)
|
21 |
px_height = st.slider("Resolution height(pixels)",min_value = 1, max_value = 1960, step=1)
|