[][src]Struct dumbnet::layers::OutputLayer

pub struct OutputLayer<A: Activation, Neurons: NL<Input>, Input: AL> { /* fields omitted */ }

The final layer of a Network.

Methods

impl<A: Activation, Neurons: NL<Input>, Input: AL> OutputLayer<A, Neurons, Input>[src]

pub fn new() -> Self[src]

Trait Implementations

impl<A: Clone + Activation, Neurons: Clone + NL<Input>, Input: Clone + AL> Clone for OutputLayer<A, Neurons, Input>[src]

impl<A: Debug + Activation, Neurons: Debug + NL<Input>, Input: Debug + AL> Debug for OutputLayer<A, Neurons, Input>[src]

impl<'de, A: Activation, Neurons: NL<Input>, Input: AL> Deserialize<'de> for OutputLayer<A, Neurons, Input> where
    Neurons: NL<Input>,
    Input: AL, 
[src]

impl<A: Activation, Input: AL, Neurons: NL<Input>> Layer<Input, Neurons, Neurons, A> for OutputLayer<A, Neurons, Input>[src]

impl<A: Activation, Neurons: NL<Input>, Input: AL> Serialize for OutputLayer<A, Neurons, Input> where
    Neurons: NL<Input>,
    Input: AL, 
[src]

Auto Trait Implementations

impl<A, Neurons, Input> RefUnwindSafe for OutputLayer<A, Neurons, Input> where
    A: RefUnwindSafe,
    <Neurons as ArrayLength<f32>>::ArrayType: RefUnwindSafe,
    <Neurons as ArrayLength<GenericArray<f32, Input>>>::ArrayType: RefUnwindSafe

impl<A, Neurons, Input> Send for OutputLayer<A, Neurons, Input> where
    A: Send

impl<A, Neurons, Input> Sync for OutputLayer<A, Neurons, Input> where
    A: Sync

impl<A, Neurons, Input> Unpin for OutputLayer<A, Neurons, Input> where
    A: Unpin,
    <Neurons as ArrayLength<f32>>::ArrayType: Unpin,
    <Neurons as ArrayLength<GenericArray<f32, Input>>>::ArrayType: Unpin

impl<A, Neurons, Input> UnwindSafe for OutputLayer<A, Neurons, Input> where
    A: UnwindSafe,
    <Neurons as ArrayLength<f32>>::ArrayType: UnwindSafe,
    <Neurons as ArrayLength<GenericArray<f32, Input>>>::ArrayType: UnwindSafe

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,