pub trait ConcatLayerTraitConst: LayerTraitConst {
    // Required method
    fn as_raw_ConcatLayer(&self) -> *const c_void;

    // Provided methods
    fn axis(&self) -> i32 { ... }
    fn padding(&self) -> bool { ... }
    fn padding_value(&self) -> i32 { ... }
}
Expand description

Constant methods for crate::dnn::ConcatLayer

Required Methods§

Provided Methods§

source

fn axis(&self) -> i32

source

fn padding(&self) -> bool

Add zero padding in case of concatenation of blobs with different spatial sizes.

Details: https://github.com/torch/nn/blob/master/doc/containers.md#depthconcat

source

fn padding_value(&self) -> i32

Implementors§