Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -9,9 +9,9 @@ st.subheader("Online Prediction")
|
|
| 9 |
|
| 10 |
# Input fields for product data
|
| 11 |
Product_Id = st.text_input("Product_Id")
|
| 12 |
-
Product_Weight = st.number_input("Product_Weight (Product's weight in KG)", min_value=0, max_value=900, value=2)
|
| 13 |
Product_Sugar_Content = st.selectbox("Product_Sugar_Content (Product's sugar content)", ["No Sugar", "Low Sugar", "Regular"])
|
| 14 |
-
Product_Allocated_Area = st.number_input("Product_Allocated_Area (Fraction of total store area allocated to this product)", min_value=0, max_value=1, value=0.29)
|
| 15 |
|
| 16 |
product_type_values = [
|
| 17 |
'Meat',
|
|
|
|
| 9 |
|
| 10 |
# Input fields for product data
|
| 11 |
Product_Id = st.text_input("Product_Id")
|
| 12 |
+
Product_Weight = st.number_input("Product_Weight (Product's weight in KG)", min_value=0.0, max_value=900.0, value=2.0)
|
| 13 |
Product_Sugar_Content = st.selectbox("Product_Sugar_Content (Product's sugar content)", ["No Sugar", "Low Sugar", "Regular"])
|
| 14 |
+
Product_Allocated_Area = st.number_input("Product_Allocated_Area (Fraction of total store area allocated to this product)", min_value=0.0, max_value=1.0, value=0.29)
|
| 15 |
|
| 16 |
product_type_values = [
|
| 17 |
'Meat',
|