6

If a set of features, A, results in an AUC of 0.5, then an improved set of features, B, were used resulting in an AUC of 0.75, how do I express this improvement in words:

  1. 50% improvement (0.75-0.5)?
  2. 25% improvement (0.75-0.5)/0.5?

it seems like simple statistics, but I am mixed up on this issue.

Franck Dernoncourt
  • 42,093
  • 30
  • 155
  • 271
w.ikl
  • 61
  • 1

3 Answers3

3

You can equivalently use the following expressions:

Speaking of correct terms, AUROC (if that is your metric) should be used instead of AUC, as the latter term is ambiguous.

Franck Dernoncourt
  • 42,093
  • 30
  • 155
  • 271
2

I just posted a somewhat related question here: Compare and quantify relative improvement in ROC AUC scores? that has this as a component to it.

I'm not sure, though given the ROC AUC represents the probability that a classifier scores a positive case higher than a negative case, perhaps comparing the magnitude of the odds ratios would be an appropriate method for comparison.

So rather than 0.75 / 0.50, this becomes (3/1) / (1/1), so the improvement is 3x, i.e. the new model has 3x the odds of scoring a positive case more highly than a negative case compared to the old model.

(To the point above, 0.50 represents random chance, so perhaps these should be rescaled to between 0.5 and 1 which changes the interpretation though. Also in the case when you're comparing against a model with ROC AUC of 0.5, any improvement would represent infinite improvement. Comparing the odds ratios under this rescaled version also means that an improvement from 0.51 to 0.59 would represent the same amount of improvement as 0.91 to 0.99, however the former may feel more likely to arise randomly -- so would probably want to also consider some notion of confidence when comparing ROC AUCs.)

Bryan Shalloway
  • 499
  • 5
  • 11
0

To calculate your relative improvement assumed to be $x$, you should use $x=(0.75-0.5)/0.5$.

I believe the relative improvement is more intuitive in the AUC case. Also, AUC is commomly used in literature, so both AUC and AUROC arr okay

Wis
  • 2,044
  • 14
  • 31