pub struct TrainingJobStatusCounters {
pub completed: Option<i64>,
pub in_progress: Option<i64>,
pub non_retryable_error: Option<i64>,
pub retryable_error: Option<i64>,
pub stopped: Option<i64>,
}
Expand description
The numbers of training jobs launched by a hyperparameter tuning job, categorized by status.
Fields§
§completed: Option<i64>
The number of completed training jobs launched by the hyperparameter tuning job.
in_progress: Option<i64>
The number of in-progress training jobs launched by a hyperparameter tuning job.
non_retryable_error: Option<i64>
The number of training jobs that failed and can't be retried. A failed training job can't be retried if it failed because a client error occurred.
retryable_error: Option<i64>
The number of training jobs that failed, but can be retried. A failed training job can be retried only if it failed because an internal service error occurred.
stopped: Option<i64>
The number of training jobs launched by a hyperparameter tuning job that were manually stopped.
Trait Implementations§
Source§impl Clone for TrainingJobStatusCounters
impl Clone for TrainingJobStatusCounters
Source§fn clone(&self) -> TrainingJobStatusCounters
fn clone(&self) -> TrainingJobStatusCounters
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 TrainingJobStatusCounters
impl Debug for TrainingJobStatusCounters
Source§impl Default for TrainingJobStatusCounters
impl Default for TrainingJobStatusCounters
Source§fn default() -> TrainingJobStatusCounters
fn default() -> TrainingJobStatusCounters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrainingJobStatusCounters
impl<'de> Deserialize<'de> for TrainingJobStatusCounters
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
impl StructuralPartialEq for TrainingJobStatusCounters
Auto Trait Implementations§
impl Freeze for TrainingJobStatusCounters
impl RefUnwindSafe for TrainingJobStatusCounters
impl Send for TrainingJobStatusCounters
impl Sync for TrainingJobStatusCounters
impl Unpin for TrainingJobStatusCounters
impl UnwindSafe for TrainingJobStatusCounters
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