pub struct EpochReport {
pub train: EvalReport,
pub val: Option<EvalReport>,
}Expand description
Report for a single epoch.
Fields§
§train: EvalReport§val: Option<EvalReport>Trait Implementations§
Source§impl Clone for EpochReport
impl Clone for EpochReport
Source§fn clone(&self) -> EpochReport
fn clone(&self) -> EpochReport
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for EpochReport
impl RefUnwindSafe for EpochReport
impl Send for EpochReport
impl Sync for EpochReport
impl Unpin for EpochReport
impl UnwindSafe for EpochReport
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