pub struct ScoreSummary {
pub mean: f64,
pub std: f64,
pub count: usize,
}Expand description
Summary statistics for one evaluator (mean + population stddev + sample count).
Fields§
§mean: f64Arithmetic mean of the evaluator’s scores across the dataset
std: f64Population standard deviation across the dataset
count: usizeNumber of examples this evaluator successfully scored
Trait Implementations§
Source§impl Clone for ScoreSummary
impl Clone for ScoreSummary
Source§fn clone(&self) -> ScoreSummary
fn clone(&self) -> ScoreSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScoreSummary
impl Debug for ScoreSummary
Source§impl<'de> Deserialize<'de> for ScoreSummary
impl<'de> Deserialize<'de> for ScoreSummary
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ScoreSummary
impl RefUnwindSafe for ScoreSummary
impl Send for ScoreSummary
impl Sync for ScoreSummary
impl Unpin for ScoreSummary
impl UnsafeUnpin for ScoreSummary
impl UnwindSafe for ScoreSummary
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