SandeepMM commited on
Commit
b0b89a2
·
verified ·
1 Parent(s): d3102b6

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -7,12 +7,12 @@ st.title("SuperKart Sales Prediction App")
7
  st.write("This tool predicts SuperKart Store Product Sales based on their details. Enter the required information below.")
8
 
9
  # Collect user input based on dataset columns
10
- Product_Id = st.selectbox("Enter a Product Identifier. This should start with one of the 3 Product Code values ('FD', 'NC', 'DR') followed by a 2/3 digit number.")
11
  Product_Weight = st.number_input("Product Weight", min_value=1, max_value=99)
12
  Product_Sugar_Content_Corr = st.selectbox("Select the Product Sugar Content Level", ['No Sugar', 'Low Sugar', 'Regular'])
13
- Product_Allocated_Area = st.selectbox("Product Allocated Area", min_value=0.004, max_value=0.3)
14
  Product_Type = st.selectbox("Select the Product Sugar Content Level", ['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'])
15
- Product_MRP = st.selectbox("Product MRP", min_value=1, max_value=500)
16
  Store_Id = st.selectbox("Select Store ID", [['OUT001', 'OUT002', 'OUT003', 'OUT004']])
17
  Store_Establishment_Year = st.selectbox("Store Establishment Year", [1987, 1998, 1999, 2009])
18
  Store_Size = st.selectbox("Select the correct store size?", ['High', 'Medium', 'Small'])
 
7
  st.write("This tool predicts SuperKart Store Product Sales based on their details. Enter the required information below.")
8
 
9
  # Collect user input based on dataset columns
10
+ Product_Id = st.text_input("Enter a Product Identifier. This should start with one of the 3 Product Code values ('FD', 'NC', 'DR') followed by a 2/3 digit number.")
11
  Product_Weight = st.number_input("Product Weight", min_value=1, max_value=99)
12
  Product_Sugar_Content_Corr = st.selectbox("Select the Product Sugar Content Level", ['No Sugar', 'Low Sugar', 'Regular'])
13
+ Product_Allocated_Area = st.number_input("Product Allocated Area", min_value=0.004, max_value=0.3)
14
  Product_Type = st.selectbox("Select the Product Sugar Content Level", ['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'])
15
+ Product_MRP = st.number_input("Product MRP", min_value=1, max_value=500)
16
  Store_Id = st.selectbox("Select Store ID", [['OUT001', 'OUT002', 'OUT003', 'OUT004']])
17
  Store_Establishment_Year = st.selectbox("Store Establishment Year", [1987, 1998, 1999, 2009])
18
  Store_Size = st.selectbox("Select the correct store size?", ['High', 'Medium', 'Small'])