pub struct MlStatistics {
pub hparam_trials: Option<Vec<HparamTuningTrial>>,
pub iteration_results: Option<Vec<IterationResult>>,
pub max_iterations: Option<i64>,
pub model_type: Option<String>,
pub training_type: Option<String>,
}Expand description
Job statistics specific to a BigQuery ML training job.
This type is not used in any activity, and only used as part of another schema.
Fields§
§hparam_trials: Option<Vec<HparamTuningTrial>>Output only. Trials of a hyperparameter tuning job sorted by trial_id.
iteration_results: Option<Vec<IterationResult>>Results for all completed iterations. Empty for hyperparameter tuning jobs.
max_iterations: Option<i64>Output only. Maximum number of iterations specified as max_iterations in the ‘CREATE MODEL’ query. The actual number of iterations may be less than this number due to early stop.
model_type: Option<String>Output only. The type of the model that is being trained.
training_type: Option<String>Output only. Training type of the job.
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 Serialize for MlStatistics
impl Serialize for MlStatistics
impl Part 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