irithyll-core 1.0.0

Core types, training engine, and inference for irithyll streaming ML — no_std + alloc, histogram binning, Hoeffding trees, SGBT ensembles, drift detection, f32 + int16 packed formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! mGRADE (Minimal Recurrent Gating with Delay Convolutions) core cells.
//!
//! Based on arXiv July 2025. Combines:
//!
//! 1. **minGRU** -- minimal gated recurrent unit with no recurrent candidate
//! 2. **Learnable delay convolution** -- 1D depthwise conv with learnable spacings

pub mod delay_conv;
pub mod min_gru;

pub use delay_conv::DelayConv1D;
pub use min_gru::MinGRUCell;