tensorflow::ops::DynamicStitch
#include <data_flow_ops.h>
Перемешивает значения из тензоров data в один тензор.
Summary
Создаёт объединённый тензор таким образом, что
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 должна быть постоянной относительно i. То есть, мы должны иметь data[i].shape = indices[i].shape + constant. С точки зрения этого constant, форма выходного тензора имеет вид
merged.shape = [max(indices)] + constant
Значения объединяются в порядке следования, поэтому, если индекс появляется в indices[m][i] и indices[n][j] для (m,i) < (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.
Аргументы:
- scope: Объект Scope
Возвращает:
-
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 | |
Общедоступные атрибуты
merged
::tensorflow::Output merged
operation
Operation operation
Общедоступные функции
DynamicStitch
DynamicStitch( const ::tensorflow::Scope & scope, ::tensorflow::InputList indices, ::tensorflow::InputList data )
node
::tensorflow::Node * node() const
operator::tensorflow::Input
operator::tensorflow::Input() const
operator::tensorflow::Output
operator::tensorflow::Output() const
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r1.15/api_docs/cc/class/tensorflow/ops/dynamic-stitch