viveksardey commited on
Commit
56fe865
·
verified ·
1 Parent(s): cbb8041

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -19,9 +19,9 @@ Product_Type = st.selectbox("Product Type", [
19
  ])
20
  Product_MRP = st.number_input("Product MRP (in ₹)", min_value=1.0, step=1.0, value=100.0)
21
 
22
- Store_Id = st.text_input("Store ID (e.g., S012)")
23
  Store_Establishment_Year = st.number_input("Store Establishment Year", min_value=1980, max_value=2025, step=1, value=2015)
24
- Store_Size = st.selectbox("Store Size", ["High", "Medium", "Low"])
25
  Store_Location_City_Type = st.selectbox("City Tier", ["Tier 1", "Tier 2", "Tier 3"])
26
  Store_Type = st.selectbox("Store Type", ["Departmental Store", "Supermarket Type 1", "Supermarket Type 2", "Food Mart"])
27
 
@@ -33,7 +33,7 @@ input_data = pd.DataFrame([{
33
  'Product_Allocated_Area': Product_Allocated_Area,
34
  'Product_Type': Product_Type,
35
  'Product_MRP': Product_MRP,
36
- 'Store_Id': Store_Id,
37
  'Store_Establishment_Year': Store_Establishment_Year,
38
  'Store_Size': Store_Size,
39
  'Store_Location_City_Type': Store_Location_City_Type,
 
19
  ])
20
  Product_MRP = st.number_input("Product MRP (in ₹)", min_value=1.0, step=1.0, value=100.0)
21
 
22
+ #Store_Id = st.text_input("Store ID (e.g., S012)")
23
  Store_Establishment_Year = st.number_input("Store Establishment Year", min_value=1980, max_value=2025, step=1, value=2015)
24
+ Store_Size = st.selectbox("Store Size", ["High", "Medium", "Small"])
25
  Store_Location_City_Type = st.selectbox("City Tier", ["Tier 1", "Tier 2", "Tier 3"])
26
  Store_Type = st.selectbox("Store Type", ["Departmental Store", "Supermarket Type 1", "Supermarket Type 2", "Food Mart"])
27
 
 
33
  'Product_Allocated_Area': Product_Allocated_Area,
34
  'Product_Type': Product_Type,
35
  'Product_MRP': Product_MRP,
36
+ #'Store_Id': Store_Id,
37
  'Store_Establishment_Year': Store_Establishment_Year,
38
  'Store_Size': Store_Size,
39
  'Store_Location_City_Type': Store_Location_City_Type,