我试图从一篇研究论文中重新创建一个cnn,但我仍然是深入学习的新手。
我得到一个大小为32x32x7的3d补丁。我首先想要执行大小为3x3的卷积,其中包含32个功能和2个步幅。然后从该结果,我需要执行具有64个功能的3x3x4卷积和1的步幅。我不想要池或激活两个卷积之间的功能。 为什么我不能将第一次卷积的结果输入第二次?
import tensorflow as tf
sess = tf.InteractiveSession()
def conv3d(tempX, tempW):
return tf.nn.conv3d(tempX, tempW, strides=[2, 2, 2, 2, 2],
padding='SAME')
def conv3d_s1(tempX, tempW):
return tf.nn.conv3d(tempX, tempW, strides=[1, 1, 1, 1, 1],
padding='SAME')
def weight_variable(shape):
initial = tf.truncated_normal(shape, stddev=0.1)
return tf.Variable(initial)
x = tf.placeholder(tf.float32, shape=[None, 7168])
y_ = tf.placeholder(tf.float32, shape=[None, 3])
W = tf.Variable(tf.zeros([7168,3]))
#first convolution
W_conv1 = weight_variable([3, 3, 1, 1, 32])
x_image = tf.reshape(x, [-1, 32, 32, 7, 1])
h_conv1 = conv3d(x_image, W_conv1)
#second convolution
W_conv2 = weight_variable([3, 3, 4, 1, 64])
h_conv2 = conv3d_s1(h_conv1, W_conv2)
谢谢!
答案 0 :(得分:1)
在第一个conv3d
之后,你有一个形状为[None, 16, 16, 4, 32]
的张量,因此你必须在第二个[3, 3, 4, 32, 64]
中使用形状为conv3d_s1
的内核。