pub trait ReLULayerTraitConst: ActivationLayerTraitConst {
    // Required method
    fn as_raw_ReLULayer(&self) -> *const c_void;

    // Provided method
    fn negative_slope(&self) -> f32 { ... }
}
Expand description

Constant methods for crate::dnn::ReLULayer

Required Methods§

Provided Methods§

Implementors§