TokenTutor commited on
Commit
9d3b4f4
·
verified ·
1 Parent(s): 5192ef7

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(batch_data.loc[0])
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()