#[non_exhaustive]pub struct DefaultHyperParameterRanges { /* private fields */ }
Expand description
Specifies the hyperparameters and their default ranges. Hyperparameters can be categorical, continuous, or integer-valued.
Implementations§
source§impl DefaultHyperParameterRanges
impl DefaultHyperParameterRanges
sourcepub fn integer_hyper_parameter_ranges(
&self
) -> Option<&[DefaultIntegerHyperParameterRange]>
pub fn integer_hyper_parameter_ranges( &self ) -> Option<&[DefaultIntegerHyperParameterRange]>
The integer-valued hyperparameters and their default ranges.
sourcepub fn continuous_hyper_parameter_ranges(
&self
) -> Option<&[DefaultContinuousHyperParameterRange]>
pub fn continuous_hyper_parameter_ranges( &self ) -> Option<&[DefaultContinuousHyperParameterRange]>
The continuous hyperparameters and their default ranges.
sourcepub fn categorical_hyper_parameter_ranges(
&self
) -> Option<&[DefaultCategoricalHyperParameterRange]>
pub fn categorical_hyper_parameter_ranges( &self ) -> Option<&[DefaultCategoricalHyperParameterRange]>
The categorical hyperparameters and their default ranges.
source§impl DefaultHyperParameterRanges
impl DefaultHyperParameterRanges
sourcepub fn builder() -> DefaultHyperParameterRangesBuilder
pub fn builder() -> DefaultHyperParameterRangesBuilder
Creates a new builder-style object to manufacture DefaultHyperParameterRanges
.
Trait Implementations§
source§impl Clone for DefaultHyperParameterRanges
impl Clone for DefaultHyperParameterRanges
source§fn clone(&self) -> DefaultHyperParameterRanges
fn clone(&self) -> DefaultHyperParameterRanges
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 Debug for DefaultHyperParameterRanges
impl Debug for DefaultHyperParameterRanges
source§impl PartialEq<DefaultHyperParameterRanges> for DefaultHyperParameterRanges
impl PartialEq<DefaultHyperParameterRanges> for DefaultHyperParameterRanges
source§fn eq(&self, other: &DefaultHyperParameterRanges) -> bool
fn eq(&self, other: &DefaultHyperParameterRanges) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.