irithyll 10.0.1

Streaming ML in Rust -- gradient boosted trees, neural architectures (TTT/KAN/MoE/Mamba/SNN), AutoML, kernel methods, and composable pipelines
Documentation
1
2
3
4
5
6
7
8
//! Streaming anomaly detection algorithms.
//!
//! This module provides lightweight, single-pass anomaly detectors
//! suitable for data streams where the full dataset is never available.

pub mod hst;

pub use hst::{HSTConfig, HalfSpaceTree};