View source: R/neptunedata_operations.R
neptunedata_start_ml_data_processing_job | R Documentation |
Creates a new Neptune ML data processing job for processing the graph data exported from Neptune for training. See The dataprocessing
command.
See https://www.paws-r-sdk.com/docs/neptunedata_start_ml_data_processing_job/ for full documentation.
neptunedata_start_ml_data_processing_job(
id = NULL,
previousDataProcessingJobId = NULL,
inputDataS3Location,
processedDataS3Location,
sagemakerIamRoleArn = NULL,
neptuneIamRoleArn = NULL,
processingInstanceType = NULL,
processingInstanceVolumeSizeInGB = NULL,
processingTimeOutInSeconds = NULL,
modelType = NULL,
configFileName = NULL,
subnets = NULL,
securityGroupIds = NULL,
volumeEncryptionKMSKey = NULL,
s3OutputEncryptionKMSKey = NULL
)
id |
A unique identifier for the new job. The default is an autogenerated UUID. |
previousDataProcessingJobId |
The job ID of a completed data processing job run on an earlier version of the data. |
inputDataS3Location |
[required] The URI of the Amazon S3 location where you want SageMaker to download the data needed to run the data processing job. |
processedDataS3Location |
[required] The URI of the Amazon S3 location where you want SageMaker to save the results of a data processing job. |
sagemakerIamRoleArn |
The ARN of an IAM role for SageMaker execution. This must be listed in your DB cluster parameter group or an error will occur. |
neptuneIamRoleArn |
The Amazon Resource Name (ARN) of an IAM role that SageMaker can assume to perform tasks on your behalf. This must be listed in your DB cluster parameter group or an error will occur. |
processingInstanceType |
The type of ML instance used during data processing. Its memory should be large enough to hold the processed dataset. The default is the smallest ml.r5 type whose memory is ten times larger than the size of the exported graph data on disk. |
processingInstanceVolumeSizeInGB |
The disk volume size of the processing instance. Both input data and processed data are stored on disk, so the volume size must be large enough to hold both data sets. The default is 0. If not specified or 0, Neptune ML chooses the volume size automatically based on the data size. |
processingTimeOutInSeconds |
Timeout in seconds for the data processing job. The default is 86,400 (1 day). |
modelType |
One of the two model types that Neptune ML currently supports:
heterogeneous graph models ( |
configFileName |
A data specification file that describes how to load the exported graph
data for training. The file is automatically generated by the Neptune
export toolkit. The default is |
subnets |
The IDs of the subnets in the Neptune VPC. The default is None. |
securityGroupIds |
The VPC security group IDs. The default is None. |
volumeEncryptionKMSKey |
The Amazon Key Management Service (Amazon KMS) key that SageMaker uses to encrypt data on the storage volume attached to the ML compute instances that run the training job. The default is None. |
s3OutputEncryptionKMSKey |
The Amazon Key Management Service (Amazon KMS) key that SageMaker uses to encrypt the output of the processing job. The default is none. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.