Trait nncombinator::layer::BatchForwardBase
source · [−]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