adityasharma0511 commited on
Commit
3615ce1
·
verified ·
1 Parent(s): 3c8eada

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -76,7 +76,7 @@ def predict_store_sales_batch():
76
  input_data = pd.read_csv(file)
77
 
78
  # Make predictions for all properties in the DataFrame (get store_saless)
79
- predicted_store_sales = model.predict(input_data.drop("Product_Id",axis=1)).tolist()
80
 
81
  # Create a dictionary of predictions with property IDs as keys
82
  property_ids = input_data['Product_Id'].tolist() # Assuming 'id' is the property ID column
 
76
  input_data = pd.read_csv(file)
77
 
78
  # Make predictions for all properties in the DataFrame (get store_saless)
79
+ predicted_sales = model.predict(input_data.drop("Product_Id",axis=1)).tolist()
80
 
81
  # Create a dictionary of predictions with property IDs as keys
82
  property_ids = input_data['Product_Id'].tolist() # Assuming 'id' is the property ID column