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

    fn axis(&self) -> i32 { ... }
    fn padding(&self) -> bool { ... }
    fn padding_value(&self) -> i32 { ... }
}

Required Methods

Provided Methods

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

Implementors