#[non_exhaustive]pub struct AlgorithmValidationSpecification {
pub validation_role: Option<String>,
pub validation_profiles: Option<Vec<AlgorithmValidationProfile>>,
}
Expand description
Specifies configurations for one or more training jobs that SageMaker runs to test the algorithm.
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.validation_role: Option<String>
The IAM roles that SageMaker uses to run the training jobs.
validation_profiles: Option<Vec<AlgorithmValidationProfile>>
An array of AlgorithmValidationProfile
objects, each of which specifies a training job and batch transform job that SageMaker runs to validate your algorithm.
Implementations§
source§impl AlgorithmValidationSpecification
impl AlgorithmValidationSpecification
sourcepub fn validation_role(&self) -> Option<&str>
pub fn validation_role(&self) -> Option<&str>
The IAM roles that SageMaker uses to run the training jobs.
sourcepub fn validation_profiles(&self) -> &[AlgorithmValidationProfile]
pub fn validation_profiles(&self) -> &[AlgorithmValidationProfile]
An array of AlgorithmValidationProfile
objects, each of which specifies a training job and batch transform job that SageMaker runs to validate your algorithm.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .validation_profiles.is_none()
.
source§impl AlgorithmValidationSpecification
impl AlgorithmValidationSpecification
sourcepub fn builder() -> AlgorithmValidationSpecificationBuilder
pub fn builder() -> AlgorithmValidationSpecificationBuilder
Creates a new builder-style object to manufacture AlgorithmValidationSpecification
.
Trait Implementations§
source§impl Clone for AlgorithmValidationSpecification
impl Clone for AlgorithmValidationSpecification
source§fn clone(&self) -> AlgorithmValidationSpecification
fn clone(&self) -> AlgorithmValidationSpecification
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for AlgorithmValidationSpecification
impl PartialEq for AlgorithmValidationSpecification
source§fn eq(&self, other: &AlgorithmValidationSpecification) -> bool
fn eq(&self, other: &AlgorithmValidationSpecification) -> bool
self
and other
values to be equal, and is used
by ==
.