[][src]Struct google_bigquery2::BqmlIterationResult

pub struct BqmlIterationResult {
    pub index: Option<i32>,
    pub eval_loss: Option<f64>,
    pub learn_rate: Option<f64>,
    pub duration_ms: Option<String>,
    pub training_loss: Option<f64>,
}

There is no detailed description.

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

Fields

index: Option<i32>

[Output-only, Beta] Index of the ML training iteration, starting from zero for each training run.

eval_loss: Option<f64>

[Output-only, Beta] Eval loss computed on the eval data at the end of the iteration. The eval loss is used for early stopping to avoid overfitting. No eval loss if eval_split_method option is specified as no_split or auto_split with input data size less than 500 rows.

learn_rate: Option<f64>

[Output-only, Beta] Learning rate used for this iteration, it varies for different training iterations if learn_rate_strategy option is not constant.

duration_ms: Option<String>

[Output-only, Beta] Time taken to run the training iteration in milliseconds.

training_loss: Option<f64>

[Output-only, Beta] Training loss computed on the training data at the end of the iteration. The training loss function is defined by model type.

Trait Implementations

impl Part for BqmlIterationResult[src]

impl Default for BqmlIterationResult[src]

impl Clone for BqmlIterationResult[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for BqmlIterationResult[src]

impl Serialize for BqmlIterationResult[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]