Struct aws_sdk_sagemaker::model::ContinuousParameterRange [−][src]
#[non_exhaustive]pub struct ContinuousParameterRange {
pub name: Option<String>,
pub min_value: Option<String>,
pub max_value: Option<String>,
pub scaling_type: Option<HyperParameterScalingType>,
}
Expand description
A list of continuous hyperparameters to tune.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the continuous hyperparameter to tune.
min_value: Option<String>
The minimum value for the hyperparameter.
The
tuning job uses floating-point values between this value and MaxValue
for
tuning.
max_value: Option<String>
The maximum value for the hyperparameter. The tuning job uses floating-point values
between MinValue
value and this value for tuning.
scaling_type: 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
-
Amazon 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.
- 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.
Implementations
The minimum value for the hyperparameter.
The
tuning job uses floating-point values between this value and MaxValue
for
tuning.
The maximum value for the hyperparameter. The tuning job uses floating-point values
between MinValue
value and this value for tuning.
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
-
Amazon 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.
- 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.
Creates a new builder-style object to manufacture ContinuousParameterRange
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ContinuousParameterRange
impl Send for ContinuousParameterRange
impl Sync for ContinuousParameterRange
impl Unpin for ContinuousParameterRange
impl UnwindSafe for ContinuousParameterRange
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more