Struct aws_sdk_sagemaker::model::ParameterRanges [−][src]
#[non_exhaustive]pub struct ParameterRanges {
pub integer_parameter_ranges: Option<Vec<IntegerParameterRange>>,
pub continuous_parameter_ranges: Option<Vec<ContinuousParameterRange>>,
pub categorical_parameter_ranges: Option<Vec<CategoricalParameterRange>>,
}
Expand description
Specifies ranges of integer, continuous, and categorical hyperparameters that a hyperparameter tuning job searches. The hyperparameter tuning job launches training jobs with hyperparameter values within these ranges to find the combination of values that result in the training job with the best performance as measured by the objective metric of the hyperparameter tuning job.
You can specify a maximum of 20 hyperparameters that a hyperparameter tuning job can search over. Every possible value of a categorical parameter range counts against this limit.
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.integer_parameter_ranges: Option<Vec<IntegerParameterRange>>
The array of IntegerParameterRange objects that specify ranges of integer hyperparameters that a hyperparameter tuning job searches.
continuous_parameter_ranges: Option<Vec<ContinuousParameterRange>>
The array of ContinuousParameterRange objects that specify ranges of continuous hyperparameters that a hyperparameter tuning job searches.
categorical_parameter_ranges: Option<Vec<CategoricalParameterRange>>
The array of CategoricalParameterRange objects that specify ranges of categorical hyperparameters that a hyperparameter tuning job searches.
Implementations
The array of IntegerParameterRange objects that specify ranges of integer hyperparameters that a hyperparameter tuning job searches.
The array of ContinuousParameterRange objects that specify ranges of continuous hyperparameters that a hyperparameter tuning job searches.
The array of CategoricalParameterRange objects that specify ranges of categorical hyperparameters that a hyperparameter tuning job searches.
Creates a new builder-style object to manufacture ParameterRanges
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 ParameterRanges
impl Send for ParameterRanges
impl Sync for ParameterRanges
impl Unpin for ParameterRanges
impl UnwindSafe for ParameterRanges
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