Class: Aws::SageMaker::Types::BestObjectiveNotImproving
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::SageMaker::Types::BestObjectiveNotImproving
 
- Defined in:
- gems/aws-sdk-sagemaker/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.
| 3534 3535 3536 3537 3538 | # File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3534 class BestObjectiveNotImproving < Struct.new( :max_number_of_training_jobs_not_improving) SENSITIVE = [] include Aws::Structure end |