Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -65,6 +65,8 @@ def predict_sales_batch():
|
|
| 65 |
It expects a CSV file containing details for multiple products
|
| 66 |
and returns the predicted product sales prices as a dictionary in the JSON response.
|
| 67 |
"""
|
|
|
|
|
|
|
| 68 |
# Get the uploaded CSV file from the request
|
| 69 |
file = request.files['file']
|
| 70 |
|
|
|
|
| 65 |
It expects a CSV file containing details for multiple products
|
| 66 |
and returns the predicted product sales prices as a dictionary in the JSON response.
|
| 67 |
"""
|
| 68 |
+
|
| 69 |
+
print("The function has entered")
|
| 70 |
# Get the uploaded CSV file from the request
|
| 71 |
file = request.files['file']
|
| 72 |
|