pub struct LinearConfig {
pub output_size: usize,
}
Expand description
Specifies configuration parameters for a Linear Layer.
Fields§
§output_size: usize
The number of output values
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
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