pub struct SavedPredictionRuntime {
pub model_class: PredictModelClass,
pub likelihood: LikelihoodSpec,
pub inverse_link: Option<InverseLink>,
pub link_wiggle: Option<SavedLinkWiggleRuntime>,
pub baseline_time_wiggle: Option<SavedBaselineTimeWiggleRuntime>,
pub score_warp: Option<SavedCompiledFlexBlock>,
pub link_deviation: Option<SavedCompiledFlexBlock>,
pub latent_z_rank_int_calibration: Option<LatentZRankIntCalibration>,
pub latent_z_conditional_calibration: Option<LatentZConditionalCalibration>,
pub influence_absorber_width: Option<usize>,
}Fields§
§model_class: PredictModelClass§likelihood: LikelihoodSpec§inverse_link: Option<InverseLink>§link_wiggle: Option<SavedLinkWiggleRuntime>§baseline_time_wiggle: Option<SavedBaselineTimeWiggleRuntime>§score_warp: Option<SavedCompiledFlexBlock>§link_deviation: Option<SavedCompiledFlexBlock>§latent_z_rank_int_calibration: Option<LatentZRankIntCalibration>Rank-INT latent-z calibration carried into the predictor build.
None for non-BMS models and for BMS fits whose latent measure
did not require rank-INT calibration.
latent_z_conditional_calibration: Option<LatentZConditionalCalibration>Conditional location-scale latent-z calibration (#905) carried into the
predictor build. None for non-BMS models and for BMS fits whose Auto
path did not detect a conditional E[z|C]/Var(z|C) shift. When
Some, the predictor replaces the normalized z by ζ = (z−m(C))/√v(C)
using the marginal prediction design as the conditioning span.
influence_absorber_width: Option<usize>Width p₁ of the absorbed Stage-1 influence block (#461) when the
survival marginal-slope fit hosted a dedicated additive absorber (the
trailing block). None when no CTN Stage-1 chain produced an influence
Jacobian. At predict the absorber’s γ is DROPPED (the orthogonalized
β̂ is a training-fit property), so the predictor uses this width only to
(a) account for the extra trailing block in the saved block count and
(b) slice γ’s rows/cols out of the joint covariance. Survival hosts the
absorber as its own block (unlike the BMS A2 widened-marginal design),
so it never widens any persisted prediction design.
Trait Implementations§
Source§impl Clone for SavedPredictionRuntime
impl Clone for SavedPredictionRuntime
Source§fn clone(&self) -> SavedPredictionRuntime
fn clone(&self) -> SavedPredictionRuntime
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for SavedPredictionRuntime
impl RefUnwindSafe for SavedPredictionRuntime
impl Send for SavedPredictionRuntime
impl Sync for SavedPredictionRuntime
impl Unpin for SavedPredictionRuntime
impl UnsafeUnpin for SavedPredictionRuntime
impl UnwindSafe for SavedPredictionRuntime
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,
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.