Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -12,7 +12,7 @@ st.subheader("Online Product Sales Prediction")
|
|
| 12 |
Product_Id=st.text_input("Product Id")
|
| 13 |
Product_Weight=st.number_input("Product Weight")
|
| 14 |
Product_Sugar_Content=st.selectbox("Product Sugar Content",['No Sugar', 'Low Sugar', 'Regular'])
|
| 15 |
-
Product_Allocated_Area=st.number_input("Product Allocated Area",min_value=0.0,max_value=1.0,value=0.001)
|
| 16 |
Product_Type=st.selectbox("Product Type",['Frozen Foods', 'Dairy', 'Canned', 'Baking Goods',
|
| 17 |
'Health and Hygiene', 'Snack Foods', 'Meat', 'Household',
|
| 18 |
'Hard Drinks', 'Fruits and Vegetables', 'Breads', 'Soft Drinks',
|
|
|
|
| 12 |
Product_Id=st.text_input("Product Id")
|
| 13 |
Product_Weight=st.number_input("Product Weight")
|
| 14 |
Product_Sugar_Content=st.selectbox("Product Sugar Content",['No Sugar', 'Low Sugar', 'Regular'])
|
| 15 |
+
Product_Allocated_Area=st.number_input("Product Allocated Area",min_value=0.0,max_value=1.0,value=0.001,step=0.001)# Allows increments of 0.001
|
| 16 |
Product_Type=st.selectbox("Product Type",['Frozen Foods', 'Dairy', 'Canned', 'Baking Goods',
|
| 17 |
'Health and Hygiene', 'Snack Foods', 'Meat', 'Household',
|
| 18 |
'Hard Drinks', 'Fruits and Vegetables', 'Breads', 'Soft Drinks',
|