Class: Aws::SageMaker::Types::ObjectiveStatusCounters

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

Instance Attribute Details

#failedInteger

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.

Returns:

  • (Integer)


35052
35053
35054
35055
35056
35057
35058
# File 'lib/aws-sdk-sagemaker/types.rb', line 35052

class ObjectiveStatusCounters < Struct.new(
  :succeeded,
  :pending,
  :failed)
  SENSITIVE = []
  include Aws::Structure
end

#pendingInteger

The number of training jobs that are in progress and pending evaluation of their final objective metric.

Returns:

  • (Integer)


35052
35053
35054
35055
35056
35057
35058
# File 'lib/aws-sdk-sagemaker/types.rb', line 35052

class ObjectiveStatusCounters < Struct.new(
  :succeeded,
  :pending,
  :failed)
  SENSITIVE = []
  include Aws::Structure
end

#succeededInteger

The number of training jobs whose final objective metric was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.

Returns:

  • (Integer)


35052
35053
35054
35055
35056
35057
35058
# File 'lib/aws-sdk-sagemaker/types.rb', line 35052

class ObjectiveStatusCounters < Struct.new(
  :succeeded,
  :pending,
  :failed)
  SENSITIVE = []
  include Aws::Structure
end