Parthipan00410 commited on
Commit
e0efc00
·
verified ·
1 Parent(s): cfa095f

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,11 +9,11 @@ st.title("Product Sales Prediction for Stores")
9
  st.subheader("Please fill details below for sales prediction")
10
 
11
  # Input fields for user to provide single product/store details
12
- Product_Weight = st.number_input("Product_Weight (Weight of the product)", min_value=1, max_value=50,value=10)
13
  Product_Sugar_Content = st.selectbox("Product_Sugar_Content (Select the sugar content level of the product)", ['Low Sugar','Regular','No Sugar'])
14
  Product_Allocated_Area = st.number_input("Product_Allocated_Area (Area allocated for the product)", min_value=0.001,max_value=0.5,value=0.1)
15
  Product_Type = st.selectbox("Product_Type (Select the type of product)", ['Fruits and Vegetables','Snack Foods','Frozen Foods','Dairy','Household','Baking Goods','Canned','Health and Hygiene','Meat','Soft Drinks','Breads','Hard Drinks','Others','Starchy Foods','Breakfast','Seafood'])
16
- Product_MRP = st.number_input("Product_MRP (Enter the price of the product)", min_value=1,max_value=1000,value=100)
17
  Store_Id = st.selectbox("Store_Id (Select the Store ID)", ['OUT001','OUT002','OUT003','OUT004'])
18
  Store_Establishment_Year = st.selectbox("Store_Establishment_Year (Select the year the store was established)", [2009,1987,1999,1998])
19
  Store_Size = st.selectbox("Store_Size (Select the store size)", ["Medium", "High","Small"])
 
9
  st.subheader("Please fill details below for sales prediction")
10
 
11
  # Input fields for user to provide single product/store details
12
+ Product_Weight = st.number_input("Product_Weight (Weight of the product)", min_value=1.0, max_value=50.0,value=10.0)
13
  Product_Sugar_Content = st.selectbox("Product_Sugar_Content (Select the sugar content level of the product)", ['Low Sugar','Regular','No Sugar'])
14
  Product_Allocated_Area = st.number_input("Product_Allocated_Area (Area allocated for the product)", min_value=0.001,max_value=0.5,value=0.1)
15
  Product_Type = st.selectbox("Product_Type (Select the type of product)", ['Fruits and Vegetables','Snack Foods','Frozen Foods','Dairy','Household','Baking Goods','Canned','Health and Hygiene','Meat','Soft Drinks','Breads','Hard Drinks','Others','Starchy Foods','Breakfast','Seafood'])
16
+ Product_MRP = st.number_input("Product_MRP (Enter the price of the product)", min_value=1.0,max_value=1000.0,value=100.0)
17
  Store_Id = st.selectbox("Store_Id (Select the Store ID)", ['OUT001','OUT002','OUT003','OUT004'])
18
  Store_Establishment_Year = st.selectbox("Store_Establishment_Year (Select the year the store was established)", [2009,1987,1999,1998])
19
  Store_Size = st.selectbox("Store_Size (Select the store size)", ["Medium", "High","Small"])