[][src]Struct rusoto_personalize::SolutionConfig

pub struct SolutionConfig {
    pub algorithm_hyper_parameters: Option<HashMap<String, String>>,
    pub auto_ml_config: Option<AutoMLConfig>,
    pub event_value_threshold: Option<String>,
    pub feature_transformation_parameters: Option<HashMap<String, String>>,
    pub hpo_config: Option<HPOConfig>,
}

Describes the configuration properties for the solution.

Fields

algorithm_hyper_parameters: Option<HashMap<String, String>>

Lists the hyperparameter names and ranges.

auto_ml_config: Option<AutoMLConfig>

The AutoMLConfig object containing a list of recipes to search when AutoML is performed.

event_value_threshold: Option<String>

Only events with a value greater than or equal to this threshold are used for training a model.

feature_transformation_parameters: Option<HashMap<String, String>>

Lists the feature transformation parameters.

hpo_config: Option<HPOConfig>

Describes the properties for hyperparameter optimization (HPO).

Trait Implementations

impl Clone for SolutionConfig[src]

impl Debug for SolutionConfig[src]

impl Default for SolutionConfig[src]

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

impl PartialEq<SolutionConfig> for SolutionConfig[src]

impl Serialize for SolutionConfig[src]

impl StructuralPartialEq for SolutionConfig[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, 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.