pub struct CVModelScore {
pub model_index: usize,
pub model_name: String,
pub fold_scores: Vec<f64>,
pub mean_score: f64,
pub std_score: f64,
pub std_error: f64,
pub min_score: f64,
pub max_score: f64,
}Expand description
Cross-validation scores for a model
Fields§
§model_index: usizeModel index
model_name: StringModel name/identifier
fold_scores: Vec<f64>Individual fold scores
mean_score: f64Mean score
std_score: f64Standard deviation
std_error: f64Standard error of the mean
min_score: f64Minimum score
max_score: f64Maximum score
Trait Implementations§
Source§impl Clone for CVModelScore
impl Clone for CVModelScore
Source§fn clone(&self) -> CVModelScore
fn clone(&self) -> CVModelScore
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CVModelScore
impl RefUnwindSafe for CVModelScore
impl Send for CVModelScore
impl Sync for CVModelScore
impl Unpin for CVModelScore
impl UnwindSafe for CVModelScore
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