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
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;