#[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 ==
.impl StructuralPartialEq for AlgorithmValidationSpecification
Auto Trait Implementations§
impl Freeze for AlgorithmValidationSpecification
impl RefUnwindSafe for AlgorithmValidationSpecification
impl Send for AlgorithmValidationSpecification
impl Sync for AlgorithmValidationSpecification
impl Unpin for AlgorithmValidationSpecification
impl UnwindSafe for AlgorithmValidationSpecification
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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