Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -10,11 +10,11 @@ Product_Sugar_Content = st.selectbox("Product Sugar Content", ["Low Sugar", "Reg
|
|
| 10 |
Product_Allocated_Area = st.number_input("Product Allocated Area", min_value=0.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) #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"]
|
| 14 |
-
Store_Type = st.selectbox("Store Type", ["Food Mart", "Departmental Store","Supermarket Type1","Supermarket Type2"]
|
| 15 |
Product_Id_char = st.selectbox("Product ID Char", ["FD", "NC","DR"]) #Complete the code to define the UI element for Product_Id_char
|
| 16 |
Store_Age_Years = st.number_input("Stone Age Years", min_value=0.0) #Complete the code to define the UI element for Store_Age_Years
|
| 17 |
-
Product_Type_Category = st.selectbox("Product Type Category", ["Perishables", "Non Perishables"]
|
| 18 |
|
| 19 |
product_data = {
|
| 20 |
"Product_Weight": Product_Weight,
|
|
|
|
| 10 |
Product_Allocated_Area = st.number_input("Product Allocated Area", min_value=0.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) #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", ["Food Mart", "Departmental Store","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
|
| 16 |
Store_Age_Years = st.number_input("Stone Age Years", min_value=0.0) #Complete the code to define the UI element for Store_Age_Years
|
| 17 |
+
Product_Type_Category = st.selectbox("Product Type Category", ["Perishables", "Non Perishables"]) #Complete the code to define the UI element for Product_Type_Category
|
| 18 |
|
| 19 |
product_data = {
|
| 20 |
"Product_Weight": Product_Weight,
|