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 ==.