[][src]Struct google_bigquery2::TrainingRun

pub struct TrainingRun {
    pub data_split_result: Option<DataSplitResult>,
    pub evaluation_metrics: Option<EvaluationMetrics>,
    pub results: Option<Vec<IterationResult>>,
    pub start_time: Option<String>,
    pub training_options: Option<TrainingOptions>,
}

Information about a single training query run for the model.

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

Fields

data_split_result: Option<DataSplitResult>

Data split result of the training run. Only set when the input data is actually split.

evaluation_metrics: Option<EvaluationMetrics>

The evaluation metrics over training/eval data that were computed at the end of training.

results: Option<Vec<IterationResult>>

Output of each iteration run, results.size() <= max_iterations.

start_time: Option<String>

The start time of this training run.

training_options: Option<TrainingOptions>

Options that were used for this training run, includes user specified and default options that were used.

Trait Implementations

impl Clone for TrainingRun[src]

impl Debug for TrainingRun[src]

impl Default for TrainingRun[src]

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

impl Part for TrainingRun[src]

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

impl<T> Typeable for T where
    T: Any