Lokiiparihar commited on
Commit
3870490
·
verified ·
1 Parent(s): 792579c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -10
app.py CHANGED
@@ -23,16 +23,7 @@ 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(
27
- "Store Type",
28
- [
29
- "Grocery Store",
30
- "Supermarket Type1",
31
- "Supermarket Type2",
32
- "Supermarket Type3"
33
- ]
34
-
35
-
36
  store_location_city_type = st.selectbox("Store Location City Type", ['Tier 2', 'Tier 1', 'Tier 3'])
37
  store_current_age = st.number_input("Store Current Age (Years)", min_value=0, value=15)
38
 
 
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