You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should we implement the method described in [1] to quantify the confidence of an anomaly detector. This quantity might be useful to measure the uncertainty of an anomaly detector. The challenge is that the approach proposed in [1] assumes the data to be i.i.d. (independent and identically distributed), which is typically not the case for time series data. Nevertheless, it would be useful to see how this approach works with time series anomaly detectors.
[1] Lorenzo Perini, Vincent Vercruyssen, and Jesse Davis. Quantifying the confidence of anomaly detectors in their example-wise predictions. In Joint European Conference on Machine Learning and Knowledge Discovery in Databases, 227–243. Springer, 2020. https://doi.org/10.1007/978-3-030-67664-3_14
The text was updated successfully, but these errors were encountered:
If this method is implemented, then we can simply add it as an additional method within the BaseDetector, as it will simply call decision_function or predict_proba, after which some computations are done.
It might also be interesting to add a new visualization function, similar to plot_anomaly_scores, which shows the confidence visually as a bound around the anomaly scores.
Should we implement the method described in [1] to quantify the confidence of an anomaly detector. This quantity might be useful to measure the uncertainty of an anomaly detector. The challenge is that the approach proposed in [1] assumes the data to be i.i.d. (independent and identically distributed), which is typically not the case for time series data. Nevertheless, it would be useful to see how this approach works with time series anomaly detectors.
[1] Lorenzo Perini, Vincent Vercruyssen, and Jesse Davis. Quantifying the confidence of anomaly detectors in their example-wise predictions. In Joint European Conference on Machine Learning and Knowledge Discovery in Databases, 227–243. Springer, 2020. https://doi.org/10.1007/978-3-030-67664-3_14
The text was updated successfully, but these errors were encountered: