Convolution¶
- class
dragon.vm.caffe.core.layers.
Convolution
(layer_param)[source]¶ Apply the n-dimension convolution.
Examples:
layer { type: "Convolution" bottom: "input" top: "conv1" convolution_param { num_output: 32 bias_term: true kernel_size: 3 pad: 1 stride: 1 dilation: 1 group: 1 weight_filler { type: "xavier" } bias_filler { type: "constant" value: 0 } } }