Class: Aws::SageMaker::Types::BestObjectiveNotImproving

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#max_number_of_training_jobs_not_improvingInteger

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.

Returns:

  • (Integer)


3020
3021
3022
3023
3024
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3020

class BestObjectiveNotImproving < Struct.new(
  :max_number_of_training_jobs_not_improving)
  SENSITIVE = []
  include Aws::Structure
end