pub struct BqmlTrainingRun {
pub iteration_results: Option<Vec<BqmlIterationResult>>,
pub start_time: Option<DateTime<Utc>>,
pub state: Option<String>,
pub training_options: Option<BqmlTrainingRunTrainingOptions>,
}
Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§iteration_results: Option<Vec<BqmlIterationResult>>
[Output-only, Beta] List of each iteration results.
start_time: Option<DateTime<Utc>>
[Output-only, Beta] Training run start time in milliseconds since the epoch.
state: Option<String>
[Output-only, Beta] Different state applicable for a training run. IN PROGRESS: Training run is in progress. FAILED: Training run ended due to a non-retryable failure. SUCCEEDED: Training run successfully completed. CANCELLED: Training run cancelled by the user.
training_options: Option<BqmlTrainingRunTrainingOptions>
[Output-only, Beta] Training options used by this training run. These options are mutable for subsequent training runs. Default values are explicitly stored for options not specified in the input query of the first training run. For subsequent training runs, any option not explicitly specified in the input query will be copied from the previous training run.
Trait Implementations§
Source§impl Clone for BqmlTrainingRun
impl Clone for BqmlTrainingRun
Source§fn clone(&self) -> BqmlTrainingRun
fn clone(&self) -> BqmlTrainingRun
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for BqmlTrainingRun
impl Debug for BqmlTrainingRun
Source§impl Default for BqmlTrainingRun
impl Default for BqmlTrainingRun
Source§fn default() -> BqmlTrainingRun
fn default() -> BqmlTrainingRun
Source§impl<'de> Deserialize<'de> for BqmlTrainingRun
impl<'de> Deserialize<'de> for BqmlTrainingRun
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 BqmlTrainingRun
impl Serialize for BqmlTrainingRun
impl Part for BqmlTrainingRun
Auto Trait Implementations§
impl Freeze for BqmlTrainingRun
impl RefUnwindSafe for BqmlTrainingRun
impl Send for BqmlTrainingRun
impl Sync for BqmlTrainingRun
impl Unpin for BqmlTrainingRun
impl UnwindSafe for BqmlTrainingRun
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