[][src]Struct google_ml1::GoogleCloudMlV1__HyperparameterOutput

pub struct GoogleCloudMlV1__HyperparameterOutput {
    pub start_time: Option<String>,
    pub hyperparameters: Option<HashMap<String, String>>,
    pub final_metric: Option<GoogleCloudMlV1_HyperparameterOutput_HyperparameterMetric>,
    pub state: Option<String>,
    pub all_metrics: Option<Vec<GoogleCloudMlV1_HyperparameterOutput_HyperparameterMetric>>,
    pub is_trial_stopped_early: Option<bool>,
    pub end_time: Option<String>,
    pub trial_id: Option<String>,
    pub built_in_algorithm_output: Option<GoogleCloudMlV1__BuiltInAlgorithmOutput>,
}

Represents the result of a single hyperparameter tuning trial from a training job. The TrainingOutput object that is returned on successful completion of a training job with hyperparameter tuning includes a list of HyperparameterOutput objects, one for each successful trial.

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

Fields

start_time: Option<String>

Output only. Start time for the trial.

hyperparameters: Option<HashMap<String, String>>

The hyperparameters given to this trial.

final_metric: Option<GoogleCloudMlV1_HyperparameterOutput_HyperparameterMetric>

The final objective metric seen for this trial.

state: Option<String>

Output only. The detailed state of the trial.

all_metrics: Option<Vec<GoogleCloudMlV1_HyperparameterOutput_HyperparameterMetric>>

All recorded object metrics for this trial. This field is not currently populated.

is_trial_stopped_early: Option<bool>

True if the trial is stopped early.

end_time: Option<String>

Output only. End time for the trial.

trial_id: Option<String>

The trial id for these results.

built_in_algorithm_output: Option<GoogleCloudMlV1__BuiltInAlgorithmOutput>

Details related to built-in algorithms jobs. Only set for trials of built-in algorithms jobs that have succeeded.

Trait Implementations

impl Part for GoogleCloudMlV1__HyperparameterOutput[src]

impl Default for GoogleCloudMlV1__HyperparameterOutput[src]

impl Clone for GoogleCloudMlV1__HyperparameterOutput[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for GoogleCloudMlV1__HyperparameterOutput[src]

impl Serialize for GoogleCloudMlV1__HyperparameterOutput[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]