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
14
15
//! Online Isolation Forest for numerical streaming anomaly detection.
//!
//! [`OnlineIForest`] maintains an ensemble of online isolation trees over a
//! sliding window. Each tree expands dense regions by splitting bins and
//! contracts stale regions by forgetting old points as the stream advances.

mod config;
mod detector;
mod node;
#[cfg(feature = "python")]
pub(crate) mod python;
mod tree;

pub use config::OnlineIForestConfig;
pub use detector::{OnlineIForest, OnlineIForestBuilder};