Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -13,7 +13,7 @@ st.subheader("Online SuperKart's Model")
|
|
| 13 |
product_weight = st.number_input("Product Weight (in grams)", min_value=0.0, step=0.1)
|
| 14 |
product_sugar_content = st.selectbox(
|
| 15 |
"Product Sugar Content",
|
| 16 |
-
["Low Sugar", "Regular", "No Sugar"]
|
| 17 |
)
|
| 18 |
product_allocated_area = st.number_input(
|
| 19 |
"Producted Allocated Area (sq. ft.)", min_value=0.01, step=0.01, value=0.01
|
|
@@ -46,15 +46,15 @@ product_mrp = st.number_input(
|
|
| 46 |
|
| 47 |
store_size = st.selectbox(
|
| 48 |
"Store Size",
|
| 49 |
-
["Low", "Medium", "High"]
|
| 50 |
)
|
| 51 |
store_location_city_type = st.selectbox(
|
| 52 |
"Store Location City Type",
|
| 53 |
-
["Tier 1", "Tier 2", "Tier 3"]
|
| 54 |
)
|
| 55 |
store_type = st.selectbox(
|
| 56 |
"Store Type",
|
| 57 |
-
["Departmental Store", "Food Mart", "Supermarket Type1", "Supermarket Type2"]
|
| 58 |
)
|
| 59 |
|
| 60 |
# Convert user input into a DataFrame
|
|
|
|
| 13 |
product_weight = st.number_input("Product Weight (in grams)", min_value=0.0, step=0.1)
|
| 14 |
product_sugar_content = st.selectbox(
|
| 15 |
"Product Sugar Content",
|
| 16 |
+
["Low Sugar", "Regular", "No Sugar"]
|
| 17 |
)
|
| 18 |
product_allocated_area = st.number_input(
|
| 19 |
"Producted Allocated Area (sq. ft.)", min_value=0.01, step=0.01, value=0.01
|
|
|
|
| 46 |
|
| 47 |
store_size = st.selectbox(
|
| 48 |
"Store Size",
|
| 49 |
+
["Low", "Medium", "High"]
|
| 50 |
)
|
| 51 |
store_location_city_type = st.selectbox(
|
| 52 |
"Store Location City Type",
|
| 53 |
+
["Tier 1", "Tier 2", "Tier 3"]
|
| 54 |
)
|
| 55 |
store_type = st.selectbox(
|
| 56 |
"Store Type",
|
| 57 |
+
["Departmental Store", "Food Mart", "Supermarket Type1", "Supermarket Type2"]
|
| 58 |
)
|
| 59 |
|
| 60 |
# Convert user input into a DataFrame
|