oxicuda-anomaly 0.2.0

Anomaly detection primitives for OxiCUDA — DeepSVDD, AE/VAE reconstruction, LOF, COPOD, isolation scoring, statistical methods, ensemble
Documentation
//! Distance-based anomaly detection (LOF, kNN score, LOF with k-d tree, CBLOF, ABOD, COF,
//! FastABOD, SOD).
pub mod abod;
pub mod abod_approx;
pub mod cblof;
pub mod cof;
pub mod knn_score;
pub mod lof;
pub mod lof_kdtree;
pub mod sod;

pub use abod::Abod;
pub use abod_approx::AbodApprox;
pub use cblof::{CblofConfig, CblofFit, cblof_fit, cblof_predict, cblof_score};
pub use cof::Cof;
pub use lof_kdtree::{
    KdNode, KdTree, LofKdConfig, LofKdFit, kd_build, kd_knn, kd_knn_ex, lof_kd_fit, lof_kd_predict,
    lof_kd_score,
};
pub use sod::{Sod, SodConfig};