pub struct OutputStats {
pub min: f64,
pub max: f64,
pub mean: f64,
pub num_distinct: usize,
}Expand description
Statistics about the output values in the training set.
Fields§
§min: f64§max: f64§mean: f64§num_distinct: usizeNumber of distinct output values.
Trait Implementations§
Source§impl Clone for OutputStats
impl Clone for OutputStats
Source§fn clone(&self) -> OutputStats
fn clone(&self) -> OutputStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OutputStats
impl RefUnwindSafe for OutputStats
impl Send for OutputStats
impl Sync for OutputStats
impl Unpin for OutputStats
impl UnsafeUnpin for OutputStats
impl UnwindSafe for OutputStats
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