pub struct VotingClassifierConfig {Show 14 fields
pub voting: VotingStrategy,
pub weights: Option<Vec<Float>>,
pub confidence_weighting: bool,
pub confidence_threshold: Float,
pub min_confidence_weight: Float,
pub enable_uncertainty: bool,
pub temperature: Float,
pub meta_regularization: Float,
pub n_bootstrap_samples: usize,
pub uncertainty_method: UncertaintyMethod,
pub consensus_threshold: Float,
pub entropy_weight_factor: Float,
pub variance_weight_factor: Float,
pub weight_adjustment_rate: Float,
}Expand description
Configuration for Voting Classifier
Fields§
§voting: VotingStrategy§weights: Option<Vec<Float>>§confidence_weighting: bool§confidence_threshold: Float§min_confidence_weight: Float§enable_uncertainty: bool§temperature: Float§meta_regularization: Float§n_bootstrap_samples: usize§uncertainty_method: UncertaintyMethod§consensus_threshold: Float§entropy_weight_factor: Float§variance_weight_factor: Float§weight_adjustment_rate: FloatTrait Implementations§
Source§impl Clone for VotingClassifierConfig
impl Clone for VotingClassifierConfig
Source§fn clone(&self) -> VotingClassifierConfig
fn clone(&self) -> VotingClassifierConfig
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 VotingClassifierConfig
impl Debug for VotingClassifierConfig
Auto Trait Implementations§
impl Freeze for VotingClassifierConfig
impl RefUnwindSafe for VotingClassifierConfig
impl Send for VotingClassifierConfig
impl Sync for VotingClassifierConfig
impl Unpin for VotingClassifierConfig
impl UnwindSafe for VotingClassifierConfig
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