Deconvolution¶
- class
dragon.vm.caffe.core.layers.
Deconvolution
(layer_param)[source]¶ Apply the n-dimension deconvolution.
Examples:
layer { type: "Deconvolution" bottom: "conv5" top: "conv5/upscale" convolution_param { num_output: 256 bias_term: true kernel_size: 2 pad: 0 stride: 2 dilation: 1 group: 1 weight_filler { type: "xavier" } bias_filler { type: "constant" value: 0 } } }