pub struct ParameterBounds {
pub gamma_bounds: (f64, f64),
pub n_components_bounds: (usize, usize),
pub degree_bounds: Option<(i32, i32)>,
pub coef0_bounds: Option<(f64, f64)>,
}Expand description
Parameter bounds for optimization ParameterBounds
Fields§
§gamma_bounds: (f64, f64)Gamma parameter bounds
n_components_bounds: (usize, usize)Number of components bounds
degree_bounds: Option<(i32, i32)>Degree bounds (for polynomial kernels)
coef0_bounds: Option<(f64, f64)>Coef0 bounds (for polynomial kernels)
Trait Implementations§
Source§impl Clone for ParameterBounds
impl Clone for ParameterBounds
Source§fn clone(&self) -> ParameterBounds
fn clone(&self) -> ParameterBounds
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 ParameterBounds
impl Debug for ParameterBounds
Auto Trait Implementations§
impl Freeze for ParameterBounds
impl RefUnwindSafe for ParameterBounds
impl Send for ParameterBounds
impl Sync for ParameterBounds
impl Unpin for ParameterBounds
impl UnwindSafe for ParameterBounds
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