gam 0.3.121

Generalized penalized likelihood engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Identifiability: one coherent home for every identifiability concern in the
//! crate.
//!
//! - [`kernel`] — the low-level rank / null-space kernels.
//! - [`precondition`] — cheap pre-fit precondition checks.
//! - [`audit`] — the joint cross-block identifiability audit.
//! - [`canonical`] — canonicalization of specs for identifiability.
//! - [`families`] — the family-agnostic block compiler, its GPU paths, and the
//!   per-family row-Hessian implementations.
//! - [`marginal_slope`] — survival marginal-slope identifiability.

pub mod audit;
pub mod canonical;
pub mod families;
pub mod kernel;
pub mod marginal_slope;
pub mod precondition;