Class: Aws::SageMaker::Types::FinalHyperParameterTuningJobObjectiveMetric
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::FinalHyperParameterTuningJobObjectiveMetric
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Shows the final value for the objective metric for a training job that was launched by a hyperparameter tuning job. You define the objective metric in the ‘HyperParameterTuningJobObjective` parameter of HyperParameterTuningJobConfig.
Instance Attribute Summary collapse
-
#metric_name ⇒ String
The name of the objective metric.
-
#type ⇒ String
Whether to minimize or maximize the objective metric.
-
#value ⇒ Float
The value of the objective metric.
Instance Attribute Details
#metric_name ⇒ String
The name of the objective metric.
9251 9252 9253 9254 9255 9256 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 9251 class FinalHyperParameterTuningJobObjectiveMetric < Struct.new( :type, :metric_name, :value) include Aws::Structure end |
#type ⇒ String
Whether to minimize or maximize the objective metric. Valid values are Minimize and Maximize.
9251 9252 9253 9254 9255 9256 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 9251 class FinalHyperParameterTuningJobObjectiveMetric < Struct.new( :type, :metric_name, :value) include Aws::Structure end |
#value ⇒ Float
The value of the objective metric.
9251 9252 9253 9254 9255 9256 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 9251 class FinalHyperParameterTuningJobObjectiveMetric < Struct.new( :type, :metric_name, :value) include Aws::Structure end |