Class: Aws::SageMaker::Types::ObjectiveStatusCounters
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ObjectiveStatusCounters
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Specifies the number of training jobs that this hyperparameter tuning job launched, categorized by the status of their objective metric. The objective metric status shows whether the final objective metric for the training job has been evaluated by the tuning job and used in the hyperparameter tuning process.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failed ⇒ Integer
The number of training jobs whose final objective metric was not evaluated and used in the hyperparameter tuning process.
-
#pending ⇒ Integer
The number of training jobs that are in progress and pending evaluation of their final objective metric.
-
#succeeded ⇒ Integer
The number of training jobs whose final objective metric was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.
Instance Attribute Details
#failed ⇒ Integer
The number of training jobs whose final objective metric was not evaluated and used in the hyperparameter tuning process. This typically occurs when the training job failed or did not emit an objective metric.
35147 35148 35149 35150 35151 35152 35153 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 35147 class ObjectiveStatusCounters < Struct.new( :succeeded, :pending, :failed) SENSITIVE = [] include Aws::Structure end |
#pending ⇒ Integer
The number of training jobs that are in progress and pending evaluation of their final objective metric.
35147 35148 35149 35150 35151 35152 35153 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 35147 class ObjectiveStatusCounters < Struct.new( :succeeded, :pending, :failed) SENSITIVE = [] include Aws::Structure end |
#succeeded ⇒ Integer
The number of training jobs whose final objective metric was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.
35147 35148 35149 35150 35151 35152 35153 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 35147 class ObjectiveStatusCounters < Struct.new( :succeeded, :pending, :failed) SENSITIVE = [] include Aws::Structure end |