テンソルフロー::作戦::未分類セグメント製品
#include <math_ops.h>
テンソルのセグメントに沿って積を計算します。
まとめ
セグメントの説明については、セグメンテーションに関するセクションを参照してください。
この演算子は、 (こちら)にある未ソートのセグメント合計演算子に似ています。セグメントの合計を計算する代わりに、セグメントに属するすべてのエントリの積を次のように計算します。
\(output_i = {j...} data[j...]\) ここで、積はタプルj...
上にあり、 segment_ids[j...] == i
になります。
例えば:
c = tf.constant([[1,2,3,4], [5,6,7,8], [4,3,2,1]]) tf.unsorted_segment_prod(c, tf.constant([0, 1, 0]), num_segments=2) # ==> [[ 4, 6, 6, 4], # [5, 6, 7, 8]]
指定されたセグメント ID i
のエントリがない場合は、1 を出力します。
指定されたセグメント ID i
が負の場合、対応する値は削除され、結果には含まれません。
引数:
- スコープ:スコープオブジェクト
- segment_ids: 形状が
data.shape
のプレフィックスであるテンソル。
戻り値:
-
Output
: 最初のsegment_ids.rank
ディメンションは、サイズがnum_segments
の単一ディメンションに置き換えられます。
コンストラクターとデストラクター | |
---|---|
UnsortedSegmentProd (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
公共機能
未分類セグメント製品
UnsortedSegmentProd( 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