Struct tch::nn::LinearConfig
source · pub struct LinearConfig {
pub ws_init: Init,
pub bs_init: Option<Init>,
pub bias: bool,
}
Expand description
Configuration for a linear layer.
Fields§
§ws_init: Init
§bs_init: Option<Init>
§bias: bool
Trait Implementations§
source§impl Clone for LinearConfig
impl Clone for LinearConfig
source§fn clone(&self) -> LinearConfig
fn clone(&self) -> LinearConfig
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 LinearConfig
impl Debug for LinearConfig
source§impl Default for LinearConfig
impl Default for LinearConfig
impl Copy for LinearConfig
Auto Trait Implementations§
impl RefUnwindSafe for LinearConfig
impl Send for LinearConfig
impl Sync for LinearConfig
impl Unpin for LinearConfig
impl UnwindSafe for LinearConfig
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