Struct google_ml1::api::GoogleCloudMlV1_StudyConfig_ParameterSpec[][src]

Represents a single parameter to optimize.

This type is not used in any activity, and only used as part of another schema.

Fields

categorical_value_spec: Option<GoogleCloudMlV1_StudyConfigParameterSpec_CategoricalValueSpec>

The value spec for a ‘CATEGORICAL’ parameter.

child_parameter_specs: Option<Vec<GoogleCloudMlV1_StudyConfig_ParameterSpec>>

A child node is active if the parameter’s value matches the child node’s matching_parent_values. If two items in child_parameter_specs have the same name, they must have disjoint matching_parent_values.

discrete_value_spec: Option<GoogleCloudMlV1_StudyConfigParameterSpec_DiscreteValueSpec>

The value spec for a ‘DISCRETE’ parameter.

double_value_spec: Option<GoogleCloudMlV1_StudyConfigParameterSpec_DoubleValueSpec>

The value spec for a ‘DOUBLE’ parameter.

integer_value_spec: Option<GoogleCloudMlV1_StudyConfigParameterSpec_IntegerValueSpec>

The value spec for an ‘INTEGER’ parameter.

parameter: Option<String>

Required. The parameter name must be unique amongst all ParameterSpecs.

parent_categorical_values: Option<GoogleCloudMlV1_StudyConfigParameterSpec_MatchingParentCategoricalValueSpec>

no description provided

parent_discrete_values: Option<GoogleCloudMlV1_StudyConfigParameterSpec_MatchingParentDiscreteValueSpec>

no description provided

parent_int_values: Option<GoogleCloudMlV1_StudyConfigParameterSpec_MatchingParentIntValueSpec>

no description provided

scale_type: Option<String>

How the parameter should be scaled. Leave unset for categorical parameters.

type_: Option<String>

Required. The type of the parameter.

Trait Implementations

impl Clone for GoogleCloudMlV1_StudyConfig_ParameterSpec[src]

impl Debug for GoogleCloudMlV1_StudyConfig_ParameterSpec[src]

impl Default for GoogleCloudMlV1_StudyConfig_ParameterSpec[src]

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

impl Part for GoogleCloudMlV1_StudyConfig_ParameterSpec[src]

impl Serialize for GoogleCloudMlV1_StudyConfig_ParameterSpec[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> 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.