rustyml 0.13.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 and its underlying
//! [`IsolationTree`] node type

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

pub use isolation_forest::{IsolationForest, IsolationTree};