Skip to main content

LatentZRankIntCalibration

Struct LatentZRankIntCalibration 

Source
pub struct LatentZRankIntCalibration {
    pub sorted_z: Vec<f64>,
    pub weighted_cdf: Vec<f64>,
    pub post_mean: f64,
    pub post_sd: f64,
}
Expand description

Blom-rankit weighted rank inverse-normal transform for the latent score.

When the latent z fails the standard-normal auto-detection ([latent_z_is_standard_normal_enough]), the BMS family applied to pretend the score is N(0,1) anyway would distort the closed-form probit log-CDF kernel. The historical fallback (local- or global-empirical latent measure) is mathematically correct but triggers the per-row intercept Newton solve in the empirical-grid closed-form kernels (empirical_rigid_primary_grad_hess_closed_form and its higher-order siblings); at large scale that is the dominant cost.

Rank-INT is exact under monotone re-parameterisation. The Blom rankit assigns each sorted training z the rank-probability (W_i − 0.375) / (W_total + 0.25), then maps that probability through Φ⁻¹. The transform is strictly monotone on the observed support, so the BMS likelihood is invariant up to a re-parameterisation (the model is a transformation-equivariant family on the latent axis). The transformed sample is exactly N(0,1) by construction, so the standard-normal closed-form kernel is exact on the calibrated scale. The kept work is the same closed-form signed_probit_logcdf_and_mills_ratio evaluation as the no-calibration path; the dropped work is the empirical-grid jet machinery. Persisted to disk so prediction applies the same monotone map to incoming z and re-routes through the closed-form kernel.

Fields§

§sorted_z: Vec<f64>

Sorted unique z values seen during training, ascending. Knot table for apply_to_training / apply_at_predict.

§weighted_cdf: Vec<f64>

Weighted cumulative-distribution-function values at each sorted_z knot, in [eps, 1 - eps] with eps = 0.5 / W_total. Strictly increasing.

§post_mean: f64

Weighted mean of the calibrated training sample. Used as a sanity-check value on fit; should be very close to zero.

§post_sd: f64

Weighted SD of the calibrated training sample. Used as a sanity-check value on fit; should be very close to one.

Implementations§

Source§

impl LatentZRankIntCalibration

Source

pub fn fit(z: &Array1<f64>, weights: &Array1<f64>) -> Result<Self, String>

Fit the weighted rank-INT calibration from training z and weights.

Algorithm:

  1. Sort rows by ascending z.
  2. Compute cumulative weight W_i at each sorted row.
  3. Blom-rankit cumulative probability: p_i = (W_i − 0.375) / (W_total + 0.25).
  4. Clip to [eps, 1 − eps] with eps = 0.5 / W_total.
  5. Store (sorted_z, weighted_cdf = p_i).

Returns the calibration plus the post-transform sample’s weighted mean / SD for sanity-check logging.

Source

pub fn apply_to_training(&self, z: &Array1<f64>) -> Result<Array1<f64>, String>

Apply the calibration to the full training z vector, returning the calibrated sample. Equivalent to mapping each row’s z through Self::apply_at_predict, but vectorised.

Source

pub fn apply_at_predict(&self, z: f64) -> f64

Apply the calibration to a single z at predict time.

Linear interpolation on (sorted_z, weighted_cdf) to obtain p ∈ [eps, 1 − eps], then Φ⁻¹(p) via standard_normal_quantile. Out-of-range z’s clip to the boundary CDF before the quantile, so the calibration extrapolates monotonically beyond the training support.

Trait Implementations§

Source§

impl Clone for LatentZRankIntCalibration

Source§

fn clone(&self) -> LatentZRankIntCalibration

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for LatentZRankIntCalibration

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for LatentZRankIntCalibration

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for LatentZRankIntCalibration

Source§

fn eq(&self, other: &LatentZRankIntCalibration) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for LatentZRankIntCalibration

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for LatentZRankIntCalibration

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> ByRef<T> for T

Source§

fn by_ref(&self) -> &T

Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> DistributionExt for T
where T: ?Sized,

Source§

fn rand<T>(&self, rng: &mut (impl Rng + ?Sized)) -> T
where Self: Distribution<T>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Imply<T> for U
where T: ?Sized, U: ?Sized,

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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 more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,

Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V