Interface LabelingJobAlgorithmsConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LabelingJobAlgorithmsConfig.Builder,LabelingJobAlgorithmsConfig>,SdkBuilder<LabelingJobAlgorithmsConfig.Builder,LabelingJobAlgorithmsConfig>,SdkPojo
- Enclosing class:
- LabelingJobAlgorithmsConfig
@Mutable @NotThreadSafe public static interface LabelingJobAlgorithmsConfig.Builder extends SdkPojo, CopyableBuilder<LabelingJobAlgorithmsConfig.Builder,LabelingJobAlgorithmsConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description LabelingJobAlgorithmsConfig.BuilderinitialActiveLearningModelArn(String initialActiveLearningModelArn)At the end of an auto-label job Ground Truth sends the Amazon Resource Name (ARN) of the final model used for auto-labeling.LabelingJobAlgorithmsConfig.BuilderlabelingJobAlgorithmSpecificationArn(String labelingJobAlgorithmSpecificationArn)Specifies the Amazon Resource Name (ARN) of the algorithm used for auto-labeling.default LabelingJobAlgorithmsConfig.BuilderlabelingJobResourceConfig(Consumer<LabelingJobResourceConfig.Builder> labelingJobResourceConfig)Provides configuration information for a labeling job.LabelingJobAlgorithmsConfig.BuilderlabelingJobResourceConfig(LabelingJobResourceConfig labelingJobResourceConfig)Provides configuration information for a labeling job.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
labelingJobAlgorithmSpecificationArn
LabelingJobAlgorithmsConfig.Builder labelingJobAlgorithmSpecificationArn(String labelingJobAlgorithmSpecificationArn)
Specifies the Amazon Resource Name (ARN) of the algorithm used for auto-labeling. You must select one of the following ARNs:
-
Image classification
arn:aws:sagemaker:region:027400017018:labeling-job-algorithm-specification/image-classification -
Text classification
arn:aws:sagemaker:region:027400017018:labeling-job-algorithm-specification/text-classification -
Object detection
arn:aws:sagemaker:region:027400017018:labeling-job-algorithm-specification/object-detection -
Semantic Segmentation
arn:aws:sagemaker:region:027400017018:labeling-job-algorithm-specification/semantic-segmentation
- Parameters:
labelingJobAlgorithmSpecificationArn- Specifies the Amazon Resource Name (ARN) of the algorithm used for auto-labeling. You must select one of the following ARNs:-
Image classification
arn:aws:sagemaker:region:027400017018:labeling-job-algorithm-specification/image-classification -
Text classification
arn:aws:sagemaker:region:027400017018:labeling-job-algorithm-specification/text-classification -
Object detection
arn:aws:sagemaker:region:027400017018:labeling-job-algorithm-specification/object-detection -
Semantic Segmentation
arn:aws:sagemaker:region:027400017018:labeling-job-algorithm-specification/semantic-segmentation
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
initialActiveLearningModelArn
LabelingJobAlgorithmsConfig.Builder initialActiveLearningModelArn(String initialActiveLearningModelArn)
At the end of an auto-label job Ground Truth sends the Amazon Resource Name (ARN) of the final model used for auto-labeling. You can use this model as the starting point for subsequent similar jobs by providing the ARN of the model here.
- Parameters:
initialActiveLearningModelArn- At the end of an auto-label job Ground Truth sends the Amazon Resource Name (ARN) of the final model used for auto-labeling. You can use this model as the starting point for subsequent similar jobs by providing the ARN of the model here.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
labelingJobResourceConfig
LabelingJobAlgorithmsConfig.Builder labelingJobResourceConfig(LabelingJobResourceConfig labelingJobResourceConfig)
Provides configuration information for a labeling job.
- Parameters:
labelingJobResourceConfig- Provides configuration information for a labeling job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
labelingJobResourceConfig
default LabelingJobAlgorithmsConfig.Builder labelingJobResourceConfig(Consumer<LabelingJobResourceConfig.Builder> labelingJobResourceConfig)
Provides configuration information for a labeling job.
This is a convenience method that creates an instance of theLabelingJobResourceConfig.Builderavoiding the need to create one manually viaLabelingJobResourceConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tolabelingJobResourceConfig(LabelingJobResourceConfig).- Parameters:
labelingJobResourceConfig- a consumer that will call methods onLabelingJobResourceConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
labelingJobResourceConfig(LabelingJobResourceConfig)
-
-