Struct candle_nn::layer_norm::LayerNormConfig  
source · pub struct LayerNormConfig {
    pub eps: f64,
    pub remove_mean: bool,
    pub affine: bool,
}Fields§
§eps: f64§remove_mean: boolWhether to remove the mean or not, the default is true and when set to false, this turns this layer into RmsNorm.
affine: boolTrait Implementations§
source§impl Clone for LayerNormConfig
 
impl Clone for LayerNormConfig
source§fn clone(&self) -> LayerNormConfig
 
fn clone(&self) -> LayerNormConfig
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 moresource§impl Debug for LayerNormConfig
 
impl Debug for LayerNormConfig
source§impl Default for LayerNormConfig
 
impl Default for LayerNormConfig
source§impl From<f64> for LayerNormConfig
 
impl From<f64> for LayerNormConfig
source§impl PartialEq for LayerNormConfig
 
impl PartialEq for LayerNormConfig
source§fn eq(&self, other: &LayerNormConfig) -> bool
 
fn eq(&self, other: &LayerNormConfig) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Copy for LayerNormConfig
impl StructuralPartialEq for LayerNormConfig
Auto Trait Implementations§
impl Freeze for LayerNormConfig
impl RefUnwindSafe for LayerNormConfig
impl Send for LayerNormConfig
impl Sync for LayerNormConfig
impl Unpin for LayerNormConfig
impl UnwindSafe for LayerNormConfig
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