A flywheel is an Amazon Web Services resource that orchestrates the ongoing training of a model for custom classification or custom entity recognition
Source:R/comprehend_operations.R
comprehend_create_flywheel.RdA flywheel is an Amazon Web Services resource that orchestrates the ongoing training of a model for custom classification or custom entity recognition. You can create a flywheel to start with an existing trained model, or Comprehend can create and train a new model.
See https://www.paws-r-sdk.com/docs/comprehend_create_flywheel/ for full documentation.
Usage
comprehend_create_flywheel(
FlywheelName,
ActiveModelArn = NULL,
DataAccessRoleArn,
TaskConfig = NULL,
ModelType = NULL,
DataLakeS3Uri,
DataSecurityConfig = NULL,
ClientRequestToken = NULL,
Tags = NULL
)Arguments
- FlywheelName
[required] Name for the flywheel.
- ActiveModelArn
To associate an existing model with the flywheel, specify the Amazon Resource Number (ARN) of the model version. Do not set
TaskConfigorModelTypeif you specify anActiveModelArn.- DataAccessRoleArn
[required] The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend the permissions required to access the flywheel data in the data lake.
- TaskConfig
Configuration about the model associated with the flywheel. You need to set
TaskConfigif you are creating a flywheel for a new model.- ModelType
The model type. You need to set
ModelTypeif you are creating a flywheel for a new model.- DataLakeS3Uri
[required] Enter the S3 location for the data lake. You can specify a new S3 bucket or a new folder of an existing S3 bucket. The flywheel creates the data lake at this location.
- DataSecurityConfig
Data security configurations.
- ClientRequestToken
A unique identifier for the request. If you don't set the client request token, Amazon Comprehend generates one.
The tags to associate with this flywheel.