pub struct MlStatistics {
pub max_iterations: Option<i64>,
pub iteration_results: Option<Vec<IterationResult>>,
pub model_type: ModelType,
pub training_type: TrainingType,
pub hparam_trials: Option<Vec<HparamTuningTrial>>,
}Fields§
§max_iterations: Option<i64>Output only. Maximum number of iterations specified as maxIterations in the ‘CREATE MODEL’ query. The actual number of iterations may be less than this number due to early stop.
iteration_results: Option<Vec<IterationResult>>Results for all completed iterations. Empty for hyperparameter tuning jobs.
model_type: ModelTypeOutput only. The type of the model that is being trained.
training_type: TrainingTypeOutput only. Training type of the job.
hparam_trials: Option<Vec<HparamTuningTrial>>Output only. Trials of a hyperparameter tuning job sorted by trialId.
Trait Implementations§
Source§impl Clone for MlStatistics
impl Clone for MlStatistics
Source§fn clone(&self) -> MlStatistics
fn clone(&self) -> MlStatistics
Returns a duplicate 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 MlStatistics
impl Debug for MlStatistics
Source§impl Default for MlStatistics
impl Default for MlStatistics
Source§fn default() -> MlStatistics
fn default() -> MlStatistics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MlStatistics
impl<'de> Deserialize<'de> for MlStatistics
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 for MlStatistics
impl PartialEq for MlStatistics
Source§impl Serialize for MlStatistics
impl Serialize for MlStatistics
impl StructuralPartialEq for MlStatistics
Auto Trait Implementations§
impl Freeze for MlStatistics
impl RefUnwindSafe for MlStatistics
impl Send for MlStatistics
impl Sync for MlStatistics
impl Unpin for MlStatistics
impl UnwindSafe for MlStatistics
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> 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> 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