Class: Aws::SageMaker::Types::FinalAutoMLJobObjectiveMetric
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::FinalAutoMLJobObjectiveMetric
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
The best candidate result from an AutoML training job.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #metric_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the metric with the best result.
 - 
  
    
      #standard_metric_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the standard metric.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of metric with the best result.
 - 
  
    
      #value  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of the metric with the best result.
 
Instance Attribute Details
#metric_name ⇒ String
The name of the metric with the best result. For a description of the possible objective metrics, see [AutoMLJobObjective$MetricName].
[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLJobObjective.html
      20757 20758 20759 20760 20761 20762 20763 20764  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 20757 class FinalAutoMLJobObjectiveMetric < Struct.new( :type, :metric_name, :value, :standard_metric_name) SENSITIVE = [] include Aws::Structure end  | 
  
#standard_metric_name ⇒ String
The name of the standard metric. For a description of the standard metrics, see [Autopilot candidate metrics].
[1]: docs.aws.amazon.com/sagemaker/latest/dg/autopilot-metrics-validation.html#autopilot-metrics
      20757 20758 20759 20760 20761 20762 20763 20764  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 20757 class FinalAutoMLJobObjectiveMetric < Struct.new( :type, :metric_name, :value, :standard_metric_name) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The type of metric with the best result.
      20757 20758 20759 20760 20761 20762 20763 20764  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 20757 class FinalAutoMLJobObjectiveMetric < Struct.new( :type, :metric_name, :value, :standard_metric_name) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ Float
The value of the metric with the best result.
      20757 20758 20759 20760 20761 20762 20763 20764  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 20757 class FinalAutoMLJobObjectiveMetric < Struct.new( :type, :metric_name, :value, :standard_metric_name) SENSITIVE = [] include Aws::Structure end  |