Struct aws_sdk_forecast::model::ContinuousParameterRange
source · [−]#[non_exhaustive]pub struct ContinuousParameterRange { /* private fields */ }Expand description
Specifies a continuous hyperparameter and it's range of tunable values. This object is part of the ParameterRanges object.
Implementations
sourceimpl ContinuousParameterRange
impl ContinuousParameterRange
sourcepub fn scaling_type(&self) -> Option<&ScalingType>
pub fn scaling_type(&self) -> Option<&ScalingType>
The scale that hyperparameter tuning uses to search the hyperparameter range. Valid values:
- Auto
-
Amazon Forecast 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 values greater than 0.
- ReverseLogarithmic
-
hyperparameter tuning searches the values in the hyperparameter range by using a reverse logarithmic scale.
Reverse logarithmic scaling works only for ranges that are entirely within the range 0 <= x < 1.0.
For information about choosing a hyperparameter scale, see Hyperparameter Scaling. One of the following values:
sourceimpl ContinuousParameterRange
impl ContinuousParameterRange
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ContinuousParameterRange.
Trait Implementations
sourceimpl Clone for ContinuousParameterRange
impl Clone for ContinuousParameterRange
sourcefn clone(&self) -> ContinuousParameterRange
fn clone(&self) -> ContinuousParameterRange
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more