テンソルフロー::作戦::未分類セグメント結合
#include <string_ops.h>
segment_ids
に基づいてinputs
の要素を結合します。
まとめ
テンソルのセグメントに沿って文字列結合を計算します。ランクN
のsegment_ids
とランクN+M
のdata
与えられた場合:
`output[i, k1...kM] = strings.join([data[j1...jN, k1...kM])`
ここで、結合は [j1...jN] 全体にわたって行われ、segment_ids[j1...jN] = i となります。文字列は行優先の順序で結合されます。
例えば:
inputs = [['Y', 'q', 'c'], ['Y', '6', '6'], ['p', 'G', 'a']] output_array = string_ops.unsorted_segment_join(inputs=inputs, segment_ids=[1, 0, 1], num_segments=2, separator=':')) # output_array ==> [['Y', '6', '6'], ['Y:p', 'q:G', 'c:a']]
inputs = ['this', 'is', 'a', 'test'] output_array = string_ops.unsorted_segment_join(inputs=inputs, segment_ids=[0, 0, 0, 0], num_segments=1, separator=':')) # output_array ==> ['this:is:a:test']
引数:
- スコープ:スコープオブジェクト
- inputs: 結合される入力。
- segment_ids: 形状が data.shape のプレフィックスであるテンソル。負のセグメント ID はサポートされていません。
- num_segments: スカラー。
オプションの属性 ( Attrs
を参照):
- separator: 結合するときに使用するセパレータ。
戻り値:
-
Output
: 出力テンソル。
コンストラクターとデストラクター | |
---|---|
UnsortedSegmentJoin (const :: tensorflow::Scope & scope, :: tensorflow::Input inputs, :: tensorflow::Input segment_ids, :: tensorflow::Input num_segments) | |
UnsortedSegmentJoin (const :: tensorflow::Scope & scope, :: tensorflow::Input inputs, :: tensorflow::Input segment_ids, :: tensorflow::Input num_segments, const UnsortedSegmentJoin::Attrs & attrs) |
パブリック属性 | |
---|---|
operation | |
output |
公共機能 | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
パブリック静的関数 | |
---|---|
Separator (StringPiece x) |
構造体 | |
---|---|
tensorflow:: ops:: UnsortedSegmentJoin:: Attrs | UnsortedSegmentJoinのオプションの属性セッター。 |
パブリック属性
手術
Operation operation
出力
::tensorflow::Output output
公共機能
未分類セグメント結合
UnsortedSegmentJoin( const ::tensorflow::Scope & scope, ::tensorflow::Input inputs, ::tensorflow::Input segment_ids, ::tensorflow::Input num_segments )
未分類セグメント結合
UnsortedSegmentJoin( const ::tensorflow::Scope & scope, ::tensorflow::Input inputs, ::tensorflow::Input segment_ids, ::tensorflow::Input num_segments, const UnsortedSegmentJoin::Attrs & attrs )
ノード
::tensorflow::Node * node() const
演算子::tensorflow::入力
operator::tensorflow::Input() const
演算子::tensorflow::出力
operator::tensorflow::Output() const
パブリック静的関数
セパレータ
Attrs Separator( StringPiece x )