Trait ApplyGradient

Source
pub trait ApplyGradient {
    type Gradient;

    // Required method
    fn apply_gradient(&mut self, gradient: &Self::Gradient);
}

Required Associated Types§

Required Methods§

Source

fn apply_gradient(&mut self, gradient: &Self::Gradient)

Implementors§