2024/07/03 - Amazon Rekognition - 2 updated api methods
Changes This release adds support for tagging projects and datasets with the CreateProject and CreateDataset APIs.
{'Tags': {'string': 'string'}}
Creates a new Amazon Rekognition Custom Labels dataset. You can create a dataset by using an Amazon Sagemaker format manifest file or by copying an existing Amazon Rekognition Custom Labels dataset.
To create a training dataset for a project, specify TRAIN for the value of DatasetType. To create the test dataset for a project, specify TEST for the value of DatasetType.
The response from CreateDataset is the Amazon Resource Name (ARN) for the dataset. Creating a dataset takes a while to complete. Use DescribeDataset to check the current status. The dataset created successfully if the value of Status is CREATE_COMPLETE.
To check if any non-terminal errors occurred, call ListDatasetEntries and check for the presence of errors lists in the JSON Lines.
Dataset creation fails if a terminal error occurs ( Status = CREATE_FAILED). Currently, you can't access the terminal error information.
For more information, see Creating dataset in the Amazon Rekognition Custom Labels Developer Guide.
This operation requires permissions to perform the rekognition:CreateDataset action. If you want to copy an existing dataset, you also require permission to perform the rekognition:ListDatasetEntries action.
See also: AWS API Documentation
Request Syntax
client.create_dataset( DatasetSource={ 'GroundTruthManifest': { 'S3Object': { 'Bucket': 'string', 'Name': 'string', 'Version': 'string' } }, 'DatasetArn': 'string' }, DatasetType='TRAIN'|'TEST', ProjectArn='string', Tags={ 'string': 'string' } )
dict
The source files for the dataset. You can specify the ARN of an existing dataset or specify the Amazon S3 bucket location of an Amazon Sagemaker format manifest file. If you don't specify datasetSource, an empty dataset is created. To add labeled images to the dataset, You can use the console or call UpdateDatasetEntries.
GroundTruthManifest (dict) --
The S3 bucket that contains an Amazon Sagemaker Ground Truth format manifest file.
S3Object (dict) --
Provides the S3 bucket name and object name.
The region for the S3 bucket containing the S3 object must match the region you use for Amazon Rekognition operations.
For Amazon Rekognition to process an S3 object, the user must have permission to access the S3 object. For more information, see How Amazon Rekognition works with IAM in the Amazon Rekognition Developer Guide.
Bucket (string) --
Name of the S3 bucket.
Name (string) --
S3 object key name.
Version (string) --
If the bucket is versioning enabled, you can specify the object version.
DatasetArn (string) --
The ARN of an Amazon Rekognition Custom Labels dataset that you want to copy.
string
[REQUIRED]
The type of the dataset. Specify TRAIN to create a training dataset. Specify TEST to create a test dataset.
string
[REQUIRED]
The ARN of the Amazon Rekognition Custom Labels project to which you want to asssign the dataset.
dict
A set of tags (key-value pairs) that you want to attach to the dataset.
(string) --
(string) --
dict
Response Syntax
{ 'DatasetArn': 'string' }
Response Structure
(dict) --
DatasetArn (string) --
The ARN of the created Amazon Rekognition Custom Labels dataset.
{'Tags': {'string': 'string'}}
Creates a new Amazon Rekognition project. A project is a group of resources (datasets, model versions) that you use to create and manage a Amazon Rekognition Custom Labels Model or custom adapter. You can specify a feature to create the project with, if no feature is specified then Custom Labels is used by default. For adapters, you can also choose whether or not to have the project auto update by using the AutoUpdate argument. This operation requires permissions to perform the rekognition:CreateProject action.
See also: AWS API Documentation
Request Syntax
client.create_project( ProjectName='string', Feature='CONTENT_MODERATION'|'CUSTOM_LABELS', AutoUpdate='ENABLED'|'DISABLED', Tags={ 'string': 'string' } )
string
[REQUIRED]
The name of the project to create.
string
Specifies feature that is being customized. If no value is provided CUSTOM_LABELS is used as a default.
string
Specifies whether automatic retraining should be attempted for the versions of the project. Automatic retraining is done as a best effort. Required argument for Content Moderation. Applicable only to adapters.
dict
A set of tags (key-value pairs) that you want to attach to the project.
(string) --
(string) --
dict
Response Syntax
{ 'ProjectArn': 'string' }
Response Structure
(dict) --
ProjectArn (string) --
The Amazon Resource Name (ARN) of the new project. You can use the ARN to configure IAM access to the project.