pub struct RayStats {
pub training_runs: u64,
pub training_time_sec: f64,
pub tuning_trials: u64,
pub tuning_time_sec: f64,
pub served_requests: u64,
pub data_processing_tasks: u64,
pub worker_failures: u64,
pub restarts: u64,
pub resource_utilization: f64,
pub checkpoint_frequency: f64,
}Expand description
Ray integration statistics
Fields§
§training_runs: u64Number of training runs
training_time_sec: f64Total training time (seconds)
tuning_trials: u64Number of tuning trials
tuning_time_sec: f64Total tuning time (seconds)
served_requests: u64Number of served requests
data_processing_tasks: u64Number of data processing tasks
worker_failures: u64Number of worker failures
restarts: u64Number of restarts
resource_utilization: f64Resource utilization
checkpoint_frequency: f64Checkpoint frequency
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RayStats
impl RefUnwindSafe for RayStats
impl Send for RayStats
impl Sync for RayStats
impl Unpin for RayStats
impl UnsafeUnpin for RayStats
impl UnwindSafe for RayStats
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> 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>
Converts
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>
Converts
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