Struct google_ml1::api::GoogleCloudMlV1__TrainingOutput[][src]

pub struct GoogleCloudMlV1__TrainingOutput {
    pub built_in_algorithm_output: Option<GoogleCloudMlV1__BuiltInAlgorithmOutput>,
    pub completed_trial_count: Option<String>,
    pub consumed_ml_units: Option<f64>,
    pub hyperparameter_metric_tag: Option<String>,
    pub is_built_in_algorithm_job: Option<bool>,
    pub is_hyperparameter_tuning_job: Option<bool>,
    pub trials: Option<Vec<GoogleCloudMlV1__HyperparameterOutput>>,
}

Represents results of a training job. Output only.

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

Fields

built_in_algorithm_output: Option<GoogleCloudMlV1__BuiltInAlgorithmOutput>

Details related to built-in algorithms jobs. Only set for built-in algorithms jobs.

completed_trial_count: Option<String>

The number of hyperparameter tuning trials that completed successfully. Only set for hyperparameter tuning jobs.

consumed_ml_units: Option<f64>

The amount of ML units consumed by the job.

hyperparameter_metric_tag: Option<String>

The TensorFlow summary tag name used for optimizing hyperparameter tuning trials. See HyperparameterSpec.hyperparameterMetricTag for more information. Only set for hyperparameter tuning jobs.

is_built_in_algorithm_job: Option<bool>

Whether this job is a built-in Algorithm job.

is_hyperparameter_tuning_job: Option<bool>

Whether this job is a hyperparameter tuning job.

trials: Option<Vec<GoogleCloudMlV1__HyperparameterOutput>>

Results for individual Hyperparameter trials. Only set for hyperparameter tuning jobs.

Trait Implementations

impl Clone for GoogleCloudMlV1__TrainingOutput[src]

impl Debug for GoogleCloudMlV1__TrainingOutput[src]

impl Default for GoogleCloudMlV1__TrainingOutput[src]

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

impl Part for GoogleCloudMlV1__TrainingOutput[src]

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