Last chance! 50% off unlimited learning
Sale ends in
Begins an asynchronous task to export all labeled data for a particular
transform. This task is the only label-related API call that is not part
of the typical active learning workflow. You typically use
start_export_labels_task_run
when
you want to work with all of your existing labels at the same time, such
as when you want to remove or change labels that were previously
submitted as truth. This API operation accepts the TransformId
whose
labels you want to export and an Amazon Simple Storage Service (Amazon
S3) path to export the labels to. The operation returns a TaskRunId
.
You can check on the status of your task run by calling the
get_ml_task_run
API.
glue_start_export_labels_task_run(TransformId, OutputS3Path)
[required] The unique identifier of the machine learning transform.
[required] The Amazon S3 path where you export the labels.
A list with the following syntax:
list( TaskRunId = "string" )
svc$start_export_labels_task_run( TransformId = "string", OutputS3Path = "string" )