LookoutforVision / Client / start_model_packaging_job

start_model_packaging_job#

LookoutforVision.Client.start_model_packaging_job(**kwargs)#

Starts an Amazon Lookout for Vision model packaging job. A model packaging job creates an AWS IoT Greengrass component for a Lookout for Vision model. You can use the component to deploy your model to an edge device managed by Greengrass.

Use the DescribeModelPackagingJob API to determine the current status of the job. The model packaging job is complete if the value of Status is SUCCEEDED.

To deploy the component to the target device, use the component name and component version with the AWS IoT Greengrass CreateDeployment API.

This operation requires the following permissions:

  • lookoutvision:StartModelPackagingJob

  • s3:PutObject

  • s3:GetBucketLocation

  • kms:GenerateDataKey

  • greengrass:CreateComponentVersion

  • greengrass:DescribeComponent

  • (Optional) greengrass:TagResource. Only required if you want to tag the component.

For more information, see Using your Amazon Lookout for Vision model on an edge device in the Amazon Lookout for Vision Developer Guide.

See also: AWS API Documentation

Request Syntax

response = client.start_model_packaging_job(
    ProjectName='string',
    ModelVersion='string',
    JobName='string',
    Configuration={
        'Greengrass': {
            'CompilerOptions': 'string',
            'TargetDevice': 'jetson_xavier',
            'TargetPlatform': {
                'Os': 'LINUX',
                'Arch': 'ARM64'|'X86_64',
                'Accelerator': 'NVIDIA'
            },
            'S3OutputLocation': {
                'Bucket': 'string',
                'Prefix': 'string'
            },
            'ComponentName': 'string',
            'ComponentVersion': 'string',
            'ComponentDescription': 'string',
            'Tags': [
                {
                    'Key': 'string',
                    'Value': 'string'
                },
            ]
        }
    },
    Description='string',
    ClientToken='string'
)
Parameters:
  • ProjectName (string) –

    [REQUIRED]

    The name of the project which contains the version of the model that you want to package.

  • ModelVersion (string) –

    [REQUIRED]

    The version of the model within the project that you want to package.

  • JobName (string) – A name for the model packaging job. If you don’t supply a value, the service creates a job name for you.

  • Configuration (dict) –

    [REQUIRED]

    The configuration for the model packaging job.

    • Greengrass (dict) – [REQUIRED]

      Configuration information for the AWS IoT Greengrass component in a model packaging job.

      • CompilerOptions (string) –

        Additional compiler options for the Greengrass component. Currently, only NVIDIA Graphics Processing Units (GPU) and CPU accelerators are supported. If you specify TargetDevice, don’t specify CompilerOptions.

        For more information, see Compiler options in the Amazon Lookout for Vision Developer Guide.

      • TargetDevice (string) –

        The target device for the model. Currently the only supported value is jetson_xavier. If you specify TargetDevice, you can’t specify TargetPlatform.

      • TargetPlatform (dict) –

        The target platform for the model. If you specify TargetPlatform, you can’t specify TargetDevice.

        • Os (string) – [REQUIRED]

          The target operating system for the model. Linux is the only operating system that is currently supported.

        • Arch (string) – [REQUIRED]

          The target architecture for the model. The currently supported architectures are X86_64 (64-bit version of the x86 instruction set) and ARM_64 (ARMv8 64-bit CPU).

        • Accelerator (string) –

          The target accelerator for the model. Currently, Amazon Lookout for Vision only supports NVIDIA (Nvidia graphics processing unit) and CPU accelerators. If you specify NVIDIA as an accelerator, you must also specify the gpu-code, trt-ver, and cuda-ver compiler options. If you don’t specify an accelerator, Lookout for Vision uses the CPU for compilation and we highly recommend that you use the GreengrassConfiguration$CompilerOptions field. For example, you can use the following compiler options for CPU:

          • mcpu: CPU micro-architecture. For example, {'mcpu': 'skylake-avx512'}

          • mattr: CPU flags. For example, {'mattr': ['+neon', '+vfpv4']}

      • S3OutputLocation (dict) – [REQUIRED]

        An S3 location in which Lookout for Vision stores the component artifacts.

        • Bucket (string) – [REQUIRED]

          The S3 bucket that contains the training or model packaging job output. If you are training a model, the bucket must in your AWS account. If you use an S3 bucket for a model packaging job, the S3 bucket must be in the same AWS Region and AWS account in which you use AWS IoT Greengrass.

        • Prefix (string) –

          The path of the folder, within the S3 bucket, that contains the output.

      • ComponentName (string) – [REQUIRED]

        A name for the AWS IoT Greengrass component.

      • ComponentVersion (string) –

        A Version for the AWS IoT Greengrass component. If you don’t provide a value, a default value of Model Version.0.0 is used.

      • ComponentDescription (string) –

        A description for the AWS IoT Greengrass component.

      • Tags (list) –

        A set of tags (key-value pairs) that you want to attach to the AWS IoT Greengrass component.

        • (dict) –

          A key and value pair that is attached to the specified Amazon Lookout for Vision model.

          • Key (string) – [REQUIRED]

            The key of the tag that is attached to the specified model.

          • Value (string) – [REQUIRED]

            The value of the tag that is attached to the specified model.

  • Description (string) – A description for the model packaging job.

  • ClientToken (string) –

    ClientToken is an idempotency token that ensures a call to StartModelPackagingJob completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from StartModelPackagingJob. In this case, safely retry your call to StartModelPackagingJob by using the same ClientToken parameter value.

    If you don’t supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple dataset creation requests. You’ll need to provide your own value for other use cases.

    An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to StartModelPackagingJob. An idempotency token is active for 8 hours.

    This field is autopopulated if not provided.

Return type:

dict

Returns:

Response Syntax

{
    'JobName': 'string'
}

Response Structure

  • (dict) –

    • JobName (string) –

      The job name for the model packaging job. If you don’t supply a job name in the JobName input parameter, the service creates a job name for you.

Exceptions

  • LookoutforVision.Client.exceptions.AccessDeniedException

  • LookoutforVision.Client.exceptions.InternalServerException

  • LookoutforVision.Client.exceptions.ValidationException

  • LookoutforVision.Client.exceptions.ConflictException

  • LookoutforVision.Client.exceptions.ResourceNotFoundException

  • LookoutforVision.Client.exceptions.ThrottlingException

  • LookoutforVision.Client.exceptions.ServiceQuotaExceededException