[][src]Struct rusoto_personalize::Algorithm

pub struct Algorithm {
    pub algorithm_arn: Option<String>,
    pub algorithm_image: Option<AlgorithmImage>,
    pub creation_date_time: Option<f64>,
    pub default_hyper_parameter_ranges: Option<DefaultHyperParameterRanges>,
    pub default_hyper_parameters: Option<HashMap<String, String>>,
    pub default_resource_config: Option<HashMap<String, String>>,
    pub last_updated_date_time: Option<f64>,
    pub name: Option<String>,
    pub role_arn: Option<String>,
    pub training_input_mode: Option<String>,
}

Describes a custom algorithm.

Fields

algorithm_arn: Option<String>

The Amazon Resource Name (ARN) of the algorithm.

algorithm_image: Option<AlgorithmImage>

The URI of the Docker container for the algorithm image.

creation_date_time: Option<f64>

The date and time (in Unix time) that the algorithm was created.

default_hyper_parameter_ranges: Option<DefaultHyperParameterRanges>

Specifies the default hyperparameters, their ranges, and whether they are tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).

default_hyper_parameters: Option<HashMap<String, String>>

Specifies the default hyperparameters.

default_resource_config: Option<HashMap<String, String>>

Specifies the default maximum number of training jobs and parallel training jobs.

last_updated_date_time: Option<f64>

The date and time (in Unix time) that the algorithm was last updated.

name: Option<String>

The name of the algorithm.

role_arn: Option<String>

The Amazon Resource Name (ARN) of the role.

training_input_mode: Option<String>

The training input mode.

Trait Implementations

impl Clone for Algorithm[src]

impl Debug for Algorithm[src]

impl Default for Algorithm[src]

impl<'de> Deserialize<'de> for Algorithm[src]

impl PartialEq<Algorithm> for Algorithm[src]

impl StructuralPartialEq for Algorithm[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.