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