def atrous_conv2d(value, filters, rate, name):
""" Returns the result of a convolution with holes from value and filters.
Do not use the tensorflow implementation because of issues with shape definition
of the result. The semantic is the same.
It uses only the "VALID" padding.
Warning: this implementation is PGNet specific. It's used only to define the last
convolutional layer and therefore depends on pgnet constants
"""
pad_top = 0
pad_bottom = 0
pad_left = 0
pad_right = 0
in_height = value.get_shape()[1].value + pad_top + pad_bottom
in_width = value.get_shape()[2].value + pad_left + pad_right
# More padding so that rate divides the height and width of the input.
pad_bottom_extra = (rate - in_height % rate) % rate
pad_right_extra = (rate - in_width % rate) % rate
# The paddings argument to space_to_batch includes both padding components.
space_to_batch_pad = ((pad_top, pad_bottom + pad_bottom_extra),
(pad_left, pad_right + pad_right_extra))
value = tf.space_to_batch(
input=value, paddings=space_to_batch_pad, block_size=rate)
value = tf.nn.conv2d(
input=value,
filter=filters,
strides=(1, LAST_CONV_OUTPUT_STRIDE, LAST_CONV_OUTPUT_STRIDE, 1),
padding="VALID",
name=name)
# The crops argument to batch_to_space is just the extra padding component.
batch_to_space_crop = ((0, pad_bottom_extra), (0, pad_right_extra))
value = tf.batch_to_space(
input=value, crops=batch_to_space_crop, block_size=rate)
return value
评论列表
文章目录