rcf3 0.5.0

A Rust implementation of the Random Cut Forest algorithm for anomaly detection.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! FeatureSketch detector for sparse, schema-evolving feature streams.

mod chain;
mod config;
mod detector;
mod input;
mod projection;
#[cfg(feature = "python")]
pub(crate) mod python;
mod sketch;

pub use config::FeatureSketchConfig;
pub use detector::{FeatureSketch, FeatureSketchBuilder};