pub struct EvaluationScoreSummary {
pub name: String,
pub scored_cases: usize,
pub total_cases: usize,
pub mean: f64,
pub pass_rate: f64,
}Expand description
Aggregate score statistics.
Fields§
§name: StringStable scorer name.
scored_cases: usizeCases that produced this score.
total_cases: usizeTotal cases in the dataset.
mean: f64Mean over successfully scored cases.
pass_rate: f64Passing cases divided by all dataset cases.
Trait Implementations§
Source§impl Clone for EvaluationScoreSummary
impl Clone for EvaluationScoreSummary
Source§fn clone(&self) -> EvaluationScoreSummary
fn clone(&self) -> EvaluationScoreSummary
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 EvaluationScoreSummary
impl Debug for EvaluationScoreSummary
Source§impl<'de> Deserialize<'de> for EvaluationScoreSummary
impl<'de> Deserialize<'de> for EvaluationScoreSummary
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
Source§impl PartialEq for EvaluationScoreSummary
impl PartialEq for EvaluationScoreSummary
Source§impl Serialize for EvaluationScoreSummary
impl Serialize for EvaluationScoreSummary
impl StructuralPartialEq for EvaluationScoreSummary
Auto Trait Implementations§
impl Freeze for EvaluationScoreSummary
impl RefUnwindSafe for EvaluationScoreSummary
impl Send for EvaluationScoreSummary
impl Sync for EvaluationScoreSummary
impl Unpin for EvaluationScoreSummary
impl UnsafeUnpin for EvaluationScoreSummary
impl UnwindSafe for EvaluationScoreSummary
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