Trait nncombinator::layer::ForwardAll
source · pub trait ForwardAll {
type Input: Debug;
type Output: Debug;
fn forward_all(
&self,
input: Self::Input
) -> Result<Self::Output, EvaluateError>;
}Expand description
Trait defining the implementation of forward propagation of neural networks