public static interface TextClassificationJobConfig.Builder extends SdkPojo, CopyableBuilder<TextClassificationJobConfig.Builder,TextClassificationJobConfig>
| Modifier and Type | Method and Description |
|---|---|
TextClassificationJobConfig.Builder |
completionCriteria(AutoMLJobCompletionCriteria completionCriteria)
How long a job is allowed to run, or how many candidates a job is allowed to generate.
|
default TextClassificationJobConfig.Builder |
completionCriteria(Consumer<AutoMLJobCompletionCriteria.Builder> completionCriteria)
How long a job is allowed to run, or how many candidates a job is allowed to generate.
|
TextClassificationJobConfig.Builder |
contentColumn(String contentColumn)
The name of the column used to provide the sentences to be classified.
|
TextClassificationJobConfig.Builder |
targetLabelColumn(String targetLabelColumn)
The name of the column used to provide the class labels.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildTextClassificationJobConfig.Builder completionCriteria(AutoMLJobCompletionCriteria completionCriteria)
How long a job is allowed to run, or how many candidates a job is allowed to generate.
completionCriteria - How long a job is allowed to run, or how many candidates a job is allowed to generate.default TextClassificationJobConfig.Builder completionCriteria(Consumer<AutoMLJobCompletionCriteria.Builder> completionCriteria)
How long a job is allowed to run, or how many candidates a job is allowed to generate.
This is a convenience method that creates an instance of theAutoMLJobCompletionCriteria.Builder
avoiding the need to create one manually via AutoMLJobCompletionCriteria.builder().
When the Consumer completes, SdkBuilder.build() is called
immediately and its result is passed to completionCriteria(AutoMLJobCompletionCriteria).
completionCriteria - a consumer that will call methods on AutoMLJobCompletionCriteria.BuildercompletionCriteria(AutoMLJobCompletionCriteria)TextClassificationJobConfig.Builder contentColumn(String contentColumn)
The name of the column used to provide the sentences to be classified. It should not be the same as the target column.
contentColumn - The name of the column used to provide the sentences to be classified. It should not be the same as
the target column.TextClassificationJobConfig.Builder targetLabelColumn(String targetLabelColumn)
The name of the column used to provide the class labels. It should not be same as the content column.
targetLabelColumn - The name of the column used to provide the class labels. It should not be same as the content column.Copyright © 2023. All rights reserved.