Generates batch recommendations based on a list of items or users stored in Amazon S3 and exports the recommendations to an Amazon S3 bucket
Source:R/personalize_operations.R
personalize_create_batch_inference_job.RdGenerates batch recommendations based on a list of items or users stored in Amazon S3 and exports the recommendations to an Amazon S3 bucket.
See https://www.paws-r-sdk.com/docs/personalize_create_batch_inference_job/ for full documentation.
Usage
personalize_create_batch_inference_job(
jobName,
solutionVersionArn,
filterArn = NULL,
numResults = NULL,
jobInput,
jobOutput,
roleArn,
batchInferenceJobConfig = NULL,
tags = NULL,
batchInferenceJobMode = NULL,
themeGenerationConfig = NULL
)Arguments
- jobName
[required] The name of the batch inference job to create.
- solutionVersionArn
[required] The Amazon Resource Name (ARN) of the solution version that will be used to generate the batch inference recommendations.
- filterArn
The ARN of the filter to apply to the batch inference job. For more information on using filters, see Filtering batch recommendations.
- numResults
The number of recommendations to retrieve.
- jobInput
[required] The Amazon S3 path that leads to the input file to base your recommendations on. The input material must be in JSON format.
- jobOutput
[required] The path to the Amazon S3 bucket where the job's output will be stored.
- roleArn
[required] The ARN of the Amazon Identity and Access Management role that has permissions to read and write to your input and output Amazon S3 buckets respectively.
- batchInferenceJobConfig
The configuration details of a batch inference job.
A list of tags to apply to the batch inference job.
- batchInferenceJobMode
The mode of the batch inference job. To generate descriptive themes for groups of similar items, set the job mode to
THEME_GENERATION. If you don't want to generate themes, use the defaultBATCH_INFERENCE.When you get batch recommendations with themes, you will incur additional costs. For more information, see Amazon Personalize pricing.
- themeGenerationConfig
For theme generation jobs, specify the name of the column in your Items dataset that contains each item's name.