pub struct AlgorithmValidationProfile {
pub profile_name: String,
pub training_job_definition: TrainingJobDefinition,
pub transform_job_definition: Option<TransformJobDefinition>,
}
Expand description
Defines a training job and a batch transform job that Amazon SageMaker runs to validate your algorithm.
The data provided in the validation profile is made available to your buyers on AWS Marketplace.
Fields§
§profile_name: String
The name of the profile for the algorithm. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).
training_job_definition: TrainingJobDefinition
The TrainingJobDefinition
object that describes the training job that Amazon SageMaker runs to validate your algorithm.
transform_job_definition: Option<TransformJobDefinition>
The TransformJobDefinition
object that describes the transform job that Amazon SageMaker runs to validate your algorithm.
Trait Implementations§
Source§impl Clone for AlgorithmValidationProfile
impl Clone for AlgorithmValidationProfile
Source§fn clone(&self) -> AlgorithmValidationProfile
fn clone(&self) -> AlgorithmValidationProfile
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 AlgorithmValidationProfile
impl Debug for AlgorithmValidationProfile
Source§impl Default for AlgorithmValidationProfile
impl Default for AlgorithmValidationProfile
Source§fn default() -> AlgorithmValidationProfile
fn default() -> AlgorithmValidationProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AlgorithmValidationProfile
impl<'de> Deserialize<'de> for AlgorithmValidationProfile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for AlgorithmValidationProfile
Auto Trait Implementations§
impl Freeze for AlgorithmValidationProfile
impl RefUnwindSafe for AlgorithmValidationProfile
impl Send for AlgorithmValidationProfile
impl Sync for AlgorithmValidationProfile
impl Unpin for AlgorithmValidationProfile
impl UnwindSafe for AlgorithmValidationProfile
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