pub trait Rho<Rhs = Self> {
type Output;
// Required method
fn rho(&self, rhs: Rhs) -> Self::Output;
}Expand description
The Rho trait enables the definition of new activation functions often implemented
as fieldless structs.
pub trait Rho<Rhs = Self> {
type Output;
// Required method
fn rho(&self, rhs: Rhs) -> Self::Output;
}The Rho trait enables the definition of new activation functions often implemented
as fieldless structs.