pub struct AtomInferenceReport {
pub atom_index: usize,
pub atom_name: String,
pub functionals: Option<AtomFunctionalReport>,
pub smooth_significance: Option<AtomSmoothSignificance>,
}Expand description
The post-PIRLS inference reports for one atom, paired by atom index.
Two reports survive #1115: the descriptive penalty-debiased point summaries
of the fitted decoder curve (AtomFunctionalReport, no coverage claim) and
the any-n-valid split-LRT smooth-structure e-value (AtomSmoothSignificance,
a genuine finite-sample-valid test). The #1099 per-atom curvature confidence
interval was removed: its target (a sup-norm extrinsic-curvature BOUND read
off the fitted decoder) is not an estimand with a profiled criterion, and its
delta-method SE conditioned on the generated latent coordinates as if known.
The plug-in curvature point estimate itself survives — as the per-atom
kappa_hat entries of
crate::manifold::CertificateInputs::per_atom_kappa_hat (the
#1008 empirical curved-dictionary report, surfaced to Python as
ManifoldSAE.curvature_report), the single source of truth for the bound.
It is deliberately not duplicated onto this report: a descriptive geometry
bound is a property of the fitted decoder frames, not of the post-PIRLS
inner-smooth inference snapshot this type carries.
Fields§
§atom_index: usize§atom_name: String§functionals: Option<AtomFunctionalReport>§smooth_significance: Option<AtomSmoothSignificance>Trait Implementations§
Source§impl Clone for AtomInferenceReport
impl Clone for AtomInferenceReport
Source§fn clone(&self) -> AtomInferenceReport
fn clone(&self) -> AtomInferenceReport
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 AtomInferenceReport
impl RefUnwindSafe for AtomInferenceReport
impl Send for AtomInferenceReport
impl Sync for AtomInferenceReport
impl Unpin for AtomInferenceReport
impl UnsafeUnpin for AtomInferenceReport
impl UnwindSafe for AtomInferenceReport
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.