pub struct ModelRanking {
pub model_index: usize,
pub model_name: String,
pub rank: usize,
pub mean_score: f64,
pub std_score: f64,
pub confidence_interval: (f64, f64),
pub significant_difference: Option<bool>,
}Expand description
Ranking information for a model
Fields§
§model_index: usizeModel index
model_name: StringModel name/identifier
rank: usizeRank (1 = best)
mean_score: f64Mean CV score
std_score: f64Standard deviation of CV scores
confidence_interval: (f64, f64)95% confidence interval
significant_difference: Option<bool>Statistical significance vs best model
Trait Implementations§
Source§impl Clone for ModelRanking
impl Clone for ModelRanking
Source§fn clone(&self) -> ModelRanking
fn clone(&self) -> ModelRanking
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 ModelRanking
impl RefUnwindSafe for ModelRanking
impl Send for ModelRanking
impl Sync for ModelRanking
impl Unpin for ModelRanking
impl UnwindSafe for ModelRanking
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