python - 如何在不 reshape 的情况下在 tensorflow 中将向量和矩阵相乘?

标签 python tensorflow matrix-multiplication

这个:

import numpy as np
a = np.array([1, 2, 1])
w = np.array([[.5, .6], [.7, .8], [.7, .8]])

print(np.dot(a, w))
# [ 2.6  3. ] # plain nice old matrix multiplication n x (n, m) -> m

import tensorflow as tf

a = tf.constant(a, dtype=tf.float64)
w = tf.constant(w)

with tf.Session() as sess:
    print(tf.matmul(a, w).eval())

结果:

C:\_\Python35\python.exe C:/Users/MrD/.PyCharm2017.1/config/scratches/scratch_31.py
[ 2.6  3. ]
# bunch of errors in windows...
Traceback (most recent call last):
  File "C:\_\Python35\lib\site-packages\tensorflow\python\framework\common_shapes.py", line 671, in _call_cpp_shape_fn_impl
    input_tensors_as_shapes, status)
  File "C:\_\Python35\lib\contextlib.py", line 66, in __exit__
    next(self.gen)
  File "C:\_\Python35\lib\site-packages\tensorflow\python\framework\errors_impl.py", line 466, in raise_exception_on_not_ok_status
    pywrap_tensorflow.TF_GetCode(status))
tensorflow.python.framework.errors_impl.InvalidArgumentError: Shape must be rank 2 but is rank 1 for 'MatMul' (op: 'MatMul') with input shapes: [3], [3,2].

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:/Users/MrD/.PyCharm2017.1/config/scratches/scratch_31.py", line 14, in <module>
    print(tf.matmul(a, w).eval())
  File "C:\_\Python35\lib\site-packages\tensorflow\python\ops\math_ops.py", line 1765, in matmul
    a, b, transpose_a=transpose_a, transpose_b=transpose_b, name=name)
  File "C:\_\Python35\lib\site-packages\tensorflow\python\ops\gen_math_ops.py", line 1454, in _mat_mul
    transpose_b=transpose_b, name=name)
  File "C:\_\Python35\lib\site-packages\tensorflow\python\framework\op_def_library.py", line 763, in apply_op
    op_def=op_def)
  File "C:\_\Python35\lib\site-packages\tensorflow\python\framework\ops.py", line 2329, in create_op
    set_shapes_for_outputs(ret)
  File "C:\_\Python35\lib\site-packages\tensorflow\python\framework\ops.py", line 1717, in set_shapes_for_outputs
    shapes = shape_func(op)
  File "C:\_\Python35\lib\site-packages\tensorflow\python\framework\ops.py", line 1667, in call_with_requiring
    return call_cpp_shape_fn(op, require_shape_fn=True)
  File "C:\_\Python35\lib\site-packages\tensorflow\python\framework\common_shapes.py", line 610, in call_cpp_shape_fn
    debug_python_shape_fn, require_shape_fn)
  File "C:\_\Python35\lib\site-packages\tensorflow\python\framework\common_shapes.py", line 676, in _call_cpp_shape_fn_impl
    raise ValueError(err.message)
ValueError: Shape must be rank 2 but is rank 1 for 'MatMul' (op: 'MatMul') with input shapes: [3], [3,2].

Process finished with exit code 1

(不确定为什么在其处理中会引发相同的异常)

Tensorflow exception with matmul 中建议的解决方案正在将向量 reshape 为矩阵,但这会导致不必要的复杂代码 - 是否仍然没有其他方法可以将向量与矩阵相乘?

顺便使用带有默认参数的expand_dims(如上面链接中所建议的)会引发ValueError - docs 中未提及并违背了使用默认参数的目的。

最佳答案

tf.einsum让您能够以简洁直观的形式准确地执行您需要的操作:

with tf.Session() as sess:
    print(tf.einsum('n,nm->m', a, w).eval())
    # [ 2.6  3. ] 

您甚至可以明确地写下您的评论 n x (n, m) -> m。在我看来,它更具可读性和直观性。

我最喜欢的用例是当您想要将一批矩阵与权重向量相乘时:

n_in = 10
n_step = 6
input = tf.placeholder(dtype=tf.float32, shape=(None, n_step, n_in))
weights = tf.Variable(tf.truncated_normal((n_in, 1), stddev=1.0/np.sqrt(n_in)))
Y_predict = tf.einsum('ijk,kl->ijl', input, weights)
print(Y_predict.get_shape())
# (?, 6, 1)

因此,您可以轻松地将所有批处理的权重相乘,而无需转换或重复。您不能像其他答案那样通过扩展尺寸来做到这一点。所以你避免了 tf.matmul批处理和其他外部尺寸具有匹配尺寸的要求:

The inputs must, following any transpositions, be tensors of rank >= 2 where the inner 2 dimensions specify valid matrix multiplication arguments, and any further outer dimensions match.

关于python - 如何在不 reshape 的情况下在 tensorflow 中将向量和矩阵相乘?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43284897/

相关文章:

tensorflow - 使用tf.tile复制张量N次

python - 将 TensorFlow 神经网络编码到 tkinter GUI 中

python - 神经网络在一个时代后变平

octave - GNU Octave 矩阵除法是如何工作的?出现意想不到的行为。

python - 如何在 Django 1.5 中覆盖用户模型的 __unicode__ 方法

python - Keras:如何重置优化器状态?

python - OpenShift v3 上的 Pandas

python - 使用 3D numpy 数组的直观方法

java - 为什么减少循环次数并不能加快程序速度?

python - 替换 Pandas 数据框中的特定列值