pub struct ConfidenceEstimates {
pub overall_confidence: f64,
pub method_confidence: HashMap<String, f64>,
pub attribution_uncertainty: HashMap<String, f64>,
pub reliability_indicators: HashMap<String, f64>,
}
Expand description
Confidence estimates for interpretation results
Fields§
§overall_confidence: f64
Overall interpretation confidence (0-1)
method_confidence: HashMap<String, f64>
Method-specific confidence scores
attribution_uncertainty: HashMap<String, f64>
Uncertainty estimates for attributions
reliability_indicators: HashMap<String, f64>
Reliability indicators
Trait Implementations§
Source§impl Clone for ConfidenceEstimates
impl Clone for ConfidenceEstimates
Source§fn clone(&self) -> ConfidenceEstimates
fn clone(&self) -> ConfidenceEstimates
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ConfidenceEstimates
impl RefUnwindSafe for ConfidenceEstimates
impl Send for ConfidenceEstimates
impl Sync for ConfidenceEstimates
impl Unpin for ConfidenceEstimates
impl UnwindSafe for ConfidenceEstimates
Blanket Implementations§
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
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 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>
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