Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -65,7 +65,7 @@ def predict_sales_forecast_batch():
|
|
| 65 |
|
| 66 |
# Read the CSV file into a Pandas DataFrame
|
| 67 |
input_data = pd.read_csv(file)
|
| 68 |
-
print(
|
| 69 |
|
| 70 |
# Make predictions for all properties in the DataFrame (get log_prices)
|
| 71 |
predicted_sales = model.predict(input_data).tolist()
|
|
|
|
| 65 |
|
| 66 |
# Read the CSV file into a Pandas DataFrame
|
| 67 |
input_data = pd.read_csv(file)
|
| 68 |
+
print(input_data.loc[0])
|
| 69 |
|
| 70 |
# Make predictions for all properties in the DataFrame (get log_prices)
|
| 71 |
predicted_sales = model.predict(input_data).tolist()
|