Struct aws_sdk_rekognition::model::TestingDataResult
source · [−]#[non_exhaustive]pub struct TestingDataResult { /* private fields */ }Expand description
Sagemaker Groundtruth format manifest files for the input, output and validation datasets that are used and created during testing.
Implementations
sourceimpl 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.
sourceimpl TestingDataResult
impl TestingDataResult
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TestingDataResult.
Trait Implementations
sourceimpl Clone for TestingDataResult
impl Clone for TestingDataResult
sourcefn clone(&self) -> TestingDataResult
fn clone(&self) -> TestingDataResult
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 moresourceimpl Debug for TestingDataResult
impl Debug for TestingDataResult
sourceimpl PartialEq<TestingDataResult> for TestingDataResult
impl PartialEq<TestingDataResult> for TestingDataResult
sourcefn eq(&self, other: &TestingDataResult) -> bool
fn eq(&self, other: &TestingDataResult) -> bool
impl StructuralPartialEq for TestingDataResult
Auto Trait Implementations
impl RefUnwindSafe for TestingDataResult
impl Send for TestingDataResult
impl Sync for TestingDataResult
impl Unpin for TestingDataResult
impl UnwindSafe for TestingDataResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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