[][src]Struct rusoto_forecast::HyperParameterTuningJobConfig

pub struct HyperParameterTuningJobConfig {
    pub parameter_ranges: Option<ParameterRanges>,
}

Configuration information for a hyperparameter tuning job. You specify this object in the CreatePredictor request.

A hyperparameter is a parameter that governs the model training process. You set hyperparameters before training starts, unlike model parameters, which are determined during training. The values of the hyperparameters effect which values are chosen for the model parameters.

In a hyperparameter tuning job, Amazon Forecast chooses the set of hyperparameter values that optimize a specified metric. Forecast accomplishes this by running many training jobs over a range of hyperparameter values. The optimum set of values depends on the algorithm, the training data, and the specified metric objective.

Fields

parameter_ranges: Option<ParameterRanges>

Specifies the ranges of valid values for the hyperparameters.

Trait Implementations

impl Clone for HyperParameterTuningJobConfig[src]

impl Debug for HyperParameterTuningJobConfig[src]

impl Default for HyperParameterTuningJobConfig[src]

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

impl PartialEq<HyperParameterTuningJobConfig> for HyperParameterTuningJobConfig[src]

impl Serialize for HyperParameterTuningJobConfig[src]

impl StructuralPartialEq for HyperParameterTuningJobConfig[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.