Tensorflow 权重矩阵秩错误

4
import tensorflow as tf
import numpy as np
import os
from PIL import Image
cur_dir = os.getcwd()

def modify_image(image):
   resized = tf.image.resize_images(image, 180, 180, 1)
   resized.set_shape([180,180,3])
   flipped_images = tf.image.flip_up_down(resized)
   return flipped_images

def read_image(filename_queue):
   reader = tf.WholeFileReader()
   key,value = reader.read(filename_queue)
   image = tf.image.decode_jpeg(value)
   return key,image

def inputs():
   filenames = ['standard_1.jpg', 'standard_2.jpg' ]
   filename_queue = tf.train.string_input_producer(filenames)
   filename,read_input = read_image(filename_queue)
   reshaped_image = modify_image(read_input)
   reshaped_image = tf.cast(reshaped_image, tf.float32)
   label=tf.constant([1])
   return reshaped_image,label

def weight_variable(shape):
 initial = tf.truncated_normal(shape, stddev=0.1)
 return tf.Variable(initial)

def bias_variable(shape):
 initial = tf.constant(0.1, shape=shape)
 return tf.Variable(initial)

def conv2d(x, W):
 return tf.nn.conv2d(x, W, strides=[1, 1, 1, 1], padding='SAME')

def max_pool_2x2(x):
 return tf.nn.max_pool(x, ksize=[1, 2, 2, 1],
                    strides=[1, 2, 2, 1], padding='SAME')



image,label = inputs()
W_conv1=weight_variable([5,5,3,32])
b_conv1 = bias_variable([32])
h_conv1 = tf.nn.relu(conv2d(image, W_conv1) + b_conv1)
h_pool1 = max_pool_2x2(h_conv1)


W_conv2=weights_variable([5,5,32,64])
b_conv2 = bias_variable([32])
h_conv2 = tf.nn.relu(conv2d(h_pool1, W_conv2) + b_conv2)
h_pool2 = max_pool_2x2(h_conv2)
W_fc1 = weight_variable([8 * 8 * 32, 512])
b_fc1 = bias_variable([512])

h_pool2_flat = tf.reshape(h_pool2, [-1, 8*8*32])
h_fc1 = tf.nn.relu(tf.matmul(h_pool2_flat, W_fc1) + b_fc1)
W_fc2 = weight_variable([512, 10])
b_fc2 = bias_variable([10])

y_conv=tf.nn.softmax(tf.matmul(h_fc1_drop, W_fc2) + b_fc2)

cross_entropy = -tf.reduce_sum(y_*tf.log(y_conv))   
train_step = tf.train.AdamOptimizer(1e-4).minimize(cross_entropy)
correct_prediction = tf.equal(tf.argmax(y_conv,1), tf.argmax(y_,1))
accuracy = tf.reduce_mean(tf.cast(correct_prediction, tf.float32)) 

init = tf.initialize_all_variables()
sess = tf.Session()
sess.run(init)
tf.train.start_queue_runners(sess=sess)
for i in xrange(100):
    img,label = sess.run(image)
    print (label)
    train_step.run({img, label, 0.5})

当我运行代码时,出现错误。
"ValueError: ShapesTensorShape([Dimension(180),Dimension(180),Dimension(3)]) and TensorShape([Dimension(None), Dimension(None), Dimension(None), Dimension(None)]) must have the same rank"

但是,权重已经被初始化,即使如此,它们仍然显示为空张量。文件和标签被正确读取并传输。第一个卷积层具有5x5窗口,深度为3,并且我希望有32个这样的5X5滤波器。因此,W_conv1的形状为[5,5,3,32]。

2个回答

2
“inputs()”函数返回一个形状为“180 x 180 x 3”的张量,但是tf.nn.conv2d()需要一个形状为“batch_size x height x width x num_channels”的四维张量。
etarion所建议的, 您可以通过重新调整“image”张量(例如使用“image = tf.expand_dims(image, 0)”)来实现这一点。但是,如果您正在训练神经网络,则可能希望批处理输入。一种方法是使用tf.train.batch()
image, label = inputs()

# Set batch_size to the largest value that works for your configuration.
image_batch, label_batch = tf.train.batch([image, label], batch_size=32)

然后使用`image_batch`替换原来用的`image`,使用`label_batch`替换原来用的`label`。

感谢您的快速回复,我尝试使用train.batch()方法,但没有成功。我有以下疑问,首先,如果train.batch()方法输出张量列表,那么为什么我们要将其分别赋值给image_batch和label_batch。为什么不能只使用image_batch[0或1]来分别访问它们。其次,在训练期间将image_batch和label_batch传递到它们各自的占位符时,我遇到了以下错误“'Operation' object is not callable”。 - Tanvir
  1. 执行 image_batch, label_batch = tf.train.batch(...) 等同于 batches = tf.train.batch(...); image_batch = batches[0]; label_batch = batches[1]
  2. 我不确定你在这里做了什么导致出现了那个错误 - 你可能需要提出另一个问题(然而,你无法将 image_batchlabel_batch 作为 feed values 传递,因为它们是符号张量;目前只支持传递像 NumPy 数组这样的具体值。相反,你应该直接使用 image_batchlabel_batch 作为操作的参数,而不是通过占位符进行传递)。
- mrry
我已经提出了一个单独的问题。你能否请查看一下?http://stackoverflow.com/questions/35691099/tensorflow-convolutonal-neural-network-with-custom-data-set @mrry - Tanvir

0

看起来输入返回的是一个3D张量,而conv2d期望的是一个4D张量(第一维是批次索引)- 如果你只想运行一张图像,你需要先将其重新整形为[1,180,180,3]。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接