我有两个使用tf.sparse_placeholder
. 我需要在两个矩阵之间执行逐元素乘法。但我在tensorflow
. 最相关的函数是tf.sparse_tensor_dense_matmul
,但这是一个在一个稀疏矩阵和一个密集矩阵之间执行矩阵乘法的函数。
我希望找到的是在两个稀疏矩阵之间执行元素乘法。中是否有任何实现tensorflow
?
我展示了以下在密集矩阵之间执行乘法的示例。我期待看到解决方案。
import tensorflow as tf
import numpy as np
# Element-wise multiplication, two dense matrices
A = tf.placeholder(tf.float32, shape=(100, 100))
B = tf.placeholder(tf.float32, shape=(100, 100))
C = tf.multiply(A, B)
sess = tf.InteractiveSession()
RandA = np.random.rand(100, 100)
RandB = np.random.rand(100, 100)
print sess.run(C, feed_dict={A: RandA, B: RandB})
# matrix multiplication, A is sparse and B is dense
A = tf.sparse_placeholder(tf.float32)
B = tf.placeholder(tf.float32, shape=(5,5))
C = tf.sparse_tensor_dense_matmul(A, B)
sess = tf.InteractiveSession()
indices = np.array([[3, 2], [1, 2]], dtype=np.int64)
values = np.array([1.0, 2.0], dtype=np.float32)
shape = np.array([5,5], dtype=np.int64)
Sparse_A = tf.SparseTensorValue(indices, values, shape)
RandB = np.ones((5, 5))
print sess.run(C, feed_dict={A: Sparse_A, B: RandB})
非常感谢!!!