Struct AsyncProcessorTraining
pub struct AsyncProcessorTraining<ET, EV> { /* private fields */ }Expand description
Event processor for the training process.
Implementations§
§impl<ET, EV> AsyncProcessorTraining<ET, EV>
impl<ET, EV> AsyncProcessorTraining<ET, EV>
pub fn new<P>(processor: P) -> AsyncProcessorTraining<ET, EV>where
P: EventProcessorTraining<ET, EV> + 'static,
pub fn new<P>(processor: P) -> AsyncProcessorTraining<ET, EV>where
P: EventProcessorTraining<ET, EV> + 'static,
Create an event processor for training.
Trait Implementations§
§impl<ET, EV> EventProcessorTraining<ET, EV> for AsyncProcessorTraining<ET, EV>
impl<ET, EV> EventProcessorTraining<ET, EV> for AsyncProcessorTraining<ET, EV>
§fn process_train(&mut self, event: ET)
fn process_train(&mut self, event: ET)
Collect a training event.
§fn process_valid(&mut self, event: EV)
fn process_valid(&mut self, event: EV)
Collect a validation event.
§fn renderer(self) -> Box<dyn MetricsRenderer>
fn renderer(self) -> Box<dyn MetricsRenderer>
Returns the renderer used for training.
Auto Trait Implementations§
impl<ET, EV> Freeze for AsyncProcessorTraining<ET, EV>
impl<ET, EV> RefUnwindSafe for AsyncProcessorTraining<ET, EV>
impl<ET, EV> Send for AsyncProcessorTraining<ET, EV>
impl<ET, EV> Sync for AsyncProcessorTraining<ET, EV>
impl<ET, EV> Unpin for AsyncProcessorTraining<ET, EV>
impl<ET, EV> UnwindSafe for AsyncProcessorTraining<ET, EV>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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