[][src]Struct rusoto_sagemaker::ParameterRanges

pub struct ParameterRanges {
    pub categorical_parameter_ranges: Option<Vec<CategoricalParameterRange>>,
    pub continuous_parameter_ranges: Option<Vec<ContinuousParameterRange>>,
    pub integer_parameter_ranges: Option<Vec<IntegerParameterRange>>,
}

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

impl PartialEq<ParameterRanges> for ParameterRanges[src]

impl Default for ParameterRanges[src]

impl Clone for ParameterRanges[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ParameterRanges[src]

impl<'de> Deserialize<'de> for ParameterRanges[src]

impl Serialize for ParameterRanges[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self