All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.sagemaker.model.HumanTaskConfig Maven / Gradle / Ivy

/*
 * Copyright 2015-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.sagemaker.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Information required for human workers to complete a labeling task. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class HumanTaskConfig implements Serializable, Cloneable, StructuredPojo { /** *

* The Amazon Resource Name (ARN) of the work team assigned to complete the tasks. *

*/ private String workteamArn; /** *

* Information about the user interface that workers use to complete the labeling task. *

*/ private UiConfig uiConfig; /** *

* The Amazon Resource Name (ARN) of a Lambda function that is run before a data object is sent to a human worker. * Use this function to provide input to a custom labeling job. *

*

* For built-in task types, use * one of the following Amazon SageMaker Ground Truth Lambda function ARNs for PreHumanTaskLambdaArn. * For custom labeling workflows, see Pre-annotation Lambda. *

*

* Bounding box - Finds the most similar boxes from different workers based on the Jaccard index of the * boxes. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-BoundingBox *

    *
  • *
*

* Image classification - Uses a variant of the Expectation Maximization approach to estimate the true class * of an image based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClass *

    *
  • *
*

* Multi-label image classification - Uses a variant of the Expectation Maximization approach to estimate the * true classes of an image based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
*

* Semantic segmentation - Treats each pixel in an image as a multi-class classification and treats pixel * annotations from workers as "votes" for the correct label. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-SemanticSegmentation *

    *
  • *
*

* Text classification - Uses a variant of the Expectation Maximization approach to estimate the true class * of text based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClass *

    *
  • *
*

* Multi-label text classification - Uses a variant of the Expectation Maximization approach to estimate the * true classes of text based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClassMultiLabel *

    *
  • *
*

* Named entity recognition - Groups similar selections and calculates aggregate boundaries, resolving to * most-assigned label. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-NamedEntityRecognition *

    *
  • *
*

* Video Classification - Use this task type when you need workers to classify videos using predefined labels * that you specify. Workers are shown videos and are asked to choose one label for each video. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoMultiClass *

    *
  • *
*

* Video Frame Object Detection - Use this task type to have workers identify and locate objects in a * sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use this task * to ask workers to identify and localize various objects in a series of video frames, such as cars, bikes, and * pedestrians. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectDetection *

    *
  • *
*

* Video Frame Object Tracking - Use this task type to have workers track the movement of objects in a * sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use this task * to ask workers to track the movement of objects, such as cars, bikes, and pedestrians. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectTracking *

    *
  • *
*

* 3D Point Cloud Modalities *

*

* Use the following pre-annotation lambdas for 3D point cloud labeling modality tasks. See 3D Point Cloud Task types * to learn more. *

*

* 3D Point Cloud Object Detection - Use this task type when you want workers to classify objects in a 3D * point cloud by drawing 3D cuboids around objects. For example, you can use this task type to ask workers to * identify different types of objects in a point cloud, such as cars, bikes, and pedestrians. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectDetection *

    *
  • *
*

* 3D Point Cloud Object Tracking - Use this task type when you want workers to draw 3D cuboids around * objects that appear in a sequence of 3D point cloud frames. For example, you can use this task type to ask * workers to track the movement of vehicles across multiple point cloud frames. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectTracking *

    *
  • *
*

* 3D Point Cloud Semantic Segmentation - Use this task type when you want workers to create a point-level * semantic segmentation masks by painting objects in a 3D point cloud using different colors where each color is * assigned to one of the classes you specify. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
*

* Use the following ARNs for Label Verification and Adjustment Jobs *

*

* Use label verification and adjustment jobs to review and adjust labels. To learn more, see Verify and Adjust Labels . *

*

* Bounding box verification - Uses a variant of the Expectation Maximization approach to estimate the true * class of verification judgement for bounding box labels based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
*

* Bounding box adjustment - Finds the most similar boxes from different workers based on the Jaccard index * of the adjusted annotations. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentBoundingBox *

    *
  • *
*

* Semantic segmentation verification - Uses a variant of the Expectation Maximization approach to estimate * the true class of verification judgment for semantic segmentation labels based on annotations from individual * workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationSemanticSegmentation *

    *
  • *
*

* Semantic segmentation adjustment - Treats each pixel in an image as a multi-class classification and * treats pixel adjusted annotations from workers as "votes" for the correct label. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
*

* Video Frame Object Detection Adjustment - Use this task type when you want workers to adjust bounding * boxes that workers have added to video frames to classify and localize objects in a sequence of video frames. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
*

* Video Frame Object Tracking Adjustment - Use this task type when you want workers to adjust bounding boxes * that workers have added to video frames to track object movement across a sequence of video frames. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
*

* 3D point cloud object detection adjustment - Adjust 3D cuboids in a point cloud frame. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
*

* 3D point cloud object tracking adjustment - Adjust 3D cuboids across a sequence of point cloud frames. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
*

* 3D point cloud semantic segmentation adjustment - Adjust semantic segmentation masks in a 3D point cloud. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
*/ private String preHumanTaskLambdaArn; /** *

* Keywords used to describe the task so that workers on Amazon Mechanical Turk can discover the task. *

*/ private java.util.List taskKeywords; /** *

* A title for the task for your human workers. *

*/ private String taskTitle; /** *

* A description of the task for your human workers. *

*/ private String taskDescription; /** *

* The number of human workers that will label an object. *

*/ private Integer numberOfHumanWorkersPerDataObject; /** *

* The amount of time that a worker has to complete a task. *

*/ private Integer taskTimeLimitInSeconds; /** *

* The length of time that a task remains available for labeling by human workers. If you choose the Amazon * Mechanical Turk workforce, the maximum is 12 hours (43200). The default value is 864000 seconds (10 days). * For private and vendor workforces, the maximum is as listed. *

*/ private Integer taskAvailabilityLifetimeInSeconds; /** *

* Defines the maximum number of data objects that can be labeled by human workers at the same time. Also referred * to as batch size. Each object may have more than one worker at one time. The default value is 1000 objects. *

*/ private Integer maxConcurrentTaskCount; /** *

* Configures how labels are consolidated across human workers. *

*/ private AnnotationConsolidationConfig annotationConsolidationConfig; /** *

* The price that you pay for each task performed by an Amazon Mechanical Turk worker. *

*/ private PublicWorkforceTaskPrice publicWorkforceTaskPrice; /** *

* The Amazon Resource Name (ARN) of the work team assigned to complete the tasks. *

* * @param workteamArn * The Amazon Resource Name (ARN) of the work team assigned to complete the tasks. */ public void setWorkteamArn(String workteamArn) { this.workteamArn = workteamArn; } /** *

* The Amazon Resource Name (ARN) of the work team assigned to complete the tasks. *

* * @return The Amazon Resource Name (ARN) of the work team assigned to complete the tasks. */ public String getWorkteamArn() { return this.workteamArn; } /** *

* The Amazon Resource Name (ARN) of the work team assigned to complete the tasks. *

* * @param workteamArn * The Amazon Resource Name (ARN) of the work team assigned to complete the tasks. * @return Returns a reference to this object so that method calls can be chained together. */ public HumanTaskConfig withWorkteamArn(String workteamArn) { setWorkteamArn(workteamArn); return this; } /** *

* Information about the user interface that workers use to complete the labeling task. *

* * @param uiConfig * Information about the user interface that workers use to complete the labeling task. */ public void setUiConfig(UiConfig uiConfig) { this.uiConfig = uiConfig; } /** *

* Information about the user interface that workers use to complete the labeling task. *

* * @return Information about the user interface that workers use to complete the labeling task. */ public UiConfig getUiConfig() { return this.uiConfig; } /** *

* Information about the user interface that workers use to complete the labeling task. *

* * @param uiConfig * Information about the user interface that workers use to complete the labeling task. * @return Returns a reference to this object so that method calls can be chained together. */ public HumanTaskConfig withUiConfig(UiConfig uiConfig) { setUiConfig(uiConfig); return this; } /** *

* The Amazon Resource Name (ARN) of a Lambda function that is run before a data object is sent to a human worker. * Use this function to provide input to a custom labeling job. *

*

* For built-in task types, use * one of the following Amazon SageMaker Ground Truth Lambda function ARNs for PreHumanTaskLambdaArn. * For custom labeling workflows, see Pre-annotation Lambda. *

*

* Bounding box - Finds the most similar boxes from different workers based on the Jaccard index of the * boxes. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-BoundingBox *

    *
  • *
*

* Image classification - Uses a variant of the Expectation Maximization approach to estimate the true class * of an image based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClass *

    *
  • *
*

* Multi-label image classification - Uses a variant of the Expectation Maximization approach to estimate the * true classes of an image based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
*

* Semantic segmentation - Treats each pixel in an image as a multi-class classification and treats pixel * annotations from workers as "votes" for the correct label. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-SemanticSegmentation *

    *
  • *
*

* Text classification - Uses a variant of the Expectation Maximization approach to estimate the true class * of text based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClass *

    *
  • *
*

* Multi-label text classification - Uses a variant of the Expectation Maximization approach to estimate the * true classes of text based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClassMultiLabel *

    *
  • *
*

* Named entity recognition - Groups similar selections and calculates aggregate boundaries, resolving to * most-assigned label. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-NamedEntityRecognition *

    *
  • *
*

* Video Classification - Use this task type when you need workers to classify videos using predefined labels * that you specify. Workers are shown videos and are asked to choose one label for each video. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoMultiClass *

    *
  • *
*

* Video Frame Object Detection - Use this task type to have workers identify and locate objects in a * sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use this task * to ask workers to identify and localize various objects in a series of video frames, such as cars, bikes, and * pedestrians. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectDetection *

    *
  • *
*

* Video Frame Object Tracking - Use this task type to have workers track the movement of objects in a * sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use this task * to ask workers to track the movement of objects, such as cars, bikes, and pedestrians. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectTracking *

    *
  • *
*

* 3D Point Cloud Modalities *

*

* Use the following pre-annotation lambdas for 3D point cloud labeling modality tasks. See 3D Point Cloud Task types * to learn more. *

*

* 3D Point Cloud Object Detection - Use this task type when you want workers to classify objects in a 3D * point cloud by drawing 3D cuboids around objects. For example, you can use this task type to ask workers to * identify different types of objects in a point cloud, such as cars, bikes, and pedestrians. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectDetection *

    *
  • *
*

* 3D Point Cloud Object Tracking - Use this task type when you want workers to draw 3D cuboids around * objects that appear in a sequence of 3D point cloud frames. For example, you can use this task type to ask * workers to track the movement of vehicles across multiple point cloud frames. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectTracking *

    *
  • *
*

* 3D Point Cloud Semantic Segmentation - Use this task type when you want workers to create a point-level * semantic segmentation masks by painting objects in a 3D point cloud using different colors where each color is * assigned to one of the classes you specify. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
*

* Use the following ARNs for Label Verification and Adjustment Jobs *

*

* Use label verification and adjustment jobs to review and adjust labels. To learn more, see Verify and Adjust Labels . *

*

* Bounding box verification - Uses a variant of the Expectation Maximization approach to estimate the true * class of verification judgement for bounding box labels based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
*

* Bounding box adjustment - Finds the most similar boxes from different workers based on the Jaccard index * of the adjusted annotations. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentBoundingBox *

    *
  • *
*

* Semantic segmentation verification - Uses a variant of the Expectation Maximization approach to estimate * the true class of verification judgment for semantic segmentation labels based on annotations from individual * workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationSemanticSegmentation *

    *
  • *
*

* Semantic segmentation adjustment - Treats each pixel in an image as a multi-class classification and * treats pixel adjusted annotations from workers as "votes" for the correct label. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
*

* Video Frame Object Detection Adjustment - Use this task type when you want workers to adjust bounding * boxes that workers have added to video frames to classify and localize objects in a sequence of video frames. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
*

* Video Frame Object Tracking Adjustment - Use this task type when you want workers to adjust bounding boxes * that workers have added to video frames to track object movement across a sequence of video frames. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
*

* 3D point cloud object detection adjustment - Adjust 3D cuboids in a point cloud frame. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
*

* 3D point cloud object tracking adjustment - Adjust 3D cuboids across a sequence of point cloud frames. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
*

* 3D point cloud semantic segmentation adjustment - Adjust semantic segmentation masks in a 3D point cloud. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
* * @param preHumanTaskLambdaArn * The Amazon Resource Name (ARN) of a Lambda function that is run before a data object is sent to a human * worker. Use this function to provide input to a custom labeling job.

*

* For built-in task types, * use one of the following Amazon SageMaker Ground Truth Lambda function ARNs for * PreHumanTaskLambdaArn. For custom labeling workflows, see Pre-annotation Lambda. *

*

* Bounding box - Finds the most similar boxes from different workers based on the Jaccard index of * the boxes. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-BoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-BoundingBox *

    *
  • *
*

* Image classification - Uses a variant of the Expectation Maximization approach to estimate the true * class of an image based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClass *

    *
  • *
*

* Multi-label image classification - Uses a variant of the Expectation Maximization approach to * estimate the true classes of an image based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClassMultiLabel *

    *
  • *
*

* Semantic segmentation - Treats each pixel in an image as a multi-class classification and treats * pixel annotations from workers as "votes" for the correct label. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-SemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-SemanticSegmentation *

    *
  • *
*

* Text classification - Uses a variant of the Expectation Maximization approach to estimate the true * class of text based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClass *

    *
  • *
*

* Multi-label text classification - Uses a variant of the Expectation Maximization approach to * estimate the true classes of text based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClassMultiLabel *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClassMultiLabel *

    *
  • *
*

* Named entity recognition - Groups similar selections and calculates aggregate boundaries, resolving * to most-assigned label. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-NamedEntityRecognition *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-NamedEntityRecognition *

    *
  • *
*

* Video Classification - Use this task type when you need workers to classify videos using predefined * labels that you specify. Workers are shown videos and are asked to choose one label for each video. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoMultiClass *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoMultiClass *

    *
  • *
*

* Video Frame Object Detection - Use this task type to have workers identify and locate objects in a * sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use * this task to ask workers to identify and localize various objects in a series of video frames, such as * cars, bikes, and pedestrians. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectDetection *

    *
  • *
*

* Video Frame Object Tracking - Use this task type to have workers track the movement of objects in a * sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use * this task to ask workers to track the movement of objects, such as cars, bikes, and pedestrians. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectTracking *

    *
  • *
*

* 3D Point Cloud Modalities *

*

* Use the following pre-annotation lambdas for 3D point cloud labeling modality tasks. See 3D Point Cloud Task * types to learn more. *

*

* 3D Point Cloud Object Detection - Use this task type when you want workers to classify objects in a * 3D point cloud by drawing 3D cuboids around objects. For example, you can use this task type to ask * workers to identify different types of objects in a point cloud, such as cars, bikes, and pedestrians. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectDetection *

    *
  • *
*

* 3D Point Cloud Object Tracking - Use this task type when you want workers to draw 3D cuboids around * objects that appear in a sequence of 3D point cloud frames. For example, you can use this task type to ask * workers to track the movement of vehicles across multiple point cloud frames. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectTracking *

    *
  • *
*

* 3D Point Cloud Semantic Segmentation - Use this task type when you want workers to create a * point-level semantic segmentation masks by painting objects in a 3D point cloud using different colors * where each color is assigned to one of the classes you specify. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudSemanticSegmentation *

    *
  • *
*

* Use the following ARNs for Label Verification and Adjustment Jobs *

*

* Use label verification and adjustment jobs to review and adjust labels. To learn more, see Verify and Adjust Labels * . *

*

* Bounding box verification - Uses a variant of the Expectation Maximization approach to estimate the * true class of verification judgement for bounding box labels based on annotations from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
*

* Bounding box adjustment - Finds the most similar boxes from different workers based on the Jaccard * index of the adjusted annotations. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentBoundingBox *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentBoundingBox *

    *
  • *
*

* Semantic segmentation verification - Uses a variant of the Expectation Maximization approach to * estimate the true class of verification judgment for semantic segmentation labels based on annotations * from individual workers. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationSemanticSegmentation *

    *
  • *
*

* Semantic segmentation adjustment - Treats each pixel in an image as a multi-class classification * and treats pixel adjusted annotations from workers as "votes" for the correct label. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentSemanticSegmentation *

    *
  • *
*

* Video Frame Object Detection Adjustment - Use this task type when you want workers to adjust * bounding boxes that workers have added to video frames to classify and localize objects in a sequence of * video frames. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectDetection *

    *
  • *
*

* Video Frame Object Tracking Adjustment - Use this task type when you want workers to adjust * bounding boxes that workers have added to video frames to track object movement across a sequence of video * frames. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectTracking *

    *
  • *
*

* 3D point cloud object detection adjustment - Adjust 3D cuboids in a point cloud frame. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectDetection *

    *
  • *
*

* 3D point cloud object tracking adjustment - Adjust 3D cuboids across a sequence of point cloud * frames. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

    *
  • *
*

* 3D point cloud semantic segmentation adjustment - Adjust semantic segmentation masks in a 3D point * cloud. *

*
    *
  • *

    * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • *
  • *

    * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

    *
  • */ public void setPreHumanTaskLambdaArn(String preHumanTaskLambdaArn) { this.preHumanTaskLambdaArn = preHumanTaskLambdaArn; } /** *

    * The Amazon Resource Name (ARN) of a Lambda function that is run before a data object is sent to a human worker. * Use this function to provide input to a custom labeling job. *

    *

    * For built-in task types, use * one of the following Amazon SageMaker Ground Truth Lambda function ARNs for PreHumanTaskLambdaArn. * For custom labeling workflows, see Pre-annotation Lambda. *

    *

    * Bounding box - Finds the most similar boxes from different workers based on the Jaccard index of the * boxes. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-BoundingBox *

      *
    • *
    *

    * Image classification - Uses a variant of the Expectation Maximization approach to estimate the true class * of an image based on annotations from individual workers. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClass *

      *
    • *
    *

    * Multi-label image classification - Uses a variant of the Expectation Maximization approach to estimate the * true classes of an image based on annotations from individual workers. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    *

    * Semantic segmentation - Treats each pixel in an image as a multi-class classification and treats pixel * annotations from workers as "votes" for the correct label. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-SemanticSegmentation *

      *
    • *
    *

    * Text classification - Uses a variant of the Expectation Maximization approach to estimate the true class * of text based on annotations from individual workers. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClass *

      *
    • *
    *

    * Multi-label text classification - Uses a variant of the Expectation Maximization approach to estimate the * true classes of text based on annotations from individual workers. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    *

    * Named entity recognition - Groups similar selections and calculates aggregate boundaries, resolving to * most-assigned label. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-NamedEntityRecognition *

      *
    • *
    *

    * Video Classification - Use this task type when you need workers to classify videos using predefined labels * that you specify. Workers are shown videos and are asked to choose one label for each video. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoMultiClass *

      *
    • *
    *

    * Video Frame Object Detection - Use this task type to have workers identify and locate objects in a * sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use this task * to ask workers to identify and localize various objects in a series of video frames, such as cars, bikes, and * pedestrians. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectDetection *

      *
    • *
    *

    * Video Frame Object Tracking - Use this task type to have workers track the movement of objects in a * sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use this task * to ask workers to track the movement of objects, such as cars, bikes, and pedestrians. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectTracking *

      *
    • *
    *

    * 3D Point Cloud Modalities *

    *

    * Use the following pre-annotation lambdas for 3D point cloud labeling modality tasks. See 3D Point Cloud Task types * to learn more. *

    *

    * 3D Point Cloud Object Detection - Use this task type when you want workers to classify objects in a 3D * point cloud by drawing 3D cuboids around objects. For example, you can use this task type to ask workers to * identify different types of objects in a point cloud, such as cars, bikes, and pedestrians. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    *

    * 3D Point Cloud Object Tracking - Use this task type when you want workers to draw 3D cuboids around * objects that appear in a sequence of 3D point cloud frames. For example, you can use this task type to ask * workers to track the movement of vehicles across multiple point cloud frames. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    *

    * 3D Point Cloud Semantic Segmentation - Use this task type when you want workers to create a point-level * semantic segmentation masks by painting objects in a 3D point cloud using different colors where each color is * assigned to one of the classes you specify. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    *

    * Use the following ARNs for Label Verification and Adjustment Jobs *

    *

    * Use label verification and adjustment jobs to review and adjust labels. To learn more, see Verify and Adjust Labels . *

    *

    * Bounding box verification - Uses a variant of the Expectation Maximization approach to estimate the true * class of verification judgement for bounding box labels based on annotations from individual workers. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    *

    * Bounding box adjustment - Finds the most similar boxes from different workers based on the Jaccard index * of the adjusted annotations. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentBoundingBox *

      *
    • *
    *

    * Semantic segmentation verification - Uses a variant of the Expectation Maximization approach to estimate * the true class of verification judgment for semantic segmentation labels based on annotations from individual * workers. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    *

    * Semantic segmentation adjustment - Treats each pixel in an image as a multi-class classification and * treats pixel adjusted annotations from workers as "votes" for the correct label. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    *

    * Video Frame Object Detection Adjustment - Use this task type when you want workers to adjust bounding * boxes that workers have added to video frames to classify and localize objects in a sequence of video frames. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    *

    * Video Frame Object Tracking Adjustment - Use this task type when you want workers to adjust bounding boxes * that workers have added to video frames to track object movement across a sequence of video frames. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    *

    * 3D point cloud object detection adjustment - Adjust 3D cuboids in a point cloud frame. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    *

    * 3D point cloud object tracking adjustment - Adjust 3D cuboids across a sequence of point cloud frames. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    *

    * 3D point cloud semantic segmentation adjustment - Adjust semantic segmentation masks in a 3D point cloud. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    * * @return The Amazon Resource Name (ARN) of a Lambda function that is run before a data object is sent to a human * worker. Use this function to provide input to a custom labeling job.

    *

    * For built-in task * types, use one of the following Amazon SageMaker Ground Truth Lambda function ARNs for * PreHumanTaskLambdaArn. For custom labeling workflows, see Pre-annotation Lambda. *

    *

    * Bounding box - Finds the most similar boxes from different workers based on the Jaccard index of * the boxes. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-BoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-BoundingBox *

      *
    • *
    *

    * Image classification - Uses a variant of the Expectation Maximization approach to estimate the * true class of an image based on annotations from individual workers. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClass *

      *
    • *
    *

    * Multi-label image classification - Uses a variant of the Expectation Maximization approach to * estimate the true classes of an image based on annotations from individual workers. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClassMultiLabel *

      *
    • *
    *

    * Semantic segmentation - Treats each pixel in an image as a multi-class classification and treats * pixel annotations from workers as "votes" for the correct label. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-SemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-SemanticSegmentation *

      *
    • *
    *

    * Text classification - Uses a variant of the Expectation Maximization approach to estimate the true * class of text based on annotations from individual workers. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClass *

      *
    • *
    *

    * Multi-label text classification - Uses a variant of the Expectation Maximization approach to * estimate the true classes of text based on annotations from individual workers. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClassMultiLabel *

      *
    • *
    *

    * Named entity recognition - Groups similar selections and calculates aggregate boundaries, * resolving to most-assigned label. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-NamedEntityRecognition *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-NamedEntityRecognition *

      *
    • *
    *

    * Video Classification - Use this task type when you need workers to classify videos using * predefined labels that you specify. Workers are shown videos and are asked to choose one label for each * video. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoMultiClass *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoMultiClass *

      *
    • *
    *

    * Video Frame Object Detection - Use this task type to have workers identify and locate objects in a * sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use * this task to ask workers to identify and localize various objects in a series of video frames, such as * cars, bikes, and pedestrians. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectDetection *

      *
    • *
    *

    * Video Frame Object Tracking - Use this task type to have workers track the movement of objects in * a sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use * this task to ask workers to track the movement of objects, such as cars, bikes, and pedestrians. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectTracking *

      *
    • *
    *

    * 3D Point Cloud Modalities *

    *

    * Use the following pre-annotation lambdas for 3D point cloud labeling modality tasks. See 3D Point Cloud * Task types to learn more. *

    *

    * 3D Point Cloud Object Detection - Use this task type when you want workers to classify objects in * a 3D point cloud by drawing 3D cuboids around objects. For example, you can use this task type to ask * workers to identify different types of objects in a point cloud, such as cars, bikes, and pedestrians. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectDetection *

      *
    • *
    *

    * 3D Point Cloud Object Tracking - Use this task type when you want workers to draw 3D cuboids * around objects that appear in a sequence of 3D point cloud frames. For example, you can use this task * type to ask workers to track the movement of vehicles across multiple point cloud frames. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectTracking *

      *
    • *
    *

    * 3D Point Cloud Semantic Segmentation - Use this task type when you want workers to create a * point-level semantic segmentation masks by painting objects in a 3D point cloud using different colors * where each color is assigned to one of the classes you specify. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudSemanticSegmentation *

      *
    • *
    *

    * Use the following ARNs for Label Verification and Adjustment Jobs *

    *

    * Use label verification and adjustment jobs to review and adjust labels. To learn more, see Verify and Adjust * Labels . *

    *

    * Bounding box verification - Uses a variant of the Expectation Maximization approach to estimate * the true class of verification judgement for bounding box labels based on annotations from individual * workers. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    *

    * Bounding box adjustment - Finds the most similar boxes from different workers based on the Jaccard * index of the adjusted annotations. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentBoundingBox *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentBoundingBox *

      *
    • *
    *

    * Semantic segmentation verification - Uses a variant of the Expectation Maximization approach to * estimate the true class of verification judgment for semantic segmentation labels based on annotations * from individual workers. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationSemanticSegmentation *

      *
    • *
    *

    * Semantic segmentation adjustment - Treats each pixel in an image as a multi-class classification * and treats pixel adjusted annotations from workers as "votes" for the correct label. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentSemanticSegmentation *

      *
    • *
    *

    * Video Frame Object Detection Adjustment - Use this task type when you want workers to adjust * bounding boxes that workers have added to video frames to classify and localize objects in a sequence of * video frames. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectDetection *

      *
    • *
    *

    * Video Frame Object Tracking Adjustment - Use this task type when you want workers to adjust * bounding boxes that workers have added to video frames to track object movement across a sequence of * video frames. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectTracking *

      *
    • *
    *

    * 3D point cloud object detection adjustment - Adjust 3D cuboids in a point cloud frame. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectDetection *

      *
    • *
    *

    * 3D point cloud object tracking adjustment - Adjust 3D cuboids across a sequence of point cloud * frames. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

      *
    • *
    *

    * 3D point cloud semantic segmentation adjustment - Adjust semantic segmentation masks in a 3D point * cloud. *

    *
      *
    • *

      * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • *
    • *

      * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

      *
    • */ public String getPreHumanTaskLambdaArn() { return this.preHumanTaskLambdaArn; } /** *

      * The Amazon Resource Name (ARN) of a Lambda function that is run before a data object is sent to a human worker. * Use this function to provide input to a custom labeling job. *

      *

      * For built-in task types, use * one of the following Amazon SageMaker Ground Truth Lambda function ARNs for PreHumanTaskLambdaArn. * For custom labeling workflows, see Pre-annotation Lambda. *

      *

      * Bounding box - Finds the most similar boxes from different workers based on the Jaccard index of the * boxes. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-BoundingBox *

        *
      • *
      *

      * Image classification - Uses a variant of the Expectation Maximization approach to estimate the true class * of an image based on annotations from individual workers. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClass *

        *
      • *
      *

      * Multi-label image classification - Uses a variant of the Expectation Maximization approach to estimate the * true classes of an image based on annotations from individual workers. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      *

      * Semantic segmentation - Treats each pixel in an image as a multi-class classification and treats pixel * annotations from workers as "votes" for the correct label. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-SemanticSegmentation *

        *
      • *
      *

      * Text classification - Uses a variant of the Expectation Maximization approach to estimate the true class * of text based on annotations from individual workers. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClass *

        *
      • *
      *

      * Multi-label text classification - Uses a variant of the Expectation Maximization approach to estimate the * true classes of text based on annotations from individual workers. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      *

      * Named entity recognition - Groups similar selections and calculates aggregate boundaries, resolving to * most-assigned label. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-NamedEntityRecognition *

        *
      • *
      *

      * Video Classification - Use this task type when you need workers to classify videos using predefined labels * that you specify. Workers are shown videos and are asked to choose one label for each video. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoMultiClass *

        *
      • *
      *

      * Video Frame Object Detection - Use this task type to have workers identify and locate objects in a * sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use this task * to ask workers to identify and localize various objects in a series of video frames, such as cars, bikes, and * pedestrians. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectDetection *

        *
      • *
      *

      * Video Frame Object Tracking - Use this task type to have workers track the movement of objects in a * sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use this task * to ask workers to track the movement of objects, such as cars, bikes, and pedestrians. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectTracking *

        *
      • *
      *

      * 3D Point Cloud Modalities *

      *

      * Use the following pre-annotation lambdas for 3D point cloud labeling modality tasks. See 3D Point Cloud Task types * to learn more. *

      *

      * 3D Point Cloud Object Detection - Use this task type when you want workers to classify objects in a 3D * point cloud by drawing 3D cuboids around objects. For example, you can use this task type to ask workers to * identify different types of objects in a point cloud, such as cars, bikes, and pedestrians. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      *

      * 3D Point Cloud Object Tracking - Use this task type when you want workers to draw 3D cuboids around * objects that appear in a sequence of 3D point cloud frames. For example, you can use this task type to ask * workers to track the movement of vehicles across multiple point cloud frames. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      *

      * 3D Point Cloud Semantic Segmentation - Use this task type when you want workers to create a point-level * semantic segmentation masks by painting objects in a 3D point cloud using different colors where each color is * assigned to one of the classes you specify. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      *

      * Use the following ARNs for Label Verification and Adjustment Jobs *

      *

      * Use label verification and adjustment jobs to review and adjust labels. To learn more, see Verify and Adjust Labels . *

      *

      * Bounding box verification - Uses a variant of the Expectation Maximization approach to estimate the true * class of verification judgement for bounding box labels based on annotations from individual workers. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      *

      * Bounding box adjustment - Finds the most similar boxes from different workers based on the Jaccard index * of the adjusted annotations. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentBoundingBox *

        *
      • *
      *

      * Semantic segmentation verification - Uses a variant of the Expectation Maximization approach to estimate * the true class of verification judgment for semantic segmentation labels based on annotations from individual * workers. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      *

      * Semantic segmentation adjustment - Treats each pixel in an image as a multi-class classification and * treats pixel adjusted annotations from workers as "votes" for the correct label. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      *

      * Video Frame Object Detection Adjustment - Use this task type when you want workers to adjust bounding * boxes that workers have added to video frames to classify and localize objects in a sequence of video frames. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      *

      * Video Frame Object Tracking Adjustment - Use this task type when you want workers to adjust bounding boxes * that workers have added to video frames to track object movement across a sequence of video frames. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      *

      * 3D point cloud object detection adjustment - Adjust 3D cuboids in a point cloud frame. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      *

      * 3D point cloud object tracking adjustment - Adjust 3D cuboids across a sequence of point cloud frames. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      *

      * 3D point cloud semantic segmentation adjustment - Adjust semantic segmentation masks in a 3D point cloud. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      * * @param preHumanTaskLambdaArn * The Amazon Resource Name (ARN) of a Lambda function that is run before a data object is sent to a human * worker. Use this function to provide input to a custom labeling job.

      *

      * For built-in task types, * use one of the following Amazon SageMaker Ground Truth Lambda function ARNs for * PreHumanTaskLambdaArn. For custom labeling workflows, see Pre-annotation Lambda. *

      *

      * Bounding box - Finds the most similar boxes from different workers based on the Jaccard index of * the boxes. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-BoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-BoundingBox *

        *
      • *
      *

      * Image classification - Uses a variant of the Expectation Maximization approach to estimate the true * class of an image based on annotations from individual workers. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClass *

        *
      • *
      *

      * Multi-label image classification - Uses a variant of the Expectation Maximization approach to * estimate the true classes of an image based on annotations from individual workers. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClassMultiLabel *

        *
      • *
      *

      * Semantic segmentation - Treats each pixel in an image as a multi-class classification and treats * pixel annotations from workers as "votes" for the correct label. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-SemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-SemanticSegmentation *

        *
      • *
      *

      * Text classification - Uses a variant of the Expectation Maximization approach to estimate the true * class of text based on annotations from individual workers. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClass *

        *
      • *
      *

      * Multi-label text classification - Uses a variant of the Expectation Maximization approach to * estimate the true classes of text based on annotations from individual workers. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClassMultiLabel *

        *
      • *
      *

      * Named entity recognition - Groups similar selections and calculates aggregate boundaries, resolving * to most-assigned label. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-NamedEntityRecognition *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-NamedEntityRecognition *

        *
      • *
      *

      * Video Classification - Use this task type when you need workers to classify videos using predefined * labels that you specify. Workers are shown videos and are asked to choose one label for each video. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoMultiClass *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoMultiClass *

        *
      • *
      *

      * Video Frame Object Detection - Use this task type to have workers identify and locate objects in a * sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use * this task to ask workers to identify and localize various objects in a series of video frames, such as * cars, bikes, and pedestrians. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectDetection *

        *
      • *
      *

      * Video Frame Object Tracking - Use this task type to have workers track the movement of objects in a * sequence of video frames (images extracted from a video) using bounding boxes. For example, you can use * this task to ask workers to track the movement of objects, such as cars, bikes, and pedestrians. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VideoObjectTracking *

        *
      • *
      *

      * 3D Point Cloud Modalities *

      *

      * Use the following pre-annotation lambdas for 3D point cloud labeling modality tasks. See 3D Point Cloud Task * types to learn more. *

      *

      * 3D Point Cloud Object Detection - Use this task type when you want workers to classify objects in a * 3D point cloud by drawing 3D cuboids around objects. For example, you can use this task type to ask * workers to identify different types of objects in a point cloud, such as cars, bikes, and pedestrians. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectDetection *

        *
      • *
      *

      * 3D Point Cloud Object Tracking - Use this task type when you want workers to draw 3D cuboids around * objects that appear in a sequence of 3D point cloud frames. For example, you can use this task type to ask * workers to track the movement of vehicles across multiple point cloud frames. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudObjectTracking *

        *
      • *
      *

      * 3D Point Cloud Semantic Segmentation - Use this task type when you want workers to create a * point-level semantic segmentation masks by painting objects in a 3D point cloud using different colors * where each color is assigned to one of the classes you specify. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-3DPointCloudSemanticSegmentation *

        *
      • *
      *

      * Use the following ARNs for Label Verification and Adjustment Jobs *

      *

      * Use label verification and adjustment jobs to review and adjust labels. To learn more, see Verify and Adjust Labels * . *

      *

      * Bounding box verification - Uses a variant of the Expectation Maximization approach to estimate the * true class of verification judgement for bounding box labels based on annotations from individual workers. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      *

      * Bounding box adjustment - Finds the most similar boxes from different workers based on the Jaccard * index of the adjusted annotations. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentBoundingBox *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentBoundingBox *

        *
      • *
      *

      * Semantic segmentation verification - Uses a variant of the Expectation Maximization approach to * estimate the true class of verification judgment for semantic segmentation labels based on annotations * from individual workers. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationSemanticSegmentation *

        *
      • *
      *

      * Semantic segmentation adjustment - Treats each pixel in an image as a multi-class classification * and treats pixel adjusted annotations from workers as "votes" for the correct label. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentSemanticSegmentation *

        *
      • *
      *

      * Video Frame Object Detection Adjustment - Use this task type when you want workers to adjust * bounding boxes that workers have added to video frames to classify and localize objects in a sequence of * video frames. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectDetection *

        *
      • *
      *

      * Video Frame Object Tracking Adjustment - Use this task type when you want workers to adjust * bounding boxes that workers have added to video frames to track object movement across a sequence of video * frames. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentVideoObjectTracking *

        *
      • *
      *

      * 3D point cloud object detection adjustment - Adjust 3D cuboids in a point cloud frame. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectDetection *

        *
      • *
      *

      * 3D point cloud object tracking adjustment - Adjust 3D cuboids across a sequence of point cloud * frames. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking *

        *
      • *
      *

      * 3D point cloud semantic segmentation adjustment - Adjust semantic segmentation masks in a 3D point * cloud. *

      *
        *
      • *

        * arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • *
      • *

        * arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudSemanticSegmentation *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ public HumanTaskConfig withPreHumanTaskLambdaArn(String preHumanTaskLambdaArn) { setPreHumanTaskLambdaArn(preHumanTaskLambdaArn); return this; } /** *

        * Keywords used to describe the task so that workers on Amazon Mechanical Turk can discover the task. *

        * * @return Keywords used to describe the task so that workers on Amazon Mechanical Turk can discover the task. */ public java.util.List getTaskKeywords() { return taskKeywords; } /** *

        * Keywords used to describe the task so that workers on Amazon Mechanical Turk can discover the task. *

        * * @param taskKeywords * Keywords used to describe the task so that workers on Amazon Mechanical Turk can discover the task. */ public void setTaskKeywords(java.util.Collection taskKeywords) { if (taskKeywords == null) { this.taskKeywords = null; return; } this.taskKeywords = new java.util.ArrayList(taskKeywords); } /** *

        * Keywords used to describe the task so that workers on Amazon Mechanical Turk can discover the task. *

        *

        * NOTE: This method appends the values to the existing list (if any). Use * {@link #setTaskKeywords(java.util.Collection)} or {@link #withTaskKeywords(java.util.Collection)} if you want to * override the existing values. *

        * * @param taskKeywords * Keywords used to describe the task so that workers on Amazon Mechanical Turk can discover the task. * @return Returns a reference to this object so that method calls can be chained together. */ public HumanTaskConfig withTaskKeywords(String... taskKeywords) { if (this.taskKeywords == null) { setTaskKeywords(new java.util.ArrayList(taskKeywords.length)); } for (String ele : taskKeywords) { this.taskKeywords.add(ele); } return this; } /** *

        * Keywords used to describe the task so that workers on Amazon Mechanical Turk can discover the task. *

        * * @param taskKeywords * Keywords used to describe the task so that workers on Amazon Mechanical Turk can discover the task. * @return Returns a reference to this object so that method calls can be chained together. */ public HumanTaskConfig withTaskKeywords(java.util.Collection taskKeywords) { setTaskKeywords(taskKeywords); return this; } /** *

        * A title for the task for your human workers. *

        * * @param taskTitle * A title for the task for your human workers. */ public void setTaskTitle(String taskTitle) { this.taskTitle = taskTitle; } /** *

        * A title for the task for your human workers. *

        * * @return A title for the task for your human workers. */ public String getTaskTitle() { return this.taskTitle; } /** *

        * A title for the task for your human workers. *

        * * @param taskTitle * A title for the task for your human workers. * @return Returns a reference to this object so that method calls can be chained together. */ public HumanTaskConfig withTaskTitle(String taskTitle) { setTaskTitle(taskTitle); return this; } /** *

        * A description of the task for your human workers. *

        * * @param taskDescription * A description of the task for your human workers. */ public void setTaskDescription(String taskDescription) { this.taskDescription = taskDescription; } /** *

        * A description of the task for your human workers. *

        * * @return A description of the task for your human workers. */ public String getTaskDescription() { return this.taskDescription; } /** *

        * A description of the task for your human workers. *

        * * @param taskDescription * A description of the task for your human workers. * @return Returns a reference to this object so that method calls can be chained together. */ public HumanTaskConfig withTaskDescription(String taskDescription) { setTaskDescription(taskDescription); return this; } /** *

        * The number of human workers that will label an object. *

        * * @param numberOfHumanWorkersPerDataObject * The number of human workers that will label an object. */ public void setNumberOfHumanWorkersPerDataObject(Integer numberOfHumanWorkersPerDataObject) { this.numberOfHumanWorkersPerDataObject = numberOfHumanWorkersPerDataObject; } /** *

        * The number of human workers that will label an object. *

        * * @return The number of human workers that will label an object. */ public Integer getNumberOfHumanWorkersPerDataObject() { return this.numberOfHumanWorkersPerDataObject; } /** *

        * The number of human workers that will label an object. *

        * * @param numberOfHumanWorkersPerDataObject * The number of human workers that will label an object. * @return Returns a reference to this object so that method calls can be chained together. */ public HumanTaskConfig withNumberOfHumanWorkersPerDataObject(Integer numberOfHumanWorkersPerDataObject) { setNumberOfHumanWorkersPerDataObject(numberOfHumanWorkersPerDataObject); return this; } /** *

        * The amount of time that a worker has to complete a task. *

        * * @param taskTimeLimitInSeconds * The amount of time that a worker has to complete a task. */ public void setTaskTimeLimitInSeconds(Integer taskTimeLimitInSeconds) { this.taskTimeLimitInSeconds = taskTimeLimitInSeconds; } /** *

        * The amount of time that a worker has to complete a task. *

        * * @return The amount of time that a worker has to complete a task. */ public Integer getTaskTimeLimitInSeconds() { return this.taskTimeLimitInSeconds; } /** *

        * The amount of time that a worker has to complete a task. *

        * * @param taskTimeLimitInSeconds * The amount of time that a worker has to complete a task. * @return Returns a reference to this object so that method calls can be chained together. */ public HumanTaskConfig withTaskTimeLimitInSeconds(Integer taskTimeLimitInSeconds) { setTaskTimeLimitInSeconds(taskTimeLimitInSeconds); return this; } /** *

        * The length of time that a task remains available for labeling by human workers. If you choose the Amazon * Mechanical Turk workforce, the maximum is 12 hours (43200). The default value is 864000 seconds (10 days). * For private and vendor workforces, the maximum is as listed. *

        * * @param taskAvailabilityLifetimeInSeconds * The length of time that a task remains available for labeling by human workers. If you choose the * Amazon Mechanical Turk workforce, the maximum is 12 hours (43200). The default value is 864000 seconds * (10 days). For private and vendor workforces, the maximum is as listed. */ public void setTaskAvailabilityLifetimeInSeconds(Integer taskAvailabilityLifetimeInSeconds) { this.taskAvailabilityLifetimeInSeconds = taskAvailabilityLifetimeInSeconds; } /** *

        * The length of time that a task remains available for labeling by human workers. If you choose the Amazon * Mechanical Turk workforce, the maximum is 12 hours (43200). The default value is 864000 seconds (10 days). * For private and vendor workforces, the maximum is as listed. *

        * * @return The length of time that a task remains available for labeling by human workers. If you choose the * Amazon Mechanical Turk workforce, the maximum is 12 hours (43200). The default value is 864000 * seconds (10 days). For private and vendor workforces, the maximum is as listed. */ public Integer getTaskAvailabilityLifetimeInSeconds() { return this.taskAvailabilityLifetimeInSeconds; } /** *

        * The length of time that a task remains available for labeling by human workers. If you choose the Amazon * Mechanical Turk workforce, the maximum is 12 hours (43200). The default value is 864000 seconds (10 days). * For private and vendor workforces, the maximum is as listed. *

        * * @param taskAvailabilityLifetimeInSeconds * The length of time that a task remains available for labeling by human workers. If you choose the * Amazon Mechanical Turk workforce, the maximum is 12 hours (43200). The default value is 864000 seconds * (10 days). For private and vendor workforces, the maximum is as listed. * @return Returns a reference to this object so that method calls can be chained together. */ public HumanTaskConfig withTaskAvailabilityLifetimeInSeconds(Integer taskAvailabilityLifetimeInSeconds) { setTaskAvailabilityLifetimeInSeconds(taskAvailabilityLifetimeInSeconds); return this; } /** *

        * Defines the maximum number of data objects that can be labeled by human workers at the same time. Also referred * to as batch size. Each object may have more than one worker at one time. The default value is 1000 objects. *

        * * @param maxConcurrentTaskCount * Defines the maximum number of data objects that can be labeled by human workers at the same time. Also * referred to as batch size. Each object may have more than one worker at one time. The default value is * 1000 objects. */ public void setMaxConcurrentTaskCount(Integer maxConcurrentTaskCount) { this.maxConcurrentTaskCount = maxConcurrentTaskCount; } /** *

        * Defines the maximum number of data objects that can be labeled by human workers at the same time. Also referred * to as batch size. Each object may have more than one worker at one time. The default value is 1000 objects. *

        * * @return Defines the maximum number of data objects that can be labeled by human workers at the same time. Also * referred to as batch size. Each object may have more than one worker at one time. The default value is * 1000 objects. */ public Integer getMaxConcurrentTaskCount() { return this.maxConcurrentTaskCount; } /** *

        * Defines the maximum number of data objects that can be labeled by human workers at the same time. Also referred * to as batch size. Each object may have more than one worker at one time. The default value is 1000 objects. *

        * * @param maxConcurrentTaskCount * Defines the maximum number of data objects that can be labeled by human workers at the same time. Also * referred to as batch size. Each object may have more than one worker at one time. The default value is * 1000 objects. * @return Returns a reference to this object so that method calls can be chained together. */ public HumanTaskConfig withMaxConcurrentTaskCount(Integer maxConcurrentTaskCount) { setMaxConcurrentTaskCount(maxConcurrentTaskCount); return this; } /** *

        * Configures how labels are consolidated across human workers. *

        * * @param annotationConsolidationConfig * Configures how labels are consolidated across human workers. */ public void setAnnotationConsolidationConfig(AnnotationConsolidationConfig annotationConsolidationConfig) { this.annotationConsolidationConfig = annotationConsolidationConfig; } /** *

        * Configures how labels are consolidated across human workers. *

        * * @return Configures how labels are consolidated across human workers. */ public AnnotationConsolidationConfig getAnnotationConsolidationConfig() { return this.annotationConsolidationConfig; } /** *

        * Configures how labels are consolidated across human workers. *

        * * @param annotationConsolidationConfig * Configures how labels are consolidated across human workers. * @return Returns a reference to this object so that method calls can be chained together. */ public HumanTaskConfig withAnnotationConsolidationConfig(AnnotationConsolidationConfig annotationConsolidationConfig) { setAnnotationConsolidationConfig(annotationConsolidationConfig); return this; } /** *

        * The price that you pay for each task performed by an Amazon Mechanical Turk worker. *

        * * @param publicWorkforceTaskPrice * The price that you pay for each task performed by an Amazon Mechanical Turk worker. */ public void setPublicWorkforceTaskPrice(PublicWorkforceTaskPrice publicWorkforceTaskPrice) { this.publicWorkforceTaskPrice = publicWorkforceTaskPrice; } /** *

        * The price that you pay for each task performed by an Amazon Mechanical Turk worker. *

        * * @return The price that you pay for each task performed by an Amazon Mechanical Turk worker. */ public PublicWorkforceTaskPrice getPublicWorkforceTaskPrice() { return this.publicWorkforceTaskPrice; } /** *

        * The price that you pay for each task performed by an Amazon Mechanical Turk worker. *

        * * @param publicWorkforceTaskPrice * The price that you pay for each task performed by an Amazon Mechanical Turk worker. * @return Returns a reference to this object so that method calls can be chained together. */ public HumanTaskConfig withPublicWorkforceTaskPrice(PublicWorkforceTaskPrice publicWorkforceTaskPrice) { setPublicWorkforceTaskPrice(publicWorkforceTaskPrice); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getWorkteamArn() != null) sb.append("WorkteamArn: ").append(getWorkteamArn()).append(","); if (getUiConfig() != null) sb.append("UiConfig: ").append(getUiConfig()).append(","); if (getPreHumanTaskLambdaArn() != null) sb.append("PreHumanTaskLambdaArn: ").append(getPreHumanTaskLambdaArn()).append(","); if (getTaskKeywords() != null) sb.append("TaskKeywords: ").append(getTaskKeywords()).append(","); if (getTaskTitle() != null) sb.append("TaskTitle: ").append(getTaskTitle()).append(","); if (getTaskDescription() != null) sb.append("TaskDescription: ").append(getTaskDescription()).append(","); if (getNumberOfHumanWorkersPerDataObject() != null) sb.append("NumberOfHumanWorkersPerDataObject: ").append(getNumberOfHumanWorkersPerDataObject()).append(","); if (getTaskTimeLimitInSeconds() != null) sb.append("TaskTimeLimitInSeconds: ").append(getTaskTimeLimitInSeconds()).append(","); if (getTaskAvailabilityLifetimeInSeconds() != null) sb.append("TaskAvailabilityLifetimeInSeconds: ").append(getTaskAvailabilityLifetimeInSeconds()).append(","); if (getMaxConcurrentTaskCount() != null) sb.append("MaxConcurrentTaskCount: ").append(getMaxConcurrentTaskCount()).append(","); if (getAnnotationConsolidationConfig() != null) sb.append("AnnotationConsolidationConfig: ").append(getAnnotationConsolidationConfig()).append(","); if (getPublicWorkforceTaskPrice() != null) sb.append("PublicWorkforceTaskPrice: ").append(getPublicWorkforceTaskPrice()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof HumanTaskConfig == false) return false; HumanTaskConfig other = (HumanTaskConfig) obj; if (other.getWorkteamArn() == null ^ this.getWorkteamArn() == null) return false; if (other.getWorkteamArn() != null && other.getWorkteamArn().equals(this.getWorkteamArn()) == false) return false; if (other.getUiConfig() == null ^ this.getUiConfig() == null) return false; if (other.getUiConfig() != null && other.getUiConfig().equals(this.getUiConfig()) == false) return false; if (other.getPreHumanTaskLambdaArn() == null ^ this.getPreHumanTaskLambdaArn() == null) return false; if (other.getPreHumanTaskLambdaArn() != null && other.getPreHumanTaskLambdaArn().equals(this.getPreHumanTaskLambdaArn()) == false) return false; if (other.getTaskKeywords() == null ^ this.getTaskKeywords() == null) return false; if (other.getTaskKeywords() != null && other.getTaskKeywords().equals(this.getTaskKeywords()) == false) return false; if (other.getTaskTitle() == null ^ this.getTaskTitle() == null) return false; if (other.getTaskTitle() != null && other.getTaskTitle().equals(this.getTaskTitle()) == false) return false; if (other.getTaskDescription() == null ^ this.getTaskDescription() == null) return false; if (other.getTaskDescription() != null && other.getTaskDescription().equals(this.getTaskDescription()) == false) return false; if (other.getNumberOfHumanWorkersPerDataObject() == null ^ this.getNumberOfHumanWorkersPerDataObject() == null) return false; if (other.getNumberOfHumanWorkersPerDataObject() != null && other.getNumberOfHumanWorkersPerDataObject().equals(this.getNumberOfHumanWorkersPerDataObject()) == false) return false; if (other.getTaskTimeLimitInSeconds() == null ^ this.getTaskTimeLimitInSeconds() == null) return false; if (other.getTaskTimeLimitInSeconds() != null && other.getTaskTimeLimitInSeconds().equals(this.getTaskTimeLimitInSeconds()) == false) return false; if (other.getTaskAvailabilityLifetimeInSeconds() == null ^ this.getTaskAvailabilityLifetimeInSeconds() == null) return false; if (other.getTaskAvailabilityLifetimeInSeconds() != null && other.getTaskAvailabilityLifetimeInSeconds().equals(this.getTaskAvailabilityLifetimeInSeconds()) == false) return false; if (other.getMaxConcurrentTaskCount() == null ^ this.getMaxConcurrentTaskCount() == null) return false; if (other.getMaxConcurrentTaskCount() != null && other.getMaxConcurrentTaskCount().equals(this.getMaxConcurrentTaskCount()) == false) return false; if (other.getAnnotationConsolidationConfig() == null ^ this.getAnnotationConsolidationConfig() == null) return false; if (other.getAnnotationConsolidationConfig() != null && other.getAnnotationConsolidationConfig().equals(this.getAnnotationConsolidationConfig()) == false) return false; if (other.getPublicWorkforceTaskPrice() == null ^ this.getPublicWorkforceTaskPrice() == null) return false; if (other.getPublicWorkforceTaskPrice() != null && other.getPublicWorkforceTaskPrice().equals(this.getPublicWorkforceTaskPrice()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getWorkteamArn() == null) ? 0 : getWorkteamArn().hashCode()); hashCode = prime * hashCode + ((getUiConfig() == null) ? 0 : getUiConfig().hashCode()); hashCode = prime * hashCode + ((getPreHumanTaskLambdaArn() == null) ? 0 : getPreHumanTaskLambdaArn().hashCode()); hashCode = prime * hashCode + ((getTaskKeywords() == null) ? 0 : getTaskKeywords().hashCode()); hashCode = prime * hashCode + ((getTaskTitle() == null) ? 0 : getTaskTitle().hashCode()); hashCode = prime * hashCode + ((getTaskDescription() == null) ? 0 : getTaskDescription().hashCode()); hashCode = prime * hashCode + ((getNumberOfHumanWorkersPerDataObject() == null) ? 0 : getNumberOfHumanWorkersPerDataObject().hashCode()); hashCode = prime * hashCode + ((getTaskTimeLimitInSeconds() == null) ? 0 : getTaskTimeLimitInSeconds().hashCode()); hashCode = prime * hashCode + ((getTaskAvailabilityLifetimeInSeconds() == null) ? 0 : getTaskAvailabilityLifetimeInSeconds().hashCode()); hashCode = prime * hashCode + ((getMaxConcurrentTaskCount() == null) ? 0 : getMaxConcurrentTaskCount().hashCode()); hashCode = prime * hashCode + ((getAnnotationConsolidationConfig() == null) ? 0 : getAnnotationConsolidationConfig().hashCode()); hashCode = prime * hashCode + ((getPublicWorkforceTaskPrice() == null) ? 0 : getPublicWorkforceTaskPrice().hashCode()); return hashCode; } @Override public HumanTaskConfig clone() { try { return (HumanTaskConfig) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.sagemaker.model.transform.HumanTaskConfigMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy