pub struct TrainingResult {
pub duration: Duration,
pub epochs: u64,
pub error: f64,
pub min_error: f64,
}
Fields§
§duration: Duration
§epochs: u64
§error: f64
§min_error: f64
Trait Implementations§
Source§impl Clone for TrainingResult
impl Clone for TrainingResult
Source§fn clone(&self) -> TrainingResult
fn clone(&self) -> TrainingResult
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 moreAuto Trait Implementations§
impl Freeze for TrainingResult
impl RefUnwindSafe for TrainingResult
impl Send for TrainingResult
impl Sync for TrainingResult
impl Unpin for TrainingResult
impl UnwindSafe for TrainingResult
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