Struct google_cloud_bigquery::http::model::IterationResult
source · pub struct IterationResult {
pub index: i32,
pub duration_ms: Option<i64>,
pub training_loss: Option<f64>,
pub eval_loss: Option<f64>,
pub learn_rate: Option<f64>,
pub cluster_infos: Option<Vec<ClusterInfo>>,
pub arima_result: Option<ArimaResult>,
pub principal_component_infos: Option<Vec<PrincipalComponentInfo>>,
}Fields§
§index: i32Index of the iteration, 0 based.
duration_ms: Option<i64>Time taken to run the iteration in milliseconds.
training_loss: Option<f64>Loss computed on the training data at the end of iteration.
eval_loss: Option<f64>Loss computed on the eval data at the end of iteration.
learn_rate: Option<f64>Learn rate used for this iteration.
cluster_infos: Option<Vec<ClusterInfo>>Information about top clusters for clustering models.
arima_result: Option<ArimaResult>§principal_component_infos: Option<Vec<PrincipalComponentInfo>>The information of the principal components.
Trait Implementations§
source§impl Clone for IterationResult
impl Clone for IterationResult
source§fn clone(&self) -> IterationResult
fn clone(&self) -> IterationResult
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for IterationResult
impl Debug for IterationResult
source§impl Default for IterationResult
impl Default for IterationResult
source§fn default() -> IterationResult
fn default() -> IterationResult
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IterationResult
impl<'de> Deserialize<'de> for IterationResult
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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<IterationResult> for IterationResult
impl PartialEq<IterationResult> for IterationResult
source§fn eq(&self, other: &IterationResult) -> bool
fn eq(&self, other: &IterationResult) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for IterationResult
impl Serialize for IterationResult
impl StructuralPartialEq for IterationResult
Auto Trait Implementations§
impl RefUnwindSafe for IterationResult
impl Send for IterationResult
impl Sync for IterationResult
impl Unpin for IterationResult
impl UnwindSafe for IterationResult
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
Mutably borrows from an owned value. Read more
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request