Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: CC-BY-SA-4.0
Starts a model compilation job. After the model has been compiled, Amazon SageMaker saves the resulting model artifacts to an Amazon Simple Storage Service (Amazon S3) bucket that you specify.
If you choose to host your model using Amazon SageMaker hosting services, you can use the resulting model artifacts as part of the model. You can also use the artifacts with AWS IoT Greengrass. In that case, deploy them as an ML resource.
In the request body, you provide the following: + A name for the compilation job + Information about the input model artifacts + The output location for the compiled model and the device (target) that the model runs on + The Amazon Resource Name (ARN) of the IAM role that Amazon SageMaker assumes to perform the model compilation job
You can also provide a Tag
to track the model compilation job’s resource use and costs. The response body contains the CompilationJobArn
for the compiled job.
To stop a model compilation job, use StopCompilationJob. To get information about a particular model compilation job, use DescribeCompilationJob. To get information about multiple model compilation jobs, use ListCompilationJobs.
{
"[CompilationJobName](#SageMaker-CreateCompilationJob-request-CompilationJobName)": "string",
"[InputConfig](#SageMaker-CreateCompilationJob-request-InputConfig)": {
"[DataInputConfig](API_InputConfig.md#SageMaker-Type-InputConfig-DataInputConfig)": "string",
"[Framework](API_InputConfig.md#SageMaker-Type-InputConfig-Framework)": "string",
"[S3Uri](API_InputConfig.md#SageMaker-Type-InputConfig-S3Uri)": "string"
},
"[OutputConfig](#SageMaker-CreateCompilationJob-request-OutputConfig)": {
"[S3OutputLocation](API_OutputConfig.md#SageMaker-Type-OutputConfig-S3OutputLocation)": "string",
"[TargetDevice](API_OutputConfig.md#SageMaker-Type-OutputConfig-TargetDevice)": "string"
},
"[RoleArn](#SageMaker-CreateCompilationJob-request-RoleArn)": "string",
"[StoppingCondition](#SageMaker-CreateCompilationJob-request-StoppingCondition)": {
"[MaxRuntimeInSeconds](API_StoppingCondition.md#SageMaker-Type-StoppingCondition-MaxRuntimeInSeconds)": number
}
}
For information about the parameters that are common to all actions, see Common Parameters.
The request accepts the following data in JSON format.
** CompilationJobName ** A name for the model compilation job. The name must be unique within the AWS Region and within your AWS account.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 63.
Pattern: ^[a-zA-Z0-9](-*[a-zA-Z0-9])*$
Required: Yes
** InputConfig ** Provides information about the location of input model artifacts, the name and shape of the expected data inputs, and the framework in which the model was trained.
Type: InputConfig object
Required: Yes
** OutputConfig ** Provides information about the output location for the compiled model and the target device the model runs on.
Type: OutputConfig object
Required: Yes
** RoleArn ** The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf.
During model compilation, Amazon SageMaker needs your permission to:
+ Read input data from an S3 bucket + Write model artifacts to an S3 bucket + Write logs to Amazon CloudWatch Logs + Publish metrics to Amazon CloudWatch You grant permissions for all of these tasks to an IAM role. To pass this role to Amazon SageMaker, the caller of this API must have the iam:PassRole
permission. For more information, see Amazon SageMaker Roles.
Type: String
Length Constraints: Minimum length of 20. Maximum length of 2048.
Pattern: ^arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+$
Required: Yes
** StoppingCondition ** Specifies a limit to how long a model compilation job can run. When the job reaches the time limit, Amazon SageMaker ends the compilation job. Use this API to cap model training costs.
Type: StoppingCondition object
Required: Yes
{
"[CompilationJobArn](#SageMaker-CreateCompilationJob-response-CompilationJobArn)": "string"
}
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
** CompilationJobArn ** If the action is successful, the service sends back an HTTP 200 response. Amazon SageMaker returns the following data in JSON format:
+ CompilationJobArn
: The Amazon Resource Name (ARN) of the compiled job. Type: String
Length Constraints: Maximum length of 256.
Pattern: arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:compilation-job/.*
For information about the errors that are common to all actions, see Common Errors.
ResourceInUse
Resource being accessed is in use.
HTTP Status Code: 400
ResourceLimitExceeded
You have exceeded an Amazon SageMaker resource limit. For example, you might have too many training jobs created.
HTTP Status Code: 400
For more information about using this API in one of the language-specific AWS SDKs, see the following: + AWS Command Line Interface + AWS SDK for .NET + AWS SDK for C++ + AWS SDK for Go + AWS SDK for Go - Pilot + AWS SDK for Java + AWS SDK for JavaScript + AWS SDK for PHP V3 + AWS SDK for Python + AWS SDK for Ruby V2