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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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)


35074
35075
35076
35077
35078
35079
35080
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 35074

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)


35074
35075
35076
35077
35078
35079
35080
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 35074

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)


35074
35075
35076
35077
35078
35079
35080
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 35074

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