Struct aws_sdk_sagemaker::model::IntegerParameterRange
source · [−]#[non_exhaustive]pub struct IntegerParameterRange { /* private fields */ }Expand description
For a hyperparameter of the integer type, specifies the range that a hyperparameter tuning job searches.
Implementations
sourceimpl IntegerParameterRange
impl IntegerParameterRange
sourcepub fn scaling_type(&self) -> Option<&HyperParameterScalingType>
pub fn scaling_type(&self) -> Option<&HyperParameterScalingType>
The scale that hyperparameter tuning uses to search the hyperparameter range. For information about choosing a hyperparameter scale, see Hyperparameter Scaling. One of the following values:
- Auto
-
SageMaker hyperparameter tuning chooses the best scale for the hyperparameter.
- Linear
-
Hyperparameter tuning searches the values in the hyperparameter range by using a linear scale.
- Logarithmic
-
Hyperparameter tuning searches the values in the hyperparameter range by using a logarithmic scale.
Logarithmic scaling works only for ranges that have only values greater than 0.
sourceimpl IntegerParameterRange
impl IntegerParameterRange
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture IntegerParameterRange.
Trait Implementations
sourceimpl Clone for IntegerParameterRange
impl Clone for IntegerParameterRange
sourcefn clone(&self) -> IntegerParameterRange
fn clone(&self) -> IntegerParameterRange
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for IntegerParameterRange
impl Debug for IntegerParameterRange
sourceimpl PartialEq<IntegerParameterRange> for IntegerParameterRange
impl PartialEq<IntegerParameterRange> for IntegerParameterRange
sourcefn eq(&self, other: &IntegerParameterRange) -> bool
fn eq(&self, other: &IntegerParameterRange) -> bool
impl StructuralPartialEq for IntegerParameterRange
Auto Trait Implementations
impl RefUnwindSafe for IntegerParameterRange
impl Send for IntegerParameterRange
impl Sync for IntegerParameterRange
impl Unpin for IntegerParameterRange
impl UnwindSafe for IntegerParameterRange
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more