#[non_exhaustive]pub struct DefaultContinuousHyperParameterRange { /* private fields */ }
Expand description
Provides the name and default range of a continuous hyperparameter and whether the hyperparameter is tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).
Implementations§
source§impl DefaultContinuousHyperParameterRange
impl DefaultContinuousHyperParameterRange
sourcepub fn is_tunable(&self) -> bool
pub fn is_tunable(&self) -> bool
Whether the hyperparameter is tunable.
source§impl DefaultContinuousHyperParameterRange
impl DefaultContinuousHyperParameterRange
sourcepub fn builder() -> DefaultContinuousHyperParameterRangeBuilder
pub fn builder() -> DefaultContinuousHyperParameterRangeBuilder
Creates a new builder-style object to manufacture DefaultContinuousHyperParameterRange
.
Trait Implementations§
source§impl Clone for DefaultContinuousHyperParameterRange
impl Clone for DefaultContinuousHyperParameterRange
source§fn clone(&self) -> DefaultContinuousHyperParameterRange
fn clone(&self) -> DefaultContinuousHyperParameterRange
Returns a copy 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 PartialEq<DefaultContinuousHyperParameterRange> for DefaultContinuousHyperParameterRange
impl PartialEq<DefaultContinuousHyperParameterRange> for DefaultContinuousHyperParameterRange
source§fn eq(&self, other: &DefaultContinuousHyperParameterRange) -> bool
fn eq(&self, other: &DefaultContinuousHyperParameterRange) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DefaultContinuousHyperParameterRange
Auto Trait Implementations§
impl RefUnwindSafe for DefaultContinuousHyperParameterRange
impl Send for DefaultContinuousHyperParameterRange
impl Sync for DefaultContinuousHyperParameterRange
impl Unpin for DefaultContinuousHyperParameterRange
impl UnwindSafe for DefaultContinuousHyperParameterRange
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