Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LabelingJobAlgorithmsConfig

import type { LabelingJobAlgorithmsConfig } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

Provides configuration information for auto-labeling of your data objects. A LabelingJobAlgorithmsConfig object must be supplied in order to use auto-labeling.

interface LabelingJobAlgorithmsConfig {
InitialActiveLearningModelArn?: string | null;
LabelingJobAlgorithmSpecificationArn: string;
LabelingJobResourceConfig?: LabelingJobResourceConfig | null;
}

§Properties

§
InitialActiveLearningModelArn?: string | null
[src]

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.

§
LabelingJobAlgorithmSpecificationArn: string
[src]

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
§
LabelingJobResourceConfig?: LabelingJobResourceConfig | null
[src]

Provides configuration information for a labeling job.