rcf3 0.4.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
mod bounding_box;
mod config;
mod cut;
mod forest;
mod node_arena;
mod point_store;
#[cfg(feature = "python")]
pub(crate) mod python;
mod sampler;
mod score;
mod tree;

pub use config::RcfConfig;
pub use forest::{Forest, ForestBuilder, NeighborResult};
pub use score::Attribution;