Anomaly Detection for Imbalanced Data #911
-
HI everyone, Can anyone guide me on working with imbalanced data in online anomaly detection? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You seem to figuring things out by yourself. And we don't have enough information to help you out in terms of performance (no code, no data, etc.).
That's expected. At this point I would recommend you try out scikit-learn on your data and check if it works better. It might just be that your problem is too difficult, even for a batch model. |
Beta Was this translation helpful? Give feedback.
You seem to figuring things out by yourself. And we don't have enough information to help you out in terms of performance (no code, no data, etc.).
That's expected.
RandomOverSampler
is meant to be used with a classifier, whichHalfSpaceTrees
isn't. I guess we could extendRandomOverSampler
it to supportscore_one
. Although my first feeling is that it's weird to oversample the minority class when you're doing anomaly dete…