Trait Softmax

Source
pub trait Softmax {
    type Output;

    // Required method
    fn softmax(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn softmax(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<'a, A, S, D> Softmax for &'a ArrayBase<S, D>
where A: ComplexFloat + ScalarOperand, D: Dimension, S: Data<Elem = A>,

Source§

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

Implementors§