pub trait ForwardDiff<U>: PreTrain<U>where
U: UnitValue<U>,{
// Required method
fn forward_diff(
&self,
input: Self::Input,
) -> Result<Self::OutStack, EvaluateError>;
}Expand description
Trait that defines the function of differential application of inputs in the process of forward propagation to neural networks.