當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。