pub struct TrainMetrics {
pub entries: Vec<(String, f64)>,
}Expand description
Training metrics dictionary.
Fields§
§entries: Vec<(String, f64)>Implementations§
Trait Implementations§
Source§impl Clone for TrainMetrics
impl Clone for TrainMetrics
Source§fn clone(&self) -> TrainMetrics
fn clone(&self) -> TrainMetrics
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 moreSource§impl Debug for TrainMetrics
impl Debug for TrainMetrics
Source§impl Default for TrainMetrics
impl Default for TrainMetrics
Source§fn default() -> TrainMetrics
fn default() -> TrainMetrics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TrainMetrics
impl RefUnwindSafe for TrainMetrics
impl Send for TrainMetrics
impl Sync for TrainMetrics
impl Unpin for TrainMetrics
impl UnwindSafe for TrainMetrics
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