Struct google_ml1::api::GoogleCloudMlV1__ParameterSpec[][src]

pub struct GoogleCloudMlV1__ParameterSpec {
    pub categorical_values: Option<Vec<String>>,
    pub discrete_values: Option<Vec<f64>>,
    pub max_value: Option<f64>,
    pub min_value: Option<f64>,
    pub parameter_name: Option<String>,
    pub scale_type: Option<String>,
    pub type_: Option<String>,
}

Represents a single hyperparameter to optimize.

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

Fields

categorical_values: Option<Vec<String>>

Required if type is CATEGORICAL. The list of possible categories.

discrete_values: Option<Vec<f64>>

Required if type is DISCRETE. A list of feasible points. The list should be in strictly increasing order. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.

max_value: Option<f64>

Required if type is DOUBLE or INTEGER. This field should be unset if type is CATEGORICAL. This value should be integers if type is INTEGER.

min_value: Option<f64>

Required if type is DOUBLE or INTEGER. This field should be unset if type is CATEGORICAL. This value should be integers if type is INTEGER.

parameter_name: Option<String>

Required. The parameter name must be unique amongst all ParameterConfigs in a HyperparameterSpec message. E.g., “learning_rate”.

scale_type: Option<String>

Optional. How the parameter should be scaled to the hypercube. Leave unset for categorical parameters. Some kind of scaling is strongly recommended for real or integral parameters (e.g., UNIT_LINEAR_SCALE).

type_: Option<String>

Required. The type of the parameter.

Trait Implementations

impl Clone for GoogleCloudMlV1__ParameterSpec[src]

impl Debug for GoogleCloudMlV1__ParameterSpec[src]

impl Default for GoogleCloudMlV1__ParameterSpec[src]

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

impl Part for GoogleCloudMlV1__ParameterSpec[src]

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