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

Required Associated Types§

Input to this layer of the neural network

Output from this layer of the neural network

Required Methods§

Forward propagation

Arguments
  • input - input
Errors

This function may return the following errors

Implementors§