pub struct ParameterRanges {
pub categorical_parameter_ranges: Option<Vec<CategoricalParameterRange>>,
pub continuous_parameter_ranges: Option<Vec<ContinuousParameterRange>>,
pub integer_parameter_ranges: Option<Vec<IntegerParameterRange>>,
}
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§
§categorical_parameter_ranges: Option<Vec<CategoricalParameterRange>>
The array of CategoricalParameterRange objects that specify ranges of categorical 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.
integer_parameter_ranges: Option<Vec<IntegerParameterRange>>
The array of IntegerParameterRange objects that specify ranges of integer hyperparameters that a hyperparameter tuning job searches.
Trait Implementations§
Source§impl Clone for ParameterRanges
impl Clone for ParameterRanges
Source§fn clone(&self) -> ParameterRanges
fn clone(&self) -> ParameterRanges
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more