Documentation

Atlas.HighDimensionalStatistics.code.Chapter3.Remark_3_1

noncomputable def Chapter3.MSE {n : } (fhat f : Fin n) :

MSE of a prediction vector f̂ relative to the true signal f: MSE(f̂) = (1/n)|f̂ − f|₂²

Instances For
    noncomputable def Chapter3.support_size {M : } (θ : Fin M) :

    ℓ₀ "norm" (support size) of a vector

    Instances For
      noncomputable def Chapter3.l1norm {M : } (θ : Fin M) :

      ℓ₁ norm of a vector

      Instances For
        noncomputable def Chapter3.lsObjective {n M : } (Y : Fin n) (Φ : Matrix (Fin n) (Fin M) ) (θ : Fin M) :

        The LS objective: (1/n)|Y − Φθ|². Used by both the unconstrained LS and constrained LS estimators.

        Instances For
          noncomputable def Chapter3.bicObjective {n M : } (Y : Fin n) (Φ : Matrix (Fin n) (Fin M) ) (τ : ) (θ : Fin M) :

          The BIC objective: (1/n)|Y − Φθ|² + τ²|θ|₀

          Instances For
            noncomputable def Chapter3.lassoObjective {n M : } (Y : Fin n) (Φ : Matrix (Fin n) (Fin M) ) (τ : ) (θ : Fin M) :

            The Lasso objective: (1/n)|Y − Φθ|² + 2τ|θ|₁

            Instances For
              theorem Chapter3.MSE_nonneg {n : } (fhat f : Fin n) :
              0 MSE fhat f

              MSE is always nonneg: product of (1/n ≥ 0) and (sum of squares ≥ 0).

              theorem Chapter3.lsObjective_nonneg {n M : } (Y : Fin n) (Φ : Matrix (Fin n) (Fin M) ) (θ : Fin M) :
              0 lsObjective Y Φ θ

              The LS objective is always nonneg.

              theorem Chapter3.l1norm_nonneg {M : } (θ : Fin M) :
              0 l1norm θ

              The ℓ₁ norm is always nonneg.