pub trait SoftmaxOps<T> {
    fn softmax(&self, inputs: &Matrix<'_, T>) -> Matrix<'_, T>;
    fn softmax_grad(
        &self,
        activated: &Matrix<'_, T>,
        grads: &Matrix<'_, T>
    ) -> Matrix<'_, T>; }

Required Methods

Implementations on Foreign Types

Implementors