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
9
10
11
12
//! Ensemble anomaly scoring.
pub mod ensemble;
pub mod ext_iforest;
pub mod federated;
pub mod loda;
pub mod lscp;
pub mod suod;

pub use federated::{
    AggregationMethod, ClientModel, FederatedAnomalyFit, FederatedConfig, federated_client_score,
    federated_fit, federated_predict, federated_score,
};