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
14
15
16
17
//! Mixed numerical/categorical streaming anomaly detection with mStream.
//!
//! Use [`MStream`] to ingest records online, [`MStreamScore`] when you need
//! per-feature score decomposition, and the detector's JSON helpers when
//! persisting or restoring state.

mod clock;
mod config;
mod detector;
mod normalization;
#[cfg(feature = "python")]
pub(crate) mod python;
mod scoring;
mod sketch;

pub use config::MStreamConfig;
pub use detector::{MStream, MStreamBuilder, MStreamScore};