Class: Aws::SageMaker::Types::BestObjectiveNotImproving
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::BestObjectiveNotImproving
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
A structure that keeps track of which training jobs launched by your hyperparameter tuning job are not improving model performance as evaluated against an objective function.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #max_number_of_training_jobs_not_improving  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of training jobs that have failed to improve model performance by 1% or greater over prior training jobs as evaluated against an objective function.
 
Instance Attribute Details
#max_number_of_training_jobs_not_improving ⇒ Integer
The number of training jobs that have failed to improve model performance by 1% or greater over prior training jobs as evaluated against an objective function.
      3231 3232 3233 3234 3235  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 3231 class BestObjectiveNotImproving < Struct.new( :max_number_of_training_jobs_not_improving) SENSITIVE = [] include Aws::Structure end  |