pub struct BqmlIterationResult {
pub duration_ms: Option<i64>,
pub eval_loss: Option<f64>,
pub index: Option<i32>,
pub learn_rate: Option<f64>,
pub training_loss: Option<f64>,
}
Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§duration_ms: Option<i64>
[Output-only, Beta] Time taken to run the training iteration in milliseconds.
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.
index: Option<i32>
[Output-only, Beta] Index of the ML training iteration, starting from zero for each training run.
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.
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§
Source§impl Clone for BqmlIterationResult
impl Clone for BqmlIterationResult
Source§fn clone(&self) -> BqmlIterationResult
fn clone(&self) -> BqmlIterationResult
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for BqmlIterationResult
impl Debug for BqmlIterationResult
Source§impl Default for BqmlIterationResult
impl Default for BqmlIterationResult
Source§fn default() -> BqmlIterationResult
fn default() -> BqmlIterationResult
Source§impl<'de> Deserialize<'de> for BqmlIterationResult
impl<'de> Deserialize<'de> for BqmlIterationResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for BqmlIterationResult
impl Serialize for BqmlIterationResult
impl Part for BqmlIterationResult
Auto Trait Implementations§
impl Freeze for BqmlIterationResult
impl RefUnwindSafe for BqmlIterationResult
impl Send for BqmlIterationResult
impl Sync for BqmlIterationResult
impl Unpin for BqmlIterationResult
impl UnwindSafe for BqmlIterationResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more