Trait concision_core::traits::train::Backward

source ·
pub trait Backward {
    type Output;

    // Required method
    fn backward(&self) -> Self::Output;
}
Expand description

Backward describes an object capable of backward propagation.

Required Associated Types§

Required Methods§

source

fn backward(&self) -> Self::Output

Implementations on Foreign Types§

source§

impl<S> Backward for Option<S>
where S: Backward,

§

type Output = Option<<S as Backward>::Output>

source§

fn backward(&self) -> Self::Output

Implementors§