Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -11,9 +11,9 @@ st.subheader("Online Prediction")
|
|
| 11 |
|
| 12 |
# Collect user input for property features
|
| 13 |
|
| 14 |
-
Product_Weight = st.number_input("Product Weight", min_value=4, max_value=25, step=1, value=
|
| 15 |
-
Product_Allocated_Area = st.number_input("Allocated Display Area Ratio", min_value=0.004, max_value=0.3, step=0.01)
|
| 16 |
-
Product_MRP = st.number_input("Product MRP", min_value=10, max_value=500, step=1)
|
| 17 |
Product_Sugar_Content = st.selectbox("Sugar Content", ["Low Sugar", "Regular", "No Sugar"])
|
| 18 |
Product_Type = st.selectbox("Product Type", [
|
| 19 |
"Meat","Snack Foods","Hard Drinks","Dairy","Canned","Soft Drinks",
|
|
|
|
| 11 |
|
| 12 |
# Collect user input for property features
|
| 13 |
|
| 14 |
+
Product_Weight = st.number_input("Product Weight", min_value=4.0, max_value=25.0, step=1.0, value=15.14)
|
| 15 |
+
Product_Allocated_Area = st.number_input("Allocated Display Area Ratio", min_value=0.004, max_value=0.3, step=0.01,value=0.052)
|
| 16 |
+
Product_MRP = st.number_input("Product MRP", min_value=10.0, max_value=500.0, step=1.0, value=148.06)
|
| 17 |
Product_Sugar_Content = st.selectbox("Sugar Content", ["Low Sugar", "Regular", "No Sugar"])
|
| 18 |
Product_Type = st.selectbox("Product Type", [
|
| 19 |
"Meat","Snack Foods","Hard Drinks","Dairy","Canned","Soft Drinks",
|