跨 SparseTensor 的维度计算元素的 tf.sparse.maximum
。
用法
tf.sparse.reduce_max(
sp_input, axis=None, keepdims=None, output_is_sparse=False, name=None
)
参数
-
sp_input
要减少的 SparseTensor。应该是数字类型。 -
axis
要减小的尺寸;列表或标量。如果None
(默认),减少所有维度。 -
keepdims
如果为真,则保留长度为 1 的缩减维度。 -
output_is_sparse
如果为真,则返回SparseTensor
而不是密集的Tensor
(默认值)。 -
name
操作的名称(可选)。
返回
-
如果
output_is_sparse
为 True,则减少的张量或减少的 SparseTensor。
这是按元素tf.sparse.maximum
op 的归约操作。
此 Op 采用 SparseTensor 并且是 tf.reduce_max()
的稀疏对应项。特别是,如果 output_is_sparse
是 False
,则此 Op 还返回密集的 Tensor
,如果 output_is_sparse
是 True
,则返回 SparseTensor
。
注意:该函数没有定义梯度,因此不能用于需要梯度下降的训练模型。
沿 axis
中给定的尺寸减少 sp_input
。除非 keepdims
为真,否则对于 axis
中的每个条目,张量的秩都会减少 1。如果 keepdims
为真,则保留缩减后的维度,长度为 1。
如果axis
没有条目,则减少所有维度,并返回具有单个元素的张量。此外,轴可以是负数,类似于 Python 中的索引规则。
sp_input
中未定义的值不参与减少最大值,而不是隐式假设为 0 - 因此它可以为稀疏的 axis
返回负值。但是,如果 axis
中没有值,它将减少到 0。请参见下面的第二个示例。
例如:
'x' 代表 [[1, ?, 2]
[?, 3, ?]]
在哪里 ?是implicitly-zero。
x = tf.sparse.SparseTensor([[0, 0], [0, 2], [1, 1]], [1, 2, 3], [2, 3])
tf.sparse.reduce_max(x)
<tf.Tensor:shape=(), dtype=int32, numpy=3>
tf.sparse.reduce_max(x, 0)
<tf.Tensor:shape=(3,), dtype=int32, numpy=array([1, 3, 2], dtype=int32)>
tf.sparse.reduce_max(x, 1)
<tf.Tensor:shape=(2,), dtype=int32, numpy=array([2, 3], dtype=int32)>
tf.sparse.reduce_max(x, 1, keepdims=True)
<tf.Tensor:shape=(2, 1), dtype=int32, numpy=
array([[2],
[3]], dtype=int32)>
tf.sparse.reduce_max(x, [0, 1])
<tf.Tensor:shape=(), dtype=int32, numpy=3>
'y' 代表 [[-7, ?]
[4、3]
[ ?, ?]
y = tf.sparse.SparseTensor([[0, 0,], [1, 0], [1, 1]], [-7, 4, 3],
[3, 2])
tf.sparse.reduce_max(y, 1)
<tf.Tensor:shape=(3,), dtype=int32, numpy=array([-7, 4, 0], dtype=int32)>
相关用法
- Python tf.sparse.reduce_sum用法及代码示例
- Python tf.sparse.retain用法及代码示例
- Python tf.sparse.reorder用法及代码示例
- Python tf.sparse.reshape用法及代码示例
- Python tf.sparse.cross用法及代码示例
- Python tf.sparse.mask用法及代码示例
- Python tf.sparse.split用法及代码示例
- Python tf.sparse.to_dense用法及代码示例
- Python tf.sparse.expand_dims用法及代码示例
- Python tf.sparse.maximum用法及代码示例
- Python tf.sparse.bincount用法及代码示例
- Python tf.sparse.concat用法及代码示例
- Python tf.sparse.transpose用法及代码示例
- Python tf.sparse.softmax用法及代码示例
- Python tf.sparse.to_indicator用法及代码示例
- Python tf.sparse.from_dense用法及代码示例
- Python tf.sparse.minimum用法及代码示例
- Python tf.sparse.segment_sum用法及代码示例
- Python tf.sparse.fill_empty_rows用法及代码示例
- Python tf.sparse.slice用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.sparse.reduce_max。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。