Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -30,7 +30,7 @@ def predict_sales():
|
|
| 30 |
'Store_Size': data['Store_Size'],
|
| 31 |
'Store_Location_City_Type': data['Store_Location_City_Type'],
|
| 32 |
'Store_Type': data['Store_Type'],
|
| 33 |
-
'Product_Id_char': data['Product_Id_char'],
|
| 34 |
'Store_Age_Years': data['Store_Age_Years'],
|
| 35 |
}
|
| 36 |
print(f'sample = {sample}')
|
|
|
|
| 30 |
'Store_Size': data['Store_Size'],
|
| 31 |
'Store_Location_City_Type': data['Store_Location_City_Type'],
|
| 32 |
'Store_Type': data['Store_Type'],
|
| 33 |
+
'Product_Id_char': data['Product_Id_char'].astype(str),
|
| 34 |
'Store_Age_Years': data['Store_Age_Years'],
|
| 35 |
}
|
| 36 |
print(f'sample = {sample}')
|