Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -9,9 +9,9 @@ st.title("Super Kart Store Total Sale Prediction")
|
|
| 9 |
st.subheader("Online Prediction")
|
| 10 |
|
| 11 |
# Collect user input for property features
|
| 12 |
-
Product_Weight = st.number_input("Product Weight", min_value=4.0, max_value=22.0, step=0.1, value=
|
| 13 |
-
Product_Allocated_Area = st.number_input("Product Allocated Area", min_value=0.004, max_value=0.298, step=0.01, value=0.
|
| 14 |
-
Product_MRP = st.number_input("Product MRP", min_value=31.0, max_value=266.0, step=0.5, value=
|
| 15 |
Store_Establishment_Year = st.selectbox("Store Establishment Year", [1987, 1998, 1999, 2009])
|
| 16 |
Product_Sugar_Content = st.selectbox("Product Sugar Content", ["Low Sugar", "Regular", "No Sugar"])
|
| 17 |
Product_Type = st.selectbox("Product Type", [
|
|
|
|
| 9 |
st.subheader("Online Prediction")
|
| 10 |
|
| 11 |
# Collect user input for property features
|
| 12 |
+
Product_Weight = st.number_input("Product Weight", min_value=4.0, max_value=22.0, step=0.1, value=4.0)
|
| 13 |
+
Product_Allocated_Area = st.number_input("Product Allocated Area", min_value=0.004, max_value=0.298, step=0.01, value=0.004)
|
| 14 |
+
Product_MRP = st.number_input("Product MRP", min_value=31.0, max_value=266.0, step=0.5, value=31.0)
|
| 15 |
Store_Establishment_Year = st.selectbox("Store Establishment Year", [1987, 1998, 1999, 2009])
|
| 16 |
Product_Sugar_Content = st.selectbox("Product Sugar Content", ["Low Sugar", "Regular", "No Sugar"])
|
| 17 |
Product_Type = st.selectbox("Product Type", [
|