pub struct EnsembleStats {
pub n_estimators: usize,
pub mean_weight: Float,
pub mean_performance: Float,
pub mean_confidence: Float,
pub weight_variance: Float,
pub total_complexity: Float,
}Expand description
Statistics about an ensemble
Fields§
§n_estimators: usize§mean_weight: Float§mean_performance: Float§mean_confidence: Float§weight_variance: Float§total_complexity: FloatTrait Implementations§
Source§impl Clone for EnsembleStats
impl Clone for EnsembleStats
Source§fn clone(&self) -> EnsembleStats
fn clone(&self) -> EnsembleStats
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 moreSource§impl Debug for EnsembleStats
impl Debug for EnsembleStats
Auto Trait Implementations§
impl Freeze for EnsembleStats
impl RefUnwindSafe for EnsembleStats
impl Send for EnsembleStats
impl Sync for EnsembleStats
impl Unpin for EnsembleStats
impl UnwindSafe for EnsembleStats
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