Struct aws_sdk_rekognition::types::TestingDataResult
source · #[non_exhaustive]pub struct TestingDataResult {
pub input: Option<TestingData>,
pub output: Option<TestingData>,
pub validation: Option<ValidationData>,
}Expand description
Sagemaker Groundtruth format manifest files for the input, output and validation datasets that are used and created during testing.
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.input: Option<TestingData>The testing dataset that was supplied for training.
output: Option<TestingData>The subset of the dataset that was actually tested. Some images (assets) might not be tested due to file formatting and other issues.
validation: Option<ValidationData>The location of the data validation manifest. The data validation manifest is created for the test dataset during model training.
Implementations§
source§impl TestingDataResult
impl TestingDataResult
sourcepub fn input(&self) -> Option<&TestingData>
pub fn input(&self) -> Option<&TestingData>
The testing dataset that was supplied for training.
sourcepub fn output(&self) -> Option<&TestingData>
pub fn output(&self) -> Option<&TestingData>
The subset of the dataset that was actually tested. Some images (assets) might not be tested due to file formatting and other issues.
sourcepub fn validation(&self) -> Option<&ValidationData>
pub fn validation(&self) -> Option<&ValidationData>
The location of the data validation manifest. The data validation manifest is created for the test dataset during model training.
source§impl TestingDataResult
impl TestingDataResult
sourcepub fn builder() -> TestingDataResultBuilder
pub fn builder() -> TestingDataResultBuilder
Creates a new builder-style object to manufacture TestingDataResult.
Trait Implementations§
source§impl Clone for TestingDataResult
impl Clone for TestingDataResult
source§fn clone(&self) -> TestingDataResult
fn clone(&self) -> TestingDataResult
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for TestingDataResult
impl Debug for TestingDataResult
source§impl PartialEq for TestingDataResult
impl PartialEq for TestingDataResult
source§fn eq(&self, other: &TestingDataResult) -> bool
fn eq(&self, other: &TestingDataResult) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TestingDataResult
Auto Trait Implementations§
impl Freeze for TestingDataResult
impl RefUnwindSafe for TestingDataResult
impl Send for TestingDataResult
impl Sync for TestingDataResult
impl Unpin for TestingDataResult
impl UnwindSafe for TestingDataResult
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more