Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -29,6 +29,7 @@ product_type = st.selectbox("Product Type", [
|
|
| 29 |
])
|
| 30 |
product_mrp = st.number_input("Product MRP", min_value=31.0, max_value=266.0, value=147.0, step=1.0)
|
| 31 |
|
|
|
|
| 32 |
store_establishment_year = st.number_input("Store Establishment Year", min_value=1987, max_value=2025, value=2002, step=1)
|
| 33 |
store_size = st.selectbox("Store Size", ["High", "Medium", "Low"])
|
| 34 |
store_location_city_type = st.selectbox("Store City Type", ["Tier 1", "Tier 2", "Tier 3"])
|
|
@@ -41,6 +42,7 @@ input_data = pd.DataFrame([{
|
|
| 41 |
"Product_Allocated_Area": product_allocated_area,
|
| 42 |
"Product_Type": product_type,
|
| 43 |
"Product_MRP": product_mrp,
|
|
|
|
| 44 |
"Store_Establishment_Year": store_establishment_year,
|
| 45 |
"Store_Size": store_size,
|
| 46 |
"Store_Location_City_Type": store_location_city_type,
|
|
|
|
| 29 |
])
|
| 30 |
product_mrp = st.number_input("Product MRP", min_value=31.0, max_value=266.0, value=147.0, step=1.0)
|
| 31 |
|
| 32 |
+
store_id = st.selectbox("Store ID", ["OUT001","OUT002","OUT003","OUT004"])
|
| 33 |
store_establishment_year = st.number_input("Store Establishment Year", min_value=1987, max_value=2025, value=2002, step=1)
|
| 34 |
store_size = st.selectbox("Store Size", ["High", "Medium", "Low"])
|
| 35 |
store_location_city_type = st.selectbox("Store City Type", ["Tier 1", "Tier 2", "Tier 3"])
|
|
|
|
| 42 |
"Product_Allocated_Area": product_allocated_area,
|
| 43 |
"Product_Type": product_type,
|
| 44 |
"Product_MRP": product_mrp,
|
| 45 |
+
"Store_Id": "store_id",
|
| 46 |
"Store_Establishment_Year": store_establishment_year,
|
| 47 |
"Store_Size": store_size,
|
| 48 |
"Store_Location_City_Type": store_location_city_type,
|