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.
3209 3210 3211 3212 3213 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 3209 class BestObjectiveNotImproving < Struct.new( :max_number_of_training_jobs_not_improving) SENSITIVE = [] include Aws::Structure end |