Trait Softmax

Source
pub trait Softmax {
    type Output;

    // Required methods
    fn softmax(&self) -> Self::Output;
    fn softmax_derivative(&self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn softmax(&self) -> Self::Output

Source

fn softmax_derivative(&self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<A, S, D> Softmax for ArrayBase<S, D>
where A: Float + ScalarOperand, S: Data<Elem = A>, D: Dimension,

Implementors§