pub struct LDAConfig {
pub n_components: Option<usize>,
pub solver: LdaSolver,
pub shrinkage: Option<f64>,
pub tolerance: f64,
}Expand description
Configuration for Linear Discriminant Analysis
Fields§
§n_components: Option<usize>Number of components to keep (max: n_classes - 1)
solver: LdaSolverSolver for the eigenvalue problem
shrinkage: Option<f64>Shrinkage parameter for regularization (0.0 to 1.0)
tolerance: f64Tolerance for convergence
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LDAConfig
impl RefUnwindSafe for LDAConfig
impl Send for LDAConfig
impl Sync for LDAConfig
impl Unpin for LDAConfig
impl UnwindSafe for LDAConfig
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