Struct aws_sdk_glue::client::fluent_builders::StartImportLabelsTaskRun
source ·
[−]pub struct StartImportLabelsTaskRun<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to StartImportLabelsTaskRun
.
Enables you to provide additional labels (examples of truth) to be used to teach the machine learning transform and improve its quality. This API operation is generally used as part of the active learning workflow that starts with the StartMLLabelingSetGenerationTaskRun
call and that ultimately results in improving the quality of your machine learning transform.
After the StartMLLabelingSetGenerationTaskRun
finishes, Glue machine learning will have generated a series of questions for humans to answer. (Answering these questions is often called 'labeling' in the machine learning workflows). In the case of the FindMatches
transform, these questions are of the form, “What is the correct way to group these rows together into groups composed entirely of matching records?” After the labeling process is finished, users upload their answers/labels with a call to StartImportLabelsTaskRun
. After StartImportLabelsTaskRun
finishes, all future runs of the machine learning transform use the new and improved labels and perform a higher-quality transformation.
By default, StartMLLabelingSetGenerationTaskRun
continually learns from and combines all labels that you upload unless you set Replace
to true. If you set Replace
to true, StartImportLabelsTaskRun
deletes and forgets all previously uploaded labels and learns only from the exact set that you upload. Replacing labels can be helpful if you realize that you previously uploaded incorrect labels, and you believe that they are having a negative effect on your transform quality.
You can check on the status of your task run by calling the GetMLTaskRun
operation.
Implementations
impl<C, M, R> StartImportLabelsTaskRun<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> StartImportLabelsTaskRun<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<StartImportLabelsTaskRunOutput, SdkError<StartImportLabelsTaskRunError>> where
R::Policy: SmithyRetryPolicy<StartImportLabelsTaskRunInputOperationOutputAlias, StartImportLabelsTaskRunOutput, StartImportLabelsTaskRunError, StartImportLabelsTaskRunInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<StartImportLabelsTaskRunOutput, SdkError<StartImportLabelsTaskRunError>> where
R::Policy: SmithyRetryPolicy<StartImportLabelsTaskRunInputOperationOutputAlias, StartImportLabelsTaskRunOutput, StartImportLabelsTaskRunError, StartImportLabelsTaskRunInputOperationRetryAlias>,
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
The unique identifier of the machine learning transform.
The unique identifier of the machine learning transform.
The Amazon Simple Storage Service (Amazon S3) path from where you import the labels.
The Amazon Simple Storage Service (Amazon S3) path from where you import the labels.
Indicates whether to overwrite your existing labels.
Indicates whether to overwrite your existing labels.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for StartImportLabelsTaskRun<C, M, R>
impl<C, M, R> Send for StartImportLabelsTaskRun<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for StartImportLabelsTaskRun<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for StartImportLabelsTaskRun<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for StartImportLabelsTaskRun<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more