Definition of Lift
B_Miner
New Altair Community Member
Hi All,
Can anyone explain how RM is defining "lift" as it pertains to the binomial classifer performance operator?
I am used to lift, in this sense, as being the proportion of the top X% of cases sorted by confidence/probability descending, divided by the overall proportion of positive cases in the data. I cant find how you would set the X% in RM. Is my definition correct and is a X% set (non changeable)?
Thanks!
Can anyone explain how RM is defining "lift" as it pertains to the binomial classifer performance operator?
I am used to lift, in this sense, as being the proportion of the top X% of cases sorted by confidence/probability descending, divided by the overall proportion of positive cases in the data. I cant find how you would set the X% in RM. Is my definition correct and is a X% set (non changeable)?
Thanks!
Tagged:
0
Answers
-
Hi.
It is defined as:
Greetings,
lift = x/y with
x = counter / (counter + counter);
y = (counter + counter) / (counter + counter + counter + counter);
and first index being the true label, and the second the predicted.
Sebastian0 -
Thanks Sebastian!
I just figured out how to look at code through Eclipse so I found the code you supplied.
Thanks!0