Concept

Caffe: Convolution Layer Sample

  1. Layer type Convolution

2.Input n * c_i * h_i * w_i

3.Output n * c_o * h_o * w_o, where h_o = (h_i + 2 * pad_h - kernel_h) / stride_h + 1 and w_o likewise.

  1. The Convolution layer convolves the input image with a set of learnable filters, each producing one feature map in the output image.
Image 0

0

1

Updated 2021-03-01

Tags

Data Science