pub trait BatchForwardBase: ForwardAll {
    type BatchInput: Debug;
    type BatchOutput: Debug;
}
Expand description

Trait defining the relevant type of implementation of forward propagation of neural networks by batch processing.

Required Associated Types

Input to this layer of the neural network for batch execution

Output from this layer of the neural network for batch execution

Implementors