Class: Aws::SageMaker::Types::TextClassificationJobConfig

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Stores the configuration information for the text classification problem of an AutoML job V2.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#completion_criteriaTypes::AutoMLJobCompletionCriteria

How long a job is allowed to run, or how many candidates a job is allowed to generate.



37758
37759
37760
37761
37762
37763
37764
# File 'lib/aws-sdk-sagemaker/types.rb', line 37758

class TextClassificationJobConfig < Struct.new(
  :completion_criteria,
  :content_column,
  :target_label_column)
  SENSITIVE = []
  include Aws::Structure
end

#content_columnString

The name of the column used to provide the sentences to be classified. It should not be the same as the target column.

Returns:

  • (String)


37758
37759
37760
37761
37762
37763
37764
# File 'lib/aws-sdk-sagemaker/types.rb', line 37758

class TextClassificationJobConfig < Struct.new(
  :completion_criteria,
  :content_column,
  :target_label_column)
  SENSITIVE = []
  include Aws::Structure
end

#target_label_columnString

The name of the column used to provide the class labels. It should not be same as the content column.

Returns:

  • (String)


37758
37759
37760
37761
37762
37763
37764
# File 'lib/aws-sdk-sagemaker/types.rb', line 37758

class TextClassificationJobConfig < Struct.new(
  :completion_criteria,
  :content_column,
  :target_label_column)
  SENSITIVE = []
  include Aws::Structure
end