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