pub trait Forward<I, O> {
// Required method
fn forward(&self, input: &I) -> O;
}
Expand description
Trait defining the internal implementation of forward propagation of a neural network
pub trait Forward<I, O> {
// Required method
fn forward(&self, input: &I) -> O;
}
Trait defining the internal implementation of forward propagation of a neural network