pub trait SoftmaxAxis: SoftmaxActivation {
// Required method
fn softmax_axis(self, axis: usize) -> Self::Output;
}Expand description
Compute the softmax activation along a specified axis.
Required Methods§
fn softmax_axis(self, axis: usize) -> Self::Output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".