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

    // Provided methods
    fn alpha(&self) -> f32 { ... }
    fn gamma(&self) -> f32 { ... }
}
Expand description

Constant methods for crate::dnn::SeluLayer

Required Methods§

Provided Methods§

source

fn alpha(&self) -> f32

source

fn gamma(&self) -> f32

Implementors§