【发布时间】:2016-04-15 23:25:09
【问题描述】:
我想将一些由另一个网络训练的权重转移到 TensorFlow,这些权重存储在单个向量中,如下所示:
[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18]
通过使用 numpy,我可以将其重塑为两个 3 x 3 过滤器,如下所示:
1 2 3 9 10 11
3 4 5 12 13 14
6 7 8 15 16 17
因此,我的过滤器的形状是(1,2,3,3)。但是在TensorFlow中,filters的shape是(3,3,2,1):
tf_weights = tf.Variable(tf.random_normal([3,3,2,1]))
将 tf_weights 重塑为预期形状后,权重变得一团糟,无法得到预期的卷积结果。
具体来说,当图像或滤镜的形状为[number,channel,size,size]时,我写了一个卷积函数,它给出了正确的答案,但是速度太慢了:
def convol(images,weights,biases,stride):
"""
Args:
images:input images or features, 4-D tensor
weights:weights, 4-D tensor
biases:biases, 1-D tensor
stride:stride, a float number
Returns:
conv_feature: convolved feature map
"""
image_num = images.shape[0] #the number of input images or feature maps
channel = images.shape[1] #channels of an image,images's shape should be like [n,c,h,w]
weight_num = weights.shape[0] #number of weights, weights' shape should be like [n,c,size,size]
ksize = weights.shape[2]
h = images.shape[2]
w = images.shape[3]
out_h = (h+np.floor(ksize/2)*2-ksize)/2+1
out_w = out_h
conv_features = np.zeros([image_num,weight_num,out_h,out_w])
for i in range(image_num):
image = images[i,...,...,...]
for j in range(weight_num):
sum_convol_feature = np.zeros([out_h,out_w])
for c in range(channel):
#extract a single channel image
channel_image = image[c,...,...]
#pad the image
padded_image = im_pad(channel_image,ksize/2)
#transform this image to a vector
im_col = im2col(padded_image,ksize,stride)
weight = weights[j,c,...,...]
weight_col = np.reshape(weight,[-1])
mul = np.dot(im_col,weight_col)
convol_feature = np.reshape(mul,[out_h,out_w])
sum_convol_feature = sum_convol_feature + convol_feature
conv_features[i,j,...,...] = sum_convol_feature + biases[j]
return conv_features
相反,通过像这样使用 tensorflow 的 conv2d:
img = np.zeros([1,3,224,224])
img = img - 1
img = np.rollaxis(img, 1, 4)
weight_array = googleNet.layers[1].weights
weight_array = np.reshape(weight_array,[64,3,7,7])
biases_array = googleNet.layers[1].biases
tf_weight = tf.Variable(weight_array)
tf_img = tf.Variable(img)
tf_img = tf.cast(tf_img,tf.float32)
tf_biases = tf.Variable(biases_array)
conv_feature = tf.nn.bias_add(tf.nn.conv2d(tf_img,tf_weight,strides=[1,2,2,1],padding='SAME'),tf_biases)
sess = tf.Session()
sess.run(tf.initialize_all_variables())
feautre = sess.run(conv_feature)
我得到的特征图是错误的。
【问题讨论】:
-
恐怕您的编辑使您的问题非常混乱。我不完全理解您要做什么,而且这里的变量太多。您可以尝试制作minimal reproducible example 吗?
标签: python numpy tensorflow