CodingBuddy commited on
Commit
c3bb165
·
verified ·
1 Parent(s): 6301921

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -24,19 +24,19 @@ st.subheader("Sales Prediction")
24
  # 'Food Mart'])
25
 
26
  Product_Weight = st.number_input("Product Weight", min_value=0.01, value=16.54)
27
- Product_Sugar_Content = st.selectbox("Sugar Content", ["Low Sugar", "Regular", "No Sugar", "reg"], value="Low Sugar" )
28
  Product_Allocated_Area = st.number_input("Product Allocated area", value=0.144)
29
  Product_Type = st.selectbox("Product Type", ['Frozen Foods', 'Dairy', 'Canned', 'Baking Goods',
30
  'Health and Hygiene', 'Snack Foods', 'Meat', 'Household',
31
  'Hard Drinks', 'Fruits and Vegetables', 'Breads', 'Soft Drinks',
32
- 'Breakfast', 'Others', 'Starchy Foods', 'Seafood'], value="Dairy")
33
  Product_MRP = st.number_input("Product MRP", value="171.43")
34
- Store_Id = st.selectbox("Select Store", ['OUT004', 'OUT003', 'OUT001', 'OUT002'], value="OUT003")
35
  Store_Establishment_Year = st.number_input("Store Establishment year", value="1999")
36
- Store_Size = st.selectbox("Select Store Size", ['Medium', 'High', 'Small'], value="Medium")
37
- Store_Location_City_Type = st.selectbox("Select Store Location", ['Tier 2', 'Tier 1', 'Tier 3'], value="Tier 1")
38
  Store_Type = st.selectbox("Store Type", ['Supermarket Type2', 'Departmental Store', 'Supermarket Type1',
39
- 'Food Mart'], value="Departmental Store")
40
 
41
 
42
 
 
24
  # 'Food Mart'])
25
 
26
  Product_Weight = st.number_input("Product Weight", min_value=0.01, value=16.54)
27
+ Product_Sugar_Content = st.selectbox("Sugar Content", ["Low Sugar", "Regular", "No Sugar", "reg"], index=0)
28
  Product_Allocated_Area = st.number_input("Product Allocated area", value=0.144)
29
  Product_Type = st.selectbox("Product Type", ['Frozen Foods', 'Dairy', 'Canned', 'Baking Goods',
30
  'Health and Hygiene', 'Snack Foods', 'Meat', 'Household',
31
  'Hard Drinks', 'Fruits and Vegetables', 'Breads', 'Soft Drinks',
32
+ 'Breakfast', 'Others', 'Starchy Foods', 'Seafood'], index=1)
33
  Product_MRP = st.number_input("Product MRP", value="171.43")
34
+ Store_Id = st.selectbox("Select Store", ['OUT004', 'OUT003', 'OUT001', 'OUT002'], index=1)
35
  Store_Establishment_Year = st.number_input("Store Establishment year", value="1999")
36
+ Store_Size = st.selectbox("Select Store Size", ['Medium', 'High', 'Small'], index=0)
37
+ Store_Location_City_Type = st.selectbox("Select Store Location", ['Tier 2', 'Tier 1', 'Tier 3'], index=1)
38
  Store_Type = st.selectbox("Store Type", ['Supermarket Type2', 'Departmental Store', 'Supermarket Type1',
39
+ 'Food Mart'], index=1)
40
 
41
 
42