conv2d 公式,使用公式的Conv2D转置输出形状

I get [-1,256,256,3] as the output shape using the transpose layers shown below. I print the output shape. My question is specifically about the height and width which are both 256. The channels seem to be the number of filters from the last transpose layer in my code.

I assumed rather simplistically that the formula is this. I read other threads.

H = (H1 - 1)*stride + HF - 2*padding

But when I calculate I don't seem to get that output. I think I may be missing the padding calculation

How much padding is added by 'SAME' ?

My code is this.

linear = tf.layers.dense(z, 512 * 8 * 8)

linear = tf.contrib.layers.batch_norm(linear, is_training=is_training,decay=0.88)

conv = tf.reshape(linear, (-1, 128, 128, 1))

out = tf.layers.conv2d_transpose(conv, 64,kernel_size=4,strides=2, padding='SAME')

out = tf.layers.dropout(out, keep_prob)

out = tf.contrib.layers.batch_norm(out, is_training=is_training,decay=0.88)

out = tf.nn.leaky_relu(out)

out = tf.layers.conv2d_transpose(out, 128,kernel_size=4,strides=1, padding='SAME')

out = tf.layers.dropout(out, keep_prob)

out = tf.contrib.layers.batch_norm(out, is_training=is_training,decay=0.88)

out = tf.layers.conv2d_transpose(out, 3,kernel_size=4,strides=1, padding='SAME')

print( out.get_shape())

解决方案

Regarding 'SAME' padding, the Convolution documentation offers some detailed explanations (further details in those notes). Especially, when using 'SAME' padding, the output shape is defined so:

# for `tf.layers.conv2d` with `SAME` padding:

out_height = ceil(float(in_height) / float(strides[1]))

out_width = ceil(float(in_width) / float(strides[2]))

In this case, the output shape depends only on the input shape and stride. The padding size is computed from there to fill this shape requirement (while, with 'VALID' padding, it's the output shape which depends on the padding size)

Now for transposed convolutions... As this operation is the backward counterpart of a normal convolution (its gradient), it means that the output shape of a normal convolution corresponds to the input shape to its counterpart transposed operation. In other words, while the output shape of tf.layers.conv2d() is divided by the stride, the output shape

of tf.layers.conv2d_transpose() is multiplied by it:

# for `tf.layers.conv2d_transpose()` with `SAME` padding:

out_height = in_height * strides[1]

out_width = in_width * strides[2]

But once again, the padding size is calculated to obtain this output shape, not the other way around (for SAME padding). Since the normal relation between those values (i.e. the relation you found) is:

# for `tf.layers.conv2d_transpose()` with given padding:

out_height = strides[1] * (in_height - 1) + kernel_size[0] - 2 * padding_height

out_width = strides[2] * (in_width - 1) + kernel_size[1] - 2 * padding_width

Rearranging the equations we get

padding_height = [strides[1] * (in_height - 1) + kernel_size[0] - out_height] / 2

padding_width = [[strides[2] * (in_width - 1) + kernel_size[1] - out_width] / 2

note: if e.g. 2 * padding_height is an odd number, then padding_height_top = floor(padding_height); and padding_height_bottom = ceil(padding_height) (same for resp. padding_width, padding_width_left and padding_width_right)

Replacing out_height and out_width with their expressions, and using your values (for the 1st transposed convolution):

padding = [2 * (128 - 1) + 4 - (128 * 2)] / 2 = 1

You thus have a padding of 1 added on every side of your data, in order to obtain the output dim out_dim = in_dim * stride = strides * (in_dim - 1) + kernel_size - 2 * padding = 256

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值