How to use ensembles with anomalies detectors #978
Replies: 3 comments 9 replies
-
So all in all the problem can be conceptually be boiled down to: "how to detect anomalies not on a single value, but on an histogram of values" and the ensemble of scorer can be thought of as a BoxPlot on the different buckets of the histogram. |
Beta Was this translation helpful? Give feedback.
-
Hey there. I'm not sure I understand everything. Say you want to have 5 anomaly detectors, are you looking for some way to merge the scores from all 5 anomaly detectors into a single score? |
Beta Was this translation helpful? Give feedback.
-
Also as a side question, is it possible to break out of a pipeline if a condition is met? like in pipeline A-B-C if block A returns None then the blocks B and C are never executed (circuit breaker) |
Beta Was this translation helpful? Give feedback.
-
I would like to setup an anomalies detector for monitoring single spectral amplitudes / frequency bands of a signal transformed using SDFT.
The idea is to have one input time series and then a bucketing function for the amplitude/frequency bands. For each one of these bands i would like to set a GaussianScorer/ThresholdFilter that would monitor that specific band's distribution and return 1 if that frequency is within a "dangerous" region.
The ensemble will then be used to aggregate the output of the single scorer and return an alarm signal based on an aggregation of the single ThresholdFilter's signals (perhaps just a fix threshold, like if 50% of the scorer return 1 then emits a signal).
I thought of using ensembles for this. Is this a possibility?
Link related discussions:
Beta Was this translation helpful? Give feedback.
All reactions