tf.nn.conv2d_transpose
我在正常工作方面遇到了问题。这是我正在尝试做的一个小复制:
import tensorflow as tf
import numpy as np
# Shape (2, 3, 3, 1) == (batch_sz, height, width, channels)
inp = tf.Variable(np.array(
[
[
[[1], [2], [3]],
[[2], [3], [4]],
[[7], [8], [9]]
],
[
[[3], [2], [1]],
[[2], [7], [2]],
[[3], [2], [0]]
]
], dtype = np.float32
))
# Shape (5, 5, 3, 1) == (kH, kW, out_channels, in_channels)
ker = tf.Variable(np.array(
[
[[[1],[2],[1]], [[2],[2],[2]], [[1],[2],[1]], [[2],[1],[1]], [[1],[1],[1]]],
[[[1],[2],[1]], [[2],[2],[2]], [[1],[2],[1]], [[2],[1],[1]], [[1],[1],[1]]],
[[[1],[2],[1]], [[2],[2],[2]], [[1],[2],[1]], [[2],[1],[1]], [[1],[1],[1]]],
[[[1],[2],[1]], [[2],[2],[2]], [[1],[2],[1]], [[2],[1],[1]], [[1],[1],[1]]],
[[[1],[2],[1]], [[2],[2],[2]], [[1],[2],[1]], [[2],[1],[1]], [[1],[1],[1]]]
], dtype = np.float32
))
out = tf.nn.conv2d_transpose(inp, ker, (2, 7, 7, 1), (1, 1, 1, 1), padding='SAME', data_format='NHWC', name='conv_transpose')
with tf.Session() as sess:
sess.run(tf.global_variables_initializer())
output, kernel, input = sess.run([out, ker, inp])
我想要的是使用三个 5x5x1 过滤器对 3x3x1 输入执行转置卷积。我希望输出的形状为 7x7x3 - 但相反,我收到一条错误消息:
InvalidArgumentError: Conv2DCustomBackpropInput: input and filter must have the same depth
[[Node: conv_transpose_2 = Conv2DBackpropInput[T=DT_FLOAT, data_format="NHWC", dilations=[1, 1, 1, 1], padding="SAME", strides=[1, 1, 1, 1], use_cudnn_on_gpu=true, _device="/job:localhost/replica:0/task:0/device:CPU:0"](conv_transpose_2/output_shape, Variable_21/read, Variable_20/read)]]
输入和过滤器深度不是都等于1吗?我看不出我做错了什么 - 任何提示都会非常感激。我特别想使用tf.nn.conv2d_transpose
而不是tf.layers.conv2d_transpose
.