Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -19,10 +19,10 @@ product_type = st.selectbox("Product Type", [
|
|
| 19 |
])
|
| 20 |
product_mrp = st.number_input("Product MRP", min_value=0.0, step=1.0, value=150.0)
|
| 21 |
store_id = st.selectbox("Store ID", ["OUT001", "OUT002", "OUT003", "OUT004"])
|
| 22 |
-
store_establishment_year = st.selectbox("Store Establishment Year", list(range(1987,
|
| 23 |
store_size = st.selectbox("Store Size", ["Small", "Medium", "High"])
|
| 24 |
store_location_city_type = st.selectbox("Store Location Type", ["Tier 1", "Tier 2", "Tier 3"])
|
| 25 |
-
store_type = st.selectbox("Store Type", ["Supermarket Type1", "Supermarket Type2", "Supermarket Type3", "Grocery Store"])
|
| 26 |
|
| 27 |
# Package into a dictionary and convert to DataFrame
|
| 28 |
input_data = pd.DataFrame([{
|
|
|
|
| 19 |
])
|
| 20 |
product_mrp = st.number_input("Product MRP", min_value=0.0, step=1.0, value=150.0)
|
| 21 |
store_id = st.selectbox("Store ID", ["OUT001", "OUT002", "OUT003", "OUT004"])
|
| 22 |
+
store_establishment_year = st.selectbox("Store Establishment Year", list(range(1987, 2020)))
|
| 23 |
store_size = st.selectbox("Store Size", ["Small", "Medium", "High"])
|
| 24 |
store_location_city_type = st.selectbox("Store Location Type", ["Tier 1", "Tier 2", "Tier 3"])
|
| 25 |
+
store_type = st.selectbox("Store Type", ["Supermarket Type1", "Supermarket Type2", "Supermarket Type3", "Grocery Store", "Food Mart"])
|
| 26 |
|
| 27 |
# Package into a dictionary and convert to DataFrame
|
| 28 |
input_data = pd.DataFrame([{
|