gam-problem 0.3.126

Neutral solver/criterion contract types for the gam penalized-likelihood engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// How the penalized Hessian's log-determinant and derivatives treat the
/// spectrum below the stability floor.
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub enum PseudoLogdetMode {
    /// Keep every eigenpair in the smooth spectral regularizer.
    #[default]
    Smooth,
    /// Exclude numerical null-space directions consistently from pseudo-logdet
    /// and derivative traces.
    HardPseudo,
}