opensrdk_kernel_method/neural_network/
mod.rs

1use std::fmt::Debug;
2
3pub mod deep_neural_network;
4pub mod relu;
5
6pub trait ActivationFunction: Debug + Send + Sync {
7    fn f(&self, previous_layer_kernel: (f64, f64, f64)) -> f64;
8}