Trait nncombinator::layer::BatchPreTrain
source · pub trait BatchPreTrain<U>: BatchPreTrainBase<U> + BatchForwardBase + BatchForwardwhere
U: UnitValue<U>,{
// Required method
fn batch_pre_train(
&self,
input: Self::BatchInput
) -> Result<Self::BatchOutStack, TrainingError>;
}Expand description
Trait that defines an implementation that calculates the results of forward propagation prior to the error back propagation process of a neural network through batch processing.