テンソルフロー::作戦::未分類セグメント最大
#include <math_ops.h>
テンソルのセグメントに沿った最大値を計算します。
まとめ
セグメントの説明については、セグメンテーションに関するセクションを参照してください。
この演算子は、 (こちら)にある未ソートのセグメント合計演算子に似ています。セグメント全体の合計を計算する代わりに、次のように最大値を計算します。
\(output_i = {j...} data[j...]\) ここで、 max はsegment_ids[j...] == i
となるタプルj...
です。
指定されたセグメント ID i
の最大値が空の場合は、特定の数値タイプの可能な最小値を出力します ( output[i] = numeric_limits ::lowest()
output[i] = numeric_limits ::lowest()
。
指定されたセグメント ID i
が負の場合、対応する値は削除され、結果には含まれません。
例えば:
c = tf.constant([[1,2,3,4], [5,6,7,8], [4,3,2,1]]) tf.unsorted_segment_max(c, tf.constant([0, 1, 0]), num_segments=2) # ==> [[ 4, 3, 3, 4], # [5, 6, 7, 8]]
引数:
- スコープ:スコープオブジェクト
- segment_ids: 形状が
data.shape
のプレフィックスであるテンソル。
戻り値:
-
Output
: 最初のsegment_ids.rank
ディメンションは、サイズがnum_segments
の単一ディメンションに置き換えられます。
コンストラクターとデストラクター | |
---|---|
UnsortedSegmentMax (const :: tensorflow::Scope & scope, :: tensorflow::Input data, :: tensorflow::Input segment_ids, :: tensorflow::Input num_segments) |
パブリック属性 | |
---|---|
operation | |
output |
公共機能 | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
パブリック属性
手術
Operation operation
出力
::tensorflow::Output output
公共機能
未分類セグメント最大
UnsortedSegmentMax( const ::tensorflow::Scope & scope, ::tensorflow::Input data, ::tensorflow::Input segment_ids, ::tensorflow::Input num_segments )
ノード
::tensorflow::Node * node() const
演算子::tensorflow::入力
operator::tensorflow::Input() const
演算子::tensorflow::出力
operator::tensorflow::Output() const