Struct aws_sdk_rekognition::types::ValidationData
source · #[non_exhaustive]pub struct ValidationData {
pub assets: Option<Vec<Asset>>,
}Expand description
Contains the Amazon S3 bucket location of the validation data for a model training job.
The validation data includes error information for individual JSON Lines in the dataset. For more information, see Debugging a Failed Model Training in the Amazon Rekognition Custom Labels Developer Guide.
You get the ValidationData object for the training dataset (TrainingDataResult) and the test dataset (TestingDataResult) by calling DescribeProjectVersions.
The assets array contains a single Asset object. The GroundTruthManifest field of the Asset object contains the S3 bucket location of the validation data.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.assets: Option<Vec<Asset>>The assets that comprise the validation data.
Implementations§
source§impl ValidationData
impl ValidationData
sourcepub fn builder() -> ValidationDataBuilder
pub fn builder() -> ValidationDataBuilder
Creates a new builder-style object to manufacture ValidationData.
Trait Implementations§
source§impl Clone for ValidationData
impl Clone for ValidationData
source§fn clone(&self) -> ValidationData
fn clone(&self) -> ValidationData
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ValidationData
impl Debug for ValidationData
source§impl PartialEq for ValidationData
impl PartialEq for ValidationData
source§fn eq(&self, other: &ValidationData) -> bool
fn eq(&self, other: &ValidationData) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ValidationData
Auto Trait Implementations§
impl RefUnwindSafe for ValidationData
impl Send for ValidationData
impl Sync for ValidationData
impl Unpin for ValidationData
impl UnwindSafe for ValidationData
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
Mutably borrows from an owned value. Read more