Class: Aws::SageMaker::Types::HyperParameterTuningJobObjective
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::HyperParameterTuningJobObjective
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass HyperParameterTuningJobObjective data as a hash:
{
type: "Maximize", # required, accepts Maximize, Minimize
metric_name: "MetricName", # required
}
Defines the objective metric for a hyperparameter tuning job. Hyperparameter tuning uses the value of this metric to evaluate the training jobs it launches, and returns the training job that results in either the highest or lowest value for this metric, depending on the value you specify for the ‘Type` parameter.
Instance Attribute Summary collapse
-
#metric_name ⇒ String
The name of the metric to use for the objective metric.
-
#type ⇒ String
Whether to minimize or maximize the objective metric.
Instance Attribute Details
#metric_name ⇒ String
The name of the metric to use for the objective metric.
10779 10780 10781 10782 10783 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10779 class HyperParameterTuningJobObjective < Struct.new( :type, :metric_name) include Aws::Structure end |
#type ⇒ String
Whether to minimize or maximize the objective metric.
10779 10780 10781 10782 10783 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10779 class HyperParameterTuningJobObjective < Struct.new( :type, :metric_name) include Aws::Structure end |