Struct aws_sdk_personalize::types::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() -> HyperParameterRangesBuilder
pub fn builder() -> HyperParameterRangesBuilder
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 ==
.impl StructuralPartialEq for HyperParameterRanges
Auto Trait Implementations§
impl RefUnwindSafe for HyperParameterRanges
impl Send for HyperParameterRanges
impl Sync for HyperParameterRanges
impl Unpin for HyperParameterRanges
impl UnwindSafe for HyperParameterRanges
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