[][src]Struct rusoto_sagemaker::CreateAlgorithmInput

pub struct CreateAlgorithmInput {
    pub algorithm_description: Option<String>,
    pub algorithm_name: String,
    pub certify_for_marketplace: Option<bool>,
    pub inference_specification: Option<InferenceSpecification>,
    pub training_specification: TrainingSpecification,
    pub validation_specification: Option<AlgorithmValidationSpecification>,
}

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, and test 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 Clone for CreateAlgorithmInput[src]

impl Debug for CreateAlgorithmInput[src]

impl Default for CreateAlgorithmInput[src]

impl PartialEq<CreateAlgorithmInput> for CreateAlgorithmInput[src]

impl Serialize for CreateAlgorithmInput[src]

impl StructuralPartialEq for CreateAlgorithmInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.