rcf3 0.5.1

Streaming anomaly detection algorithms in Rust with Python bindings.
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};