Struct corgi::layers::dense::Dense[][src]

pub struct Dense { /* fields omitted */ }

A fully-connected neural network layer, storing the parameters of the layer.

Implementations

impl Dense[src]

pub fn new(
    input_size: usize,
    output_size: usize,
    initializer: Initializer,
    activation: Option<Activation>
) -> Dense
[src]

Constructs a new dense layer, with a given input, and output size.

Trait Implementations

impl Layer for Dense[src]

Auto Trait Implementations

impl !RefUnwindSafe for Dense

impl !Send for Dense

impl !Sync for Dense

impl Unpin for Dense

impl !UnwindSafe for Dense

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.