oxicuda-anomaly 0.2.0

Anomaly detection primitives for OxiCUDA — DeepSVDD, AE/VAE reconstruction, LOF, COPOD, isolation scoring, statistical methods, ensemble
Documentation
1
2
3
4
5
6
7
8
//! Density-based anomaly detection (COPOD, Mahalanobis, GMM, KDE, FastMCD).
pub mod copod;
pub mod fast_mcd;
pub mod gmm_detector;
pub mod kde_detector;
pub mod mahalanobis;

pub use kde_detector::{Bandwidth, KdeConfig, KdeDetector, KdeKernel};