pub trait Backward<X, Delta = X> {
type Elem;
type Output;
// Required method
fn backward(
&mut self,
input: &X,
delta: &Delta,
gamma: Self::Elem,
) -> Result<Self::Output>;
}
Expand description
Backward propagate a delta through the system;