pub struct LayerNormConfig {
pub cudnn_enabled: bool,
pub eps: f64,
pub elementwise_affine: bool,
pub ws_init: Init,
pub bs_init: Init,
}Expand description
Layer-normalization config.
Fields§
§cudnn_enabled: bool§eps: f64§elementwise_affine: bool§ws_init: Init§bs_init: InitTrait Implementations§
Source§impl Clone for LayerNormConfig
impl Clone for LayerNormConfig
Source§fn clone(&self) -> LayerNormConfig
fn clone(&self) -> LayerNormConfig
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 LayerNormConfig
Source§impl Debug for LayerNormConfig
impl Debug 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 UnsafeUnpin 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