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

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