Struct aws_sdk_sagemaker::model::LabelCounters [−][src]
#[non_exhaustive]pub struct LabelCounters {
pub total_labeled: i32,
pub human_labeled: i32,
pub machine_labeled: i32,
pub failed_non_retryable_error: i32,
pub unlabeled: i32,
}
Expand description
Provides a breakdown of the number of objects labeled.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.total_labeled: i32
The total number of objects labeled.
human_labeled: i32
The total number of objects labeled by a human worker.
machine_labeled: i32
The total number of objects labeled by automated data labeling.
failed_non_retryable_error: i32
The total number of objects that could not be labeled due to an error.
unlabeled: i32
The total number of objects not yet labeled.
Implementations
The total number of objects labeled.
The total number of objects labeled by a human worker.
The total number of objects labeled by automated data labeling.
The total number of objects that could not be labeled due to an error.
Creates a new builder-style object to manufacture LabelCounters
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for LabelCounters
impl Send for LabelCounters
impl Sync for LabelCounters
impl Unpin for LabelCounters
impl UnwindSafe for LabelCounters
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