我在tensorflow
中有两个张量,一个是稀疏张量,称为A
,另一个是张量,调用B
。我想计算A
和B
之间的平方误差。
当我表演时:
import tensorflow as tf
tf.reduce_sum(tf.square( B - A))
然后我收到一个错误说:
TypeError: Expected float32 passed to parameter 'y' of op 'Sub', got <tensorflow.python.framework.sparse_tensor.SparseTensor object at 0x7f42a10bdf90> of type 'SparseTensor' instead.
然后我测试了:
tf.reduce_sum(tf.sparse_add(layer_Bi_12, - Bi))
错误说:
TypeError: bad operand type for unary -: 'SparseTensor'
然后我测试了:
tf.reduce_sum(tf.square(tf.sparse_add(layer_Bi_12, - Bi)))
错误说:
TypeError: bad operand type for unary -: 'SparseTensor'
我怎样才能做到这一点?
答案 0 :(得分:1)
您无法添加稀疏和密集的张量。您需要先将稀疏张量转换为密集张量,例如
dense_A = tf.sparse_tensor_to_dense(A)
tf.reduce_sum(tf.square(B - dense_A))