Function conv2D
Creates a convolutional layer typically found in a convnet used for image classification.
Layer conv2D
(
Layer input,
ulong outputChannels,
ulong[] filterDims,
Conv2DOptions opts = new Conv2DOptions
);Parameters
| Name | Description |
|---|---|
| input | The previous (i.e., input) layer. |
| outputChannels | The number of feature maps that this layer should produce. |
| filterDims | The size of the kernels that should be convolved with the inputs. |
| opts | Additional options, with sensible defaults. |
Returns
The new convolutional Layer.