[−][src]Struct rusoto_sagemaker::CreateAlgorithmInput
Fields
algorithm_description: Option<String>
A description of the algorithm.
algorithm_name: String
The name of the algorithm.
certify_for_marketplace: Option<bool>
Whether to certify the algorithm so that it can be listed in AWS Marketplace.
inference_specification: Option<InferenceSpecification>
Specifies details about inference jobs that the algorithm runs, including the following:
-
The Amazon ECR paths of containers that contain the inference code and model artifacts.
-
The instance types that the algorithm supports for transform jobs and real-time endpoints used for inference.
-
The input and output content formats that the algorithm supports for inference.
training_specification: TrainingSpecification
Specifies details about training jobs run by this algorithm, including the following:
-
The Amazon ECR path of the container and the version digest of the algorithm.
-
The hyperparameters that the algorithm supports.
-
The instance types that the algorithm supports for training.
-
Whether the algorithm supports distributed training.
-
The metrics that the algorithm emits to Amazon CloudWatch.
-
Which metrics that the algorithm emits can be used as the objective metric for hyperparameter tuning jobs.
-
The input channels that the algorithm supports for training data. For example, an algorithm might support
train
,validation
, andtest
channels.
validation_specification: Option<AlgorithmValidationSpecification>
Specifies configurations for one or more training jobs and that Amazon SageMaker runs to test the algorithm's training code and, optionally, one or more batch transform jobs that Amazon SageMaker runs to test the algorithm's inference code.
Trait Implementations
impl PartialEq<CreateAlgorithmInput> for CreateAlgorithmInput
[src]
fn eq(&self, other: &CreateAlgorithmInput) -> bool
[src]
fn ne(&self, other: &CreateAlgorithmInput) -> bool
[src]
impl Default for CreateAlgorithmInput
[src]
fn default() -> CreateAlgorithmInput
[src]
impl Clone for CreateAlgorithmInput
[src]
fn clone(&self) -> CreateAlgorithmInput
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for CreateAlgorithmInput
[src]
impl Serialize for CreateAlgorithmInput
[src]
Auto Trait Implementations
impl Send for CreateAlgorithmInput
impl Sync for CreateAlgorithmInput
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self