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
9
10
11
12
13
14
//! Time series models for streaming forecasting.
//!
//! This module provides online time series algorithms that process observations
//! one at a time, maintaining O(m) state where m is the seasonal period.

pub mod decomposition;
pub mod holt_winters;
pub mod snarimax;

pub use decomposition::{
    DecomposedPoint, DecompositionConfig, DecompositionConfigBuilder, StreamingDecomposition,
};
pub use holt_winters::{HoltWinters, HoltWintersConfig, HoltWintersConfigBuilder, Seasonality};
pub use snarimax::{SNARIMAXCoefficients, SNARIMAXConfig, SNARIMAX};