我找不到记录*
的位置。它似乎等同于tf.multiply
或tf.scalar_mul
。是这样吗?
答案 0 :(得分:4)
最可靠的文档是source code:
def _mul_dispatch(x, y, name=None):
"""Dispatches cwise mul for "Dense*Dense" and "Dense*Sparse"."""
is_tensor_y = isinstance(y, ops.Tensor)
if is_tensor_y:
return gen_math_ops._mul(x, y, name=name)
else:
assert isinstance(y, sparse_tensor.SparseTensor) # Case: Dense * Sparse.
new_vals = gen_sparse_ops.sparse_dense_cwise_mul(y.indices, y.values,
y.dense_shape, x, name)
return sparse_tensor.SparseTensor(y.indices, new_vals, y.dense_shape)
...
_OverrideBinaryOperatorHelper(_mul_dispatch, "mul")
这意味着__mul__
运算符重载,_mul_dispatch
。正如您所看到的,如果张量很稀疏,它会调用gen_math_ops._mul
(这是tf.multiply
的内部核心功能)或sparse_dense_cwise_mul
。
顺便说一下,tf.scalar_mul
只是scalar * x
(source code)的包装器,所以它基本上是相同的,但依赖是另一种方式。