#[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() -> Builder
pub fn builder() -> Builder
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 ==
.