Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -10,7 +10,7 @@ st.subheader("Online Prediction")
|
|
| 10 |
|
| 11 |
# Collect user input for property features
|
| 12 |
Product_Id = st.text_input("Product ID (e.g., FD123)")
|
| 13 |
-
|
| 14 |
Product_Sugar_Content = st.selectbox("Product Sugar Content", ["Low Sugar", "Regular", "No Sugar"])
|
| 15 |
Product_Allocated_Area = st.number_input("Product Allocated Area (Ratio)", min_value=0.0, max_value=1.0, step=0.01)
|
| 16 |
Product_Type = st.selectbox(
|
|
|
|
| 10 |
|
| 11 |
# Collect user input for property features
|
| 12 |
Product_Id = st.text_input("Product ID (e.g., FD123)")
|
| 13 |
+
Product_Weight = st.number_input("Product Weight (in grams)", min_value=0.0, step=0.1)
|
| 14 |
Product_Sugar_Content = st.selectbox("Product Sugar Content", ["Low Sugar", "Regular", "No Sugar"])
|
| 15 |
Product_Allocated_Area = st.number_input("Product Allocated Area (Ratio)", min_value=0.0, max_value=1.0, step=0.01)
|
| 16 |
Product_Type = st.selectbox(
|