pub trait Backward {
type Output;
// Required method
fn backward(&self) -> Self::Output;
}Expand description
Backward describes an object capable of backward propagation.
pub trait Backward {
type Output;
// Required method
fn backward(&self) -> Self::Output;
}Backward describes an object capable of backward propagation.