当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.compat.v1.sparse_reduce_sum用法及代码示例


跨 SparseTensor 的维度计算元素的 tf.sparse.add。 (不推荐使用的参数)(不推荐使用的参数)

用法

tf.compat.v1.sparse_reduce_sum(
    sp_input, axis=None, keepdims=None, reduction_axes=None, keep_dims=None
)

参数

  • sp_input 要减少的 SparseTensor。应该是数字类型。
  • axis 要减小的尺寸;列表或标量。如果None(默认),减少所有维度。
  • keepdims 如果为真,则保留长度为 1 的缩减维度。
  • reduction_axes axis 的已弃用名称。
  • keep_dims keepdims 的已弃用别名。

返回

  • 减少的张量。

警告:不推荐使用某些参数:(keep_dims)。它们将在未来的版本中被删除。更新说明:keep_dims 已弃用,请改用 keepdims

警告:不推荐使用某些参数:(reduction_axes)。它们将在未来的版本中被删除。更新说明:reduction_axes 已弃用,请改用轴

这是按元素tf.sparse.add op 的归约操作。

此 Op 采用 SparseTensor 并且是 tf.reduce_sum() 的稀疏对应项。特别是,这个 Op 还返回一个密集的 Tensor 而不是稀疏的。

沿 reduction_axes 中给定的尺寸减少 sp_input 。除非 keepdims 为真,否则对于 reduction_axes 中的每个条目,张量的秩都会减少 1。如果 keepdims 为真,则保留缩减后的维度,长度为 1。

如果reduction_axes 没有条目,则减少所有维度,并返回具有单个元素的张量。此外,轴可以是负数,类似于 Python 中的索引规则。

例如:

'x' 代表 [[1, ?, 1]

[?, 1, ?]]

在哪里 ?是implicitly-zero。

x = tf.sparse.SparseTensor([[0, 0], [0, 2], [1, 1]], [1, 1, 1], [2, 3])
tf.sparse.reduce_sum(x)
<tf.Tensor:shape=(), dtype=int32, numpy=3>
tf.sparse.reduce_sum(x, 0)
<tf.Tensor:shape=(3,), dtype=int32, numpy=array([1, 1, 1], dtype=int32)>
tf.sparse.reduce_sum(x, 1)  # Can also use -1 as the axis
<tf.Tensor:shape=(2,), dtype=int32, numpy=array([2, 1], dtype=int32)>
tf.sparse.reduce_sum(x, 1, keepdims=True)
<tf.Tensor:shape=(2, 1), dtype=int32, numpy=
array([[2],
       [1]], dtype=int32)>
tf.sparse.reduce_sum(x, [0, 1])
<tf.Tensor:shape=(), dtype=int32, numpy=3>

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.sparse_reduce_sum。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。