-
-
Save chrisking/a906df7575eee733313f4bfd24cf7704 to your computer and use it in GitHub Desktop.
batch sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| impot boto3 | |
| personalize_rec = boto3.client(service_name='personalize') | |
| batchInferenceJobArn = personalize_rec.create_batch_inference_job ( | |
| solutionVersionArn = solution_version_arn, | |
| jobName = "RI_Workshop_Batch_Export_Job2", | |
| roleArn = role_arn, | |
| jobInput = | |
| {"s3DataSource": {"path": s3_input_path}}, | |
| jobOutput = | |
| {"s3DataDestination":{"path": s3_output_path}} | |
| ) | |
| batchInferenceJobArn = batchInferenceJobArn['batchInferenceJobArn'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment