pub trait ForwardAll {
type Input: Debug;
type Output: Debug + 'static;
// Required method
fn forward_all(
&self,
input: Self::Input,
) -> Result<Self::Output, EvaluateError>;
}Expand description
Trait defining the implementation of forward propagation of neural networks