Struct google_ml1::api::GoogleCloudMlV1__Trial[][src]

pub struct GoogleCloudMlV1__Trial {
    pub client_id: Option<String>,
    pub end_time: Option<String>,
    pub final_measurement: Option<GoogleCloudMlV1__Measurement>,
    pub infeasible_reason: Option<String>,
    pub measurements: Option<Vec<GoogleCloudMlV1__Measurement>>,
    pub name: Option<String>,
    pub parameters: Option<Vec<GoogleCloudMlV1_Trial_Parameter>>,
    pub start_time: Option<String>,
    pub state: Option<String>,
    pub trial_infeasible: Option<bool>,
}

A message representing a trial.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

client_id: Option<String>

Output only. The identifier of the client that originally requested this trial.

end_time: Option<String>

Output only. Time at which the trial’s status changed to COMPLETED.

final_measurement: Option<GoogleCloudMlV1__Measurement>

The final measurement containing the objective value.

infeasible_reason: Option<String>

Output only. A human readable string describing why the trial is infeasible. This should only be set if trial_infeasible is true.

measurements: Option<Vec<GoogleCloudMlV1__Measurement>>

A list of measurements that are strictly lexicographically ordered by their induced tuples (steps, elapsed_time). These are used for early stopping computations.

name: Option<String>

Output only. Name of the trial assigned by the service.

parameters: Option<Vec<GoogleCloudMlV1_Trial_Parameter>>

The parameters of the trial.

start_time: Option<String>

Output only. Time at which the trial was started.

state: Option<String>

The detailed state of a trial.

trial_infeasible: Option<bool>

Output only. If true, the parameters in this trial are not attempted again.

Trait Implementations

impl Clone for GoogleCloudMlV1__Trial[src]

impl Debug for GoogleCloudMlV1__Trial[src]

impl Default for GoogleCloudMlV1__Trial[src]

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

impl RequestValue for GoogleCloudMlV1__Trial[src]

impl ResponseResult for GoogleCloudMlV1__Trial[src]

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