pub struct StartImportLabelsTaskRun { /* private fields */ }
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
sourceimpl StartImportLabelsTaskRun
impl StartImportLabelsTaskRun
sourcepub async fn send(
self
) -> Result<StartImportLabelsTaskRunOutput, SdkError<StartImportLabelsTaskRunError>>
pub async fn send(
self
) -> Result<StartImportLabelsTaskRunOutput, SdkError<StartImportLabelsTaskRunError>>
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 input_s3_path(self, input: impl Into<String>) -> Self
pub fn input_s3_path(self, input: impl Into<String>) -> Self
The Amazon Simple Storage Service (Amazon S3) path from where you import the labels.
sourcepub fn set_input_s3_path(self, input: Option<String>) -> Self
pub fn set_input_s3_path(self, input: Option<String>) -> Self
The Amazon Simple Storage Service (Amazon S3) path from where you import the labels.
sourcepub fn replace_all_labels(self, input: bool) -> Self
pub fn replace_all_labels(self, input: bool) -> Self
Indicates whether to overwrite your existing labels.
sourcepub fn set_replace_all_labels(self, input: Option<bool>) -> Self
pub fn set_replace_all_labels(self, input: Option<bool>) -> Self
Indicates whether to overwrite your existing labels.
Trait Implementations
sourceimpl Clone for StartImportLabelsTaskRun
impl Clone for StartImportLabelsTaskRun
sourcefn clone(&self) -> StartImportLabelsTaskRun
fn clone(&self) -> StartImportLabelsTaskRun
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl !RefUnwindSafe for StartImportLabelsTaskRun
impl Send for StartImportLabelsTaskRun
impl Sync for StartImportLabelsTaskRun
impl Unpin for StartImportLabelsTaskRun
impl !UnwindSafe for StartImportLabelsTaskRun
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more