rustyml 0.14.0

A high-performance machine learning & deep learning library in pure Rust, offering ML algorithms and neural network support
Documentation
1
2
3
4
5
6
7
8
9
//! Ensemble models
//!
//! Groups [`IsolationForest`] for unsupervised anomaly detection, its underlying
//! [`IsolationTree`] node type, and the [`Contamination`] threshold rule

/// Isolation Forest for anomaly detection
pub mod isolation_forest;

pub use isolation_forest::{Contamination, IsolationForest, IsolationTree};