jamolo12 commited on
Commit
560d456
·
verified ·
1 Parent(s): 449a524

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,7 +9,7 @@ Product_Weight = st.number_input("Product Weight", min_value=0.0, value=12.66)
9
  Product_Sugar_Content = st.selectbox("Product Sugar Content", ["Low Sugar", "Regular", "No Sugar"])
10
  Product_Allocated_Area = st.number_input("Product Allocated Area", min_value=0.0, value=10.0) #Complete the code to define the UI element for Product_Allocated_Area
11
  Product_MRP = st.number_input("Product MRP", min_value=0.0, value=10.0) #Complete the code to define the UI element for Product_MRP
12
- Store_Size = st.number_input("Store Size", min_value=0.0, value=10.0) #Complete the code to define the UI element for Store_Size
13
  Store_Location_City_Type = st.selectbox("Store Location City Type", ["Tier 1", "Tier 2", "Tier 3"]) #Complete the code to define the UI element for Store_Location_City_Type
14
  Store_Type = st.selectbox("Store Type", ["Departmental Store", "Food Mart", "Supermarket Type1", "Supermarket Type2"]) #Complete the code to define the UI element for Store_Type
15
  Product_Id_char = st.selectbox("Product Id char", ["FD", "NC", "DR"]) #Complete the code to define the UI element for Product_Id_char
@@ -21,7 +21,7 @@ product_data = {
21
  "Product_Sugar_Content": str(Product_Sugar_Content),
22
  "Product_Allocated_Area": Product_Allocated_Area,
23
  "Product_MRP": Product_MRP,
24
- "Store_Size": Store_Size,
25
  "Store_Location_City_Type": str(Store_Location_City_Type),
26
  "Store_Type": str(Store_Type),
27
  "Product_Id_char": str(Product_Id_char),
 
9
  Product_Sugar_Content = st.selectbox("Product Sugar Content", ["Low Sugar", "Regular", "No Sugar"])
10
  Product_Allocated_Area = st.number_input("Product Allocated Area", min_value=0.0, value=10.0) #Complete the code to define the UI element for Product_Allocated_Area
11
  Product_MRP = st.number_input("Product MRP", min_value=0.0, value=10.0) #Complete the code to define the UI element for Product_MRP
12
+ Store_Size = st.selectbox("Store Size", ["Small", "Medium", "High"]) #Complete the code to define the UI element for Store_Size
13
  Store_Location_City_Type = st.selectbox("Store Location City Type", ["Tier 1", "Tier 2", "Tier 3"]) #Complete the code to define the UI element for Store_Location_City_Type
14
  Store_Type = st.selectbox("Store Type", ["Departmental Store", "Food Mart", "Supermarket Type1", "Supermarket Type2"]) #Complete the code to define the UI element for Store_Type
15
  Product_Id_char = st.selectbox("Product Id char", ["FD", "NC", "DR"]) #Complete the code to define the UI element for Product_Id_char
 
21
  "Product_Sugar_Content": str(Product_Sugar_Content),
22
  "Product_Allocated_Area": Product_Allocated_Area,
23
  "Product_MRP": Product_MRP,
24
+ "Store_Size": str(Store_Size),
25
  "Store_Location_City_Type": str(Store_Location_City_Type),
26
  "Store_Type": str(Store_Type),
27
  "Product_Id_char": str(Product_Id_char),