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
//! Graph-based anomaly detection.
//!
//! # Algorithms
//!
//! - [`dominant`] — DOMINANT: Deep Autoencoder-based anomaly detection on attributed graphs
//!   (Ding et al. 2019, SDM). Jointly reconstructs adjacency structure and node features.
pub mod dominant;
pub use dominant::*;