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§
Sourcetype BatchInput: Debug
type BatchInput: Debug
Input to this layer of the neural network for batch execution
Sourcetype BatchOutput: Debug
type BatchOutput: Debug
Output from this layer of the neural network for batch execution