Struct google_bigquery2::api::TrainingRun [−][src]
Information about a single training query run for the model.
This type is not used in any activity, and only used as part of another schema.
Fields
data_split_result: Option<DataSplitResult>Data split result of the training run. Only set when the input data is actually split.
evaluation_metrics: Option<EvaluationMetrics>The evaluation metrics over training/eval data that were computed at the end of training.
global_explanations: Option<Vec<GlobalExplanation>>Global explanations for important features of the model. For multi-class models, there is one entry for each label class. For other models, there is only one entry in the list.
results: Option<Vec<IterationResult>>Output of each iteration run, results.size() <= max_iterations.
start_time: Option<String>The start time of this training run.
training_options: Option<TrainingOptions>Options that were used for this training run, includes user specified and default options that were used.
Trait Implementations
impl Clone for TrainingRun[src]
fn clone(&self) -> TrainingRun[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for TrainingRun[src]
impl Default for TrainingRun[src]
fn default() -> TrainingRun[src]
impl<'de> Deserialize<'de> for TrainingRun[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for TrainingRun[src]
impl Serialize for TrainingRun[src]
Auto Trait Implementations
impl RefUnwindSafe for TrainingRun[src]
impl Send for TrainingRun[src]
impl Sync for TrainingRun[src]
impl Unpin for TrainingRun[src]
impl UnwindSafe for TrainingRun[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,