tensorflow :: ops :: DynamicStitch
#include <data_flow_ops.h>
data
テンソルからの値を単一のテンソルにインターリーブします。
概要
次のようなマージされたテンソルを構築します
merged[indices[m][i, ..., j], ...] = data[m][i, ..., j, ...]
たとえば、各indices[m]
がスカラーまたはベクトルの場合、次のようになります。
# Scalar indices: merged[indices[m], ...] = data[m][...]
# Vector indices: merged[indices[m][i], ...] = data[m][i, ...]
各data[i].shape
対応して開始しなければならないindices[i].shape
、及び残りのdata[i].shape
WRTでなければならない一定のi
。つまり、 data[i].shape = indices[i].shape + constant
です。このconstant
に関して、出力形状は
merged.shape = [max(indices)] + constantです。
値は順番にマージされるため、 (m,i) < (n,j)
のindices[m][i]
とindices[n][j]
両方にインデックスが表示される場合、スライスdata[n][j]
は次のようになります。マージされた結果に表示されます。この保証が必要ない場合、 ParallelDynamicStitchは一部のデバイスでパフォーマンスが向上する可能性があります。
例えば:
indices[0] = 6 indices[1] = [4, 1] indices[2] = [[5, 2], [0, 3]] data[0] = [61, 62] data[1] = [[41, 42], [11, 12]] data[2] = [[[51, 52], [21, 22]], [[1, 2], [31, 32]]] merged = [[1, 2], [11, 12], [21, 22], [31, 32], [41, 42], [51, 52], [61, 62]]
このメソッドは、次の例に示すように、 dynamic_partition
によって作成されたパーティションをマージするために使用できます。
# Apply function (increments x_i) on elements for which a certain condition # apply (x_i != -1 in this example). x=tf.constant([0.1, -1., 5.2, 4.3, -1., 7.4]) condition_mask=tf.not_equal(x,tf.constant(-1.)) partitioned_data = tf.dynamic_partition( x, tf.cast(condition_mask, tf.int32) , 2) partitioned_data[1] = partitioned_data[1] + 1.0 condition_indices = tf.dynamic_partition( tf.range(tf.shape(x)[0]), tf.cast(condition_mask, tf.int32) , 2) x = tf.dynamic_stitch(condition_indices, partitioned_data) # Here x=[1.1, -1., 6.2, 5.3, -1, 8.4], the -1. values remain # unchanged.
引数:
- スコープ:スコープオブジェクト
戻り値:
-
Output
:マージされたテンソル。
コンストラクタとデストラクタ | |
---|---|
DynamicStitch (const :: tensorflow::Scope & scope, :: tensorflow::InputList indices, :: tensorflow::InputList data) |
パブリック属性 | |
---|---|
merged | |
operation |
公の行事 | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
パブリック属性
マージ
::tensorflow::Output merged
操作
Operation operation
公の行事
DynamicStitch
DynamicStitch( const ::tensorflow::Scope & scope, ::tensorflow::InputList indices, ::tensorflow::InputList data )
ノード
::tensorflow::Node * node() const
operator :: tensorflow :: Input
operator::tensorflow::Input() const
operator :: tensorflow :: Output
operator::tensorflow::Output() const