W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
sparse_reduce_max(
sp_input,
axis=None,
keep_dims=False,
reduction_axes=None
)
定義在:tensorflow/python/ops/sparse_ops.py.
計算 SparseTensor 各個維度上元素的最大值.
這個操作需要一個 SparseTensor,并且是 tf.reduce_max() 的稀疏對應(yīng).特別是,這個操作也返回一個稠密的 Tensor,而不是一個稀疏的.
沿著在 reduction_axes 中給定的維度減少 sp_input.除非 keep_dims 為真,否則 reduction_axes 中的每個條目的張量的秩都減少了1.如果 keep_dims 屬實,減小的維度將保留為1.
如果 reduction_axes 沒有條目,則會減少所有維度,并返回具有單個元素的張量.另外,坐標軸可以是負值,類似于 Python 中的索引規(guī)則.
例如:
# 'x' represents [[1, ?, 2]
# [?, 3, ?]]
# where ? is implicitly-zero.
tf.sparse_reduce_max(x) ==> 3
tf.sparse_reduce_max(x, 0) ==> [1, 3, 2]
tf.sparse_reduce_max(x, 1) ==> [2, 3] # Can also use -1 as the axis.
tf.sparse_reduce_max(x, 1, keep_dims=True) ==> [[2], [3]]
tf.sparse_reduce_max(x, [0, 1]) ==> 3
函數(shù)參數(shù):
函數(shù)返回值:
tf.sparse_reduce_max 函數(shù)返回減少的張量.
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: