You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to solve churn prediction task. I have 12 timestamp (month) time-series for 500000 customers with some features.
I have churn event for some customers, and some of customers don't have event among whole history.
Is it correct, if i do follow definition of targets:
For customers, who have an event:
event: [0,0,0,0,0,0,0,1,0,0,0,0]
tte: [7,6,5,4,3,2,1,0,4,3,2,1]
u: [1,1,1,1,1,1,1,1,0,0,0,0]
For customers, who don't have an event:
event: [0,0,0,0,0,0,0,0,0,0,0,0]
tte:[12,11,10,9,8,7,6,5,4,3,2,1]
u:[1,1,1,1,1,1,1,1,1,1,1,1]
Did i make a mistake by definition the target in this way?
How I should, if it is wrong?
Thank you!
The text was updated successfully, but these errors were encountered:
Hello!
Thank you for the materials!
Please, can you help with advise?
I am trying to solve churn prediction task. I have 12 timestamp (month) time-series for 500000 customers with some features.
I have churn event for some customers, and some of customers don't have event among whole history.
Is it correct, if i do follow definition of targets:
For customers, who have an event:
event: [0,0,0,0,0,0,0,1,0,0,0,0]
tte: [7,6,5,4,3,2,1,0,4,3,2,1]
u: [1,1,1,1,1,1,1,1,0,0,0,0]
For customers, who don't have an event:
event: [0,0,0,0,0,0,0,0,0,0,0,0]
tte:[12,11,10,9,8,7,6,5,4,3,2,1]
u:[1,1,1,1,1,1,1,1,1,1,1,1]
Did i make a mistake by definition the target in this way?
How I should, if it is wrong?
Thank you!
The text was updated successfully, but these errors were encountered: