pub struct MeasureJetFrozenQuadrature {
pub masses: Array1<f64>,
pub eps_band: Vec<f64>,
pub support_means: Vec<f64>,
pub penalty_normalization_scales: Vec<f64>,
pub raw_penalty_normalization_scales: Vec<f64>,
pub fused_penalty_normalization_scale: Option<f64>,
}Expand description
Fit-time quadrature of the empirical measure (center masses + realized scale band), frozen onto the spec so predict-time rebuilds replay the exact fit-time penalty. Recomputing either from predict rows would silently change the penalty the coefficients were estimated under.
Fields§
§masses: Array1<f64>Per-center masses m_i (nearest-center fractions of the FIT rows).
eps_band: Vec<f64>Realized geometric scale band ε_0 < … < ε_{L−1}.
support_means: Vec<f64>Per-scale on-web support anchor
q̄_ℓ = (Σ_i m_i q_ℓ(c_i)) / (Σ_i m_i).
penalty_normalization_scales: Vec<f64>Frobenius scales of the emitted per-level normalized penalties. Empty in fused mode, where the band emits one primary penalty instead.
raw_penalty_normalization_scales: Vec<f64>Frobenius scales of the raw per-level forms before the arbitrary Mellin
log_step · ε_ℓ^(-2s0) gauge is folded in.
fused_penalty_normalization_scale: Option<f64>Frobenius scale of the single fused primary penalty. None in per-level
mode.
Trait Implementations§
Source§impl Clone for MeasureJetFrozenQuadrature
impl Clone for MeasureJetFrozenQuadrature
Source§fn clone(&self) -> MeasureJetFrozenQuadrature
fn clone(&self) -> MeasureJetFrozenQuadrature
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for MeasureJetFrozenQuadrature
impl Debug for MeasureJetFrozenQuadrature
Source§impl<'de> Deserialize<'de> for MeasureJetFrozenQuadrature
impl<'de> Deserialize<'de> for MeasureJetFrozenQuadrature
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Auto Trait Implementations§
impl Freeze for MeasureJetFrozenQuadrature
impl RefUnwindSafe for MeasureJetFrozenQuadrature
impl Send for MeasureJetFrozenQuadrature
impl Sync for MeasureJetFrozenQuadrature
impl Unpin for MeasureJetFrozenQuadrature
impl UnsafeUnpin for MeasureJetFrozenQuadrature
impl UnwindSafe for MeasureJetFrozenQuadrature
Blanket Implementations§
impl<T> Allocation for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T, U> Imply<T> for U
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.