Struct google_ml1::GoogleCloudMlV1__HyperparameterOutput[][src]

pub struct GoogleCloudMlV1__HyperparameterOutput {
    pub hyperparameters: Option<HashMap<String, String>>,
    pub trial_id: Option<String>,
    pub all_metrics: Option<Vec<GoogleCloudMlV1_HyperparameterOutput_HyperparameterMetric>>,
    pub final_metric: Option<GoogleCloudMlV1_HyperparameterOutput_HyperparameterMetric>,
}

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

The hyperparameters given to this trial.

The trial id for these results.

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

The final objective metric seen for this trial.

Trait Implementations

impl Default for GoogleCloudMlV1__HyperparameterOutput
[src]

Returns the "default value" for a type. Read more

impl Clone for GoogleCloudMlV1__HyperparameterOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GoogleCloudMlV1__HyperparameterOutput
[src]

Formats the value using the given formatter. Read more

impl Part for GoogleCloudMlV1__HyperparameterOutput
[src]

Auto Trait Implementations