我是TensorFlow的初学者,我试图将两个矩阵相乘,但我不断得到一个例外:
ValueError: Shapes TensorShape([Dimension(2)]) and TensorShape([Dimension(None), Dimension(None)]) must have the same rank
这是最小的示例代码:
data = np.array([0.1, 0.2])
x = tf.placeholder("float", shape=[2])
T1 = tf.Variable(tf.ones([2,2]))
l1 = tf.matmul(T1, x)
init = tf.initialize_all_variables()
with tf.Session() as sess:
sess.run(init)
sess.run(feed_dict={x: data}
令人困惑的是,以下非常相似的代码工作正常:
data = np.array([0.1, 0.2])
x = tf.placeholder("float", shape=[2])
T1 = tf.Variable(tf.ones([2,2]))
init = tf.initialize_all_variables()
with tf.Session() as sess:
sess.run(init)
sess.run(T1*x, feed_dict={x: data}
有谁可以指出问题是什么?我必须在这里遗漏一些明显的东西..
答案 0 :(得分:17)
tf.matmul()
op要求它的两个输入都是矩阵(即2-D张量) * ,并且不执行任何自动转换。您的T1
变量是一个矩阵,但您的x
占位符是长度为2的向量(即1-D张量),这是错误的来源。
相比之下,*
运算符(tf.multiply()
的别名)是广播元素乘法。它将通过跟随NumPy broadcasting rules将矢量参数转换为矩阵。
要使矩阵乘法有效,您可以要求x
是矩阵:
data = np.array([[0.1], [0.2]])
x = tf.placeholder(tf.float32, shape=[2, 1])
T1 = tf.Variable(tf.ones([2, 2]))
l1 = tf.matmul(T1, x)
init = tf.initialize_all_variables()
with tf.Session() as sess:
sess.run(init)
sess.run(l1, feed_dict={x: data})
...或者您可以使用tf.expand_dims()
操作将矢量转换为矩阵:
data = np.array([0.1, 0.2])
x = tf.placeholder(tf.float32, shape=[2])
T1 = tf.Variable(tf.ones([2, 2]))
l1 = tf.matmul(T1, tf.expand_dims(x, 1))
init = tf.initialize_all_variables()
with tf.Session() as sess:
# ...
* 当我首先发布答案时,这是真的,但现在tf.matmul()
也支持批量矩阵乘法。这要求两个参数都具有至少 2个维度。有关详细信息,请参阅the documentation。