Trait Sigmoid

Source
pub trait Sigmoid {
    type Output;

    // Required methods
    fn sigmoid(self) -> Self::Output;
    fn sigmoid_derivative(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn sigmoid(self) -> Self::Output

Source

fn sigmoid_derivative(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<A, S, D> Sigmoid for ArrayBase<S, D>
where A: Float + 'static, S: Data<Elem = A>, D: Dimension,

Implementors§