Struct gapi_grpc::google::cloud::ml::v1::HyperparameterOutput[][src]

pub struct HyperparameterOutput {
    pub trial_id: String,
    pub hyperparameters: HashMap<String, String>,
    pub final_metric: Option<HyperparameterMetric>,
    pub all_metrics: Vec<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.

Fields

trial_id: String

The trial id for these results.

hyperparameters: HashMap<String, String>

The hyperparameters given to this trial.

final_metric: Option<HyperparameterMetric>

The final objective metric seen for this trial.

all_metrics: Vec<HyperparameterMetric>

All recorded object metrics for this trial.

Trait Implementations

impl Clone for HyperparameterOutput[src]

impl Debug for HyperparameterOutput[src]

impl Default for HyperparameterOutput[src]

impl Message for HyperparameterOutput[src]

impl PartialEq<HyperparameterOutput> for HyperparameterOutput[src]

impl StructuralPartialEq for HyperparameterOutput[src]

Auto Trait Implementations

impl RefUnwindSafe for HyperparameterOutput

impl Send for HyperparameterOutput

impl Sync for HyperparameterOutput

impl Unpin for HyperparameterOutput

impl UnwindSafe for HyperparameterOutput

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]