pub trait ActivationFunction: Debug + Send + Sync {
    fn f(&self, previous_layer_kernel: (f64, f64, f64)) -> f64;
}

Required methods

Implementors