//! `Leaf` trait — the online predictor unit that laplace ensembles over.
//!
//! A leaf is a small streaming model that consumes observations one at a
//! time and emits per-horizon `Gaussian` predictions. The ensemble in
//! [`ensemble`](super::ensemble) tracks each leaf's cumulative log-likelihood
//! and turns those into softmax weights.
use Gaussian;
/// Streaming per-horizon predictor.