pub trait ShrinkLayerTrait: ActivationLayerTrait + ShrinkLayerTraitConst {
    fn as_raw_mut_ShrinkLayer(&mut self) -> *mut c_void;

    fn set_bias(&mut self, val: f32) { ... }
    fn set_lambd(&mut self, val: f32) { ... }
}

Required Methods

Provided Methods

Implementors