what's the meaning of ROCAUC when using QuantileFilter #1173
-
what's the meaning of ROCAUC when we are using OCSVM with QuantileFilter?
Why all of confusion matrices of different thresholds are the same? what's problem? And what's the meaning of ROCAUC: 74.68% in this case |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
Hey there @hesamgh77. I think you're mixing things up. The The I hope that helps. |
Beta Was this translation helpful? Give feedback.
-
please see 2 below cases: 1-
2-
why are the Confusion matrices of case 2 (with filter) all the same and Confusion matrices of case 1(without filter) is correct? |
Beta Was this translation helpful? Give feedback.
Hey there @hesamgh77. I think you're mixing things up.
metrics.ROCAUC
andanomaly.QuantileFilter
have nothing to do with each other.The
metrics.ROCAUC
class measures the ROC AUC score in an online fashion. It does that by maintaining several confusion matrices, each one representing the confusion matrix when the output score is thresholded byp
.The
anomaly.QuantileFilter
class is here to filter out anomalies, so that the underlying anomaly detector doesn't learn on them.I hope that helps.