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
//! Subspace anomaly detection via randomized hashing.
//!
//! Exposes RS-Hash (Sathe & Aggarwal 2016): an ensemble of randomized
//! `(subspace × resolution × shift)` grid-hash components scored by cell
//! crowdedness.
pub mod rs_hash;

pub use rs_hash::{HashComponent, RsHash, RsHashConfig};