Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -15,7 +15,7 @@ Product_Allocated_Area = st.number_input("Product_Allocated_Area", min_value=0.0
|
|
| 15 |
Product_Type = st.selectbox("Product_Type" , ["Frozen Foods","Dairy","Canned","Baking Goods","Health and Hygiene","Snack Foods","Meat","Household","Hard Drinks","Fruits and Vegetables","Breads","Soft Drinks","Breakfast","Others","Starchy Foods","Seafood"
|
| 16 |
])
|
| 17 |
Product_MRP = st.number_input("Product_MRP", min_value=0.0, step=0.01, value=0.0)
|
| 18 |
-
Store_Id = st.selectbox("Store_Id" , ["OUT001","OUT002","OUT003","OUT004"])
|
| 19 |
Store_Establishment_Year = st.number_input("Store_Establishment_Year", min_value=1800, max_value=3000, step=1, value=1900)
|
| 20 |
Store_Size = st.selectbox("Store_Size" , ["Small","Medium","High"])
|
| 21 |
Store_Location_City_Type = st.selectbox("Store_Location_City_Type" , ["Tier 1","Tier 2","Tier 3"])
|
|
@@ -29,7 +29,7 @@ input_data = pd.DataFrame([{
|
|
| 29 |
'Product_Allocated_Area':Product_Allocated_Area,
|
| 30 |
'Product_Type':Product_Type,
|
| 31 |
'Product_MRP':Product_MRP,
|
| 32 |
-
'Store_Id':Store_Id,
|
| 33 |
'Store_Establishment_Year':Store_Establishment_Year,
|
| 34 |
'Store_Size':Store_Size,
|
| 35 |
'Store_Location_City_Type':Store_Location_City_Type,
|
|
|
|
| 15 |
Product_Type = st.selectbox("Product_Type" , ["Frozen Foods","Dairy","Canned","Baking Goods","Health and Hygiene","Snack Foods","Meat","Household","Hard Drinks","Fruits and Vegetables","Breads","Soft Drinks","Breakfast","Others","Starchy Foods","Seafood"
|
| 16 |
])
|
| 17 |
Product_MRP = st.number_input("Product_MRP", min_value=0.0, step=0.01, value=0.0)
|
| 18 |
+
#Store_Id = st.selectbox("Store_Id" , ["OUT001","OUT002","OUT003","OUT004"])
|
| 19 |
Store_Establishment_Year = st.number_input("Store_Establishment_Year", min_value=1800, max_value=3000, step=1, value=1900)
|
| 20 |
Store_Size = st.selectbox("Store_Size" , ["Small","Medium","High"])
|
| 21 |
Store_Location_City_Type = st.selectbox("Store_Location_City_Type" , ["Tier 1","Tier 2","Tier 3"])
|
|
|
|
| 29 |
'Product_Allocated_Area':Product_Allocated_Area,
|
| 30 |
'Product_Type':Product_Type,
|
| 31 |
'Product_MRP':Product_MRP,
|
| 32 |
+
# 'Store_Id':Store_Id,
|
| 33 |
'Store_Establishment_Year':Store_Establishment_Year,
|
| 34 |
'Store_Size':Store_Size,
|
| 35 |
'Store_Location_City_Type':Store_Location_City_Type,
|