Santiago Roman commited on
Commit
7ef6642
·
1 Parent(s): 3059673

fix inputs

Browse files
Files changed (1) hide show
  1. app.py +0 -3
app.py CHANGED
@@ -36,9 +36,6 @@ data = data.sort_values(by=["cohort_first_product", "cohort_first_month", "month
36
 
37
 
38
  def cohort_predict(start_date, cohort_start, product):
39
-
40
- input_list = []
41
- input_list.append(start_date, cohort_start, product)
42
 
43
  new_seq = generate_new_data(data, cohort_start, start_date, product, model, X_columns_to_drop, 12)
44
  hist_seq = get_sequence(data, cohort_start, product)
 
36
 
37
 
38
  def cohort_predict(start_date, cohort_start, product):
 
 
 
39
 
40
  new_seq = generate_new_data(data, cohort_start, start_date, product, model, X_columns_to_drop, 12)
41
  hist_seq = get_sequence(data, cohort_start, product)