image processing - How does the unpooling and deconvolution work in DeConvNet -
i have been trying understand how unpooling , deconvolution works in deconvnets.
unpooling
while during unpooling stage, activations restored locations of maximum activation selections, makes sense, remaining activations? remaining activations need restored or interpolated in way or filled zeros in unpooled map.
deconvolution
after convolution section (i.e., convolution layer, relu, pooling ), common have more 1 feature map output, treated input channels successive layers ( deconv.. ). how these feature maps combined in order achieve activation map same resolution original input?
1 unpooling.
in [original?] paper on unpooling, remaining activations zeroed.
2 deconvolution.
a deconvolutional layer transposed of corresponding conv layer. e.g. if conv layer's shape [height, width, numcolors, nummaps], deconv layer have shape [height, width, nummaps, numcolors]. weights of conv , deconv layers shared! (see this paper instance)
Comments
Post a Comment