Lokiiparihar commited on
Commit
65e2502
·
verified ·
1 Parent(s): 3870490

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -22,8 +22,8 @@ product_allocated_area = st.number_input("Product Allocated Area", min_value=0.0
22
  product_type = st.selectbox("Product Type", ['Perishables', 'Non Perishables'])
23
  product_mrp = st.number_input("Product MRP", min_value=0.0, value=150.0)
24
  store_id = st.selectbox("Store ID", ['OUT004', 'OUT003', 'OUT001', 'OUT002'])
25
- store_size = st.selectbox("Store Size", ['Medium', 'High', 'Small'])
26
  store_type = st.selectbox("Store Type", ["Grocery Store","Supermarket Type1","Supermarket Type2","Supermarket Type3"])
 
27
  store_location_city_type = st.selectbox("Store Location City Type", ['Tier 2', 'Tier 1', 'Tier 3'])
28
  store_current_age = st.number_input("Store Current Age (Years)", min_value=0, value=15)
29
 
@@ -36,8 +36,8 @@ input_data = {
36
  'Product_Type': product_type,
37
  'Product_MRP': product_mrp,
38
  'Store_Id': store_id,
39
- 'Store_Size': store_size,
40
  'Store_Type': store_type,
 
41
  'Store_Location_City_Type': store_location_city_type,
42
  'Store_Current_Age': store_current_age
43
  }
 
22
  product_type = st.selectbox("Product Type", ['Perishables', 'Non Perishables'])
23
  product_mrp = st.number_input("Product MRP", min_value=0.0, value=150.0)
24
  store_id = st.selectbox("Store ID", ['OUT004', 'OUT003', 'OUT001', 'OUT002'])
 
25
  store_type = st.selectbox("Store Type", ["Grocery Store","Supermarket Type1","Supermarket Type2","Supermarket Type3"])
26
+ store_size = st.selectbox("Store Size", ['Medium', 'High', 'Small'])
27
  store_location_city_type = st.selectbox("Store Location City Type", ['Tier 2', 'Tier 1', 'Tier 3'])
28
  store_current_age = st.number_input("Store Current Age (Years)", min_value=0, value=15)
29
 
 
36
  'Product_Type': product_type,
37
  'Product_MRP': product_mrp,
38
  'Store_Id': store_id,
 
39
  'Store_Type': store_type,
40
+ 'Store_Size': store_size,
41
  'Store_Location_City_Type': store_location_city_type,
42
  'Store_Current_Age': store_current_age
43
  }