pub struct StartMLLabelingSetGenerationTaskRun { /* private fields */ }Expand description
Fluent builder constructing a request to StartMLLabelingSetGenerationTaskRun.
Starts the active learning workflow for your machine learning transform to improve the transform's quality by generating label sets and adding labels.
When the StartMLLabelingSetGenerationTaskRun finishes, Glue will have generated a "labeling set" or a set of questions for humans to answer.
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, you can upload your labels with a call to StartImportLabelsTaskRun. After StartImportLabelsTaskRun finishes, all future runs of the machine learning transform will use the new and improved labels and perform a higher-quality transformation.
Implementations§
source§impl StartMLLabelingSetGenerationTaskRun
impl StartMLLabelingSetGenerationTaskRun
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<StartMLLabelingSetGenerationTaskRun, AwsResponseRetryClassifier>, SdkError<StartMLLabelingSetGenerationTaskRunError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<StartMLLabelingSetGenerationTaskRun, AwsResponseRetryClassifier>, SdkError<StartMLLabelingSetGenerationTaskRunError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<StartMlLabelingSetGenerationTaskRunOutput, SdkError<StartMLLabelingSetGenerationTaskRunError>>
pub async fn send(
self
) -> Result<StartMlLabelingSetGenerationTaskRunOutput, SdkError<StartMLLabelingSetGenerationTaskRunError>>
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.
sourcepub fn transform_id(self, input: impl Into<String>) -> Self
pub fn transform_id(self, input: impl Into<String>) -> Self
The unique identifier of the machine learning transform.
sourcepub fn set_transform_id(self, input: Option<String>) -> Self
pub fn set_transform_id(self, input: Option<String>) -> Self
The unique identifier of the machine learning transform.
sourcepub fn output_s3_path(self, input: impl Into<String>) -> Self
pub fn output_s3_path(self, input: impl Into<String>) -> Self
The Amazon Simple Storage Service (Amazon S3) path where you generate the labeling set.
sourcepub fn set_output_s3_path(self, input: Option<String>) -> Self
pub fn set_output_s3_path(self, input: Option<String>) -> Self
The Amazon Simple Storage Service (Amazon S3) path where you generate the labeling set.
Trait Implementations§
source§impl Clone for StartMLLabelingSetGenerationTaskRun
impl Clone for StartMLLabelingSetGenerationTaskRun
source§fn clone(&self) -> StartMLLabelingSetGenerationTaskRun
fn clone(&self) -> StartMLLabelingSetGenerationTaskRun
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more