pub struct StandardizeState {
pub center: f64,
pub scale: f64,
}Expand description
State for Standardize.
Fields§
§center: f64Training target mean.
scale: f64Training target root-mean-square deviation.
Trait Implementations§
Source§impl Clone for StandardizeState
impl Clone for StandardizeState
Source§fn clone(&self) -> StandardizeState
fn clone(&self) -> StandardizeState
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 moreimpl Copy for StandardizeState
Source§impl Debug for StandardizeState
impl Debug for StandardizeState
Source§impl PartialEq for StandardizeState
impl PartialEq for StandardizeState
Source§fn eq(&self, other: &StandardizeState) -> bool
fn eq(&self, other: &StandardizeState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StandardizeState
Auto Trait Implementations§
impl Freeze for StandardizeState
impl RefUnwindSafe for StandardizeState
impl Send for StandardizeState
impl Sync for StandardizeState
impl Unpin for StandardizeState
impl UnsafeUnpin for StandardizeState
impl UnwindSafe for StandardizeState
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