[][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 Clone for ParameterRanges[src]

impl Debug for ParameterRanges[src]

impl Default for ParameterRanges[src]

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

impl PartialEq<ParameterRanges> for ParameterRanges[src]

impl Serialize for ParameterRanges[src]

impl StructuralPartialEq for ParameterRanges[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.