Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -43,10 +43,7 @@ product_type = st.selectbox(
|
|
| 43 |
product_mrp = st.number_input(
|
| 44 |
"Product MRP (in dollars)", min_value=1.0, step=0.5, value=10.0
|
| 45 |
)
|
| 46 |
-
|
| 47 |
-
store_establishment_year = st.number_input(
|
| 48 |
-
"Store Establishment Year", min_value=1900, max_value=2025, step=1, value=2000
|
| 49 |
-
)
|
| 50 |
store_size = st.selectbox(
|
| 51 |
"Store Size",
|
| 52 |
["Low", "Medium", "High"]
|
|
@@ -67,7 +64,6 @@ input_data = pd.DataFrame([{
|
|
| 67 |
'product_allocated_area': product_allocated_area,
|
| 68 |
'product_type': product_type,
|
| 69 |
'product_mrp': product_mrp,
|
| 70 |
-
'store_establishment_year': store_establishment_year,
|
| 71 |
'store_size': store_size,
|
| 72 |
'store_location_city_type': store_location_city_type,
|
| 73 |
'store_type':store_type
|
|
|
|
| 43 |
product_mrp = st.number_input(
|
| 44 |
"Product MRP (in dollars)", min_value=1.0, step=0.5, value=10.0
|
| 45 |
)
|
| 46 |
+
|
|
|
|
|
|
|
|
|
|
| 47 |
store_size = st.selectbox(
|
| 48 |
"Store Size",
|
| 49 |
["Low", "Medium", "High"]
|
|
|
|
| 64 |
'product_allocated_area': product_allocated_area,
|
| 65 |
'product_type': product_type,
|
| 66 |
'product_mrp': product_mrp,
|
|
|
|
| 67 |
'store_size': store_size,
|
| 68 |
'store_location_city_type': store_location_city_type,
|
| 69 |
'store_type':store_type
|