pub trait Backward<X, Delta = X> {
type Elem;
// Required method
fn backward(&mut self, input: &X, delta: &Delta, gamma: Self::Elem);
}Expand description
The Backward trait establishes a common interface for completing a single backward
step in a neural network or machine learning model.