Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 1.02 KB

ConcatChannelsLayer.md

File metadata and controls

35 lines (21 loc) · 1.02 KB

CConcatChannelsLayer Class

This class implements a layer that concatenates the input blobs along the Channels dimension.

Settings

This layer has no settings.

Trainable parameters

This layer has no trainable parameters.

Inputs

The layer accepts an arbitrary number of inputs, each containing a blob with data:

  • BatchLength, BatchWidth, ListSize, Height, Width, and Depth dimensions must be the same for all inputs.
  • The Channels dimension may vary.

Outputs

The layer has one output which contains a blob with the result of concatenation. The dimensions of the blob are:

  • BatchLength, BatchWidth, ListSize, Height, Width, and Depth are equal to the corresponding inputs' dimensions.
  • Channels is equal to the sum of Channels over all the inputs.