Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -53,8 +53,6 @@ Store_Type = st.selectbox(
|
|
| 53 |
format_func=lambda x: x
|
| 54 |
)
|
| 55 |
|
| 56 |
-
Product_Id_char = st.text_input("Product Id", value = "FD5075")
|
| 57 |
-
|
| 58 |
Store_Age_Years_Options = ["1987", "1998", "1999", "2009"]
|
| 59 |
Store_Age_Years = st.selectbox(
|
| 60 |
"Store Opening Year: ",
|
|
@@ -79,7 +77,6 @@ product_data = {
|
|
| 79 |
"Store_Size": Store_Size_Options.index(Store_Size),
|
| 80 |
"Store_Location_City_Type": Store_Location_City_Type_Options.index(Store_Location_City_Type),
|
| 81 |
"Store_Type": Store_Type_Options.index(Store_Type),
|
| 82 |
-
"Product_Id_char": Product_Id_char,
|
| 83 |
"Store_Age_Years": Store_Age_Years_Options.index(Store_Age_Years),
|
| 84 |
"Product_Type_Category": Product_Type_Category_Options.index(Product_Type_Category)
|
| 85 |
}
|
|
|
|
| 53 |
format_func=lambda x: x
|
| 54 |
)
|
| 55 |
|
|
|
|
|
|
|
| 56 |
Store_Age_Years_Options = ["1987", "1998", "1999", "2009"]
|
| 57 |
Store_Age_Years = st.selectbox(
|
| 58 |
"Store Opening Year: ",
|
|
|
|
| 77 |
"Store_Size": Store_Size_Options.index(Store_Size),
|
| 78 |
"Store_Location_City_Type": Store_Location_City_Type_Options.index(Store_Location_City_Type),
|
| 79 |
"Store_Type": Store_Type_Options.index(Store_Type),
|
|
|
|
| 80 |
"Store_Age_Years": Store_Age_Years_Options.index(Store_Age_Years),
|
| 81 |
"Product_Type_Category": Product_Type_Category_Options.index(Product_Type_Category)
|
| 82 |
}
|