pub struct HyperParameterTuningJobConfig {
pub parameter_ranges: Option<ParameterRanges>,
}Expand description
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§
Source§impl Clone for HyperParameterTuningJobConfig
impl Clone for HyperParameterTuningJobConfig
Source§fn clone(&self) -> HyperParameterTuningJobConfig
fn clone(&self) -> HyperParameterTuningJobConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for HyperParameterTuningJobConfig
impl Default for HyperParameterTuningJobConfig
Source§fn default() -> HyperParameterTuningJobConfig
fn default() -> HyperParameterTuningJobConfig
Source§impl<'de> Deserialize<'de> for HyperParameterTuningJobConfig
impl<'de> Deserialize<'de> for HyperParameterTuningJobConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for HyperParameterTuningJobConfig
impl PartialEq for HyperParameterTuningJobConfig
Source§fn eq(&self, other: &HyperParameterTuningJobConfig) -> bool
fn eq(&self, other: &HyperParameterTuningJobConfig) -> bool
self and other values to be equal, and is used by ==.