tf.dynamic_stitch
tf.dynamic_stitch
tf.dynamic_stitch
dynamic_stitch( indices, data, name=None )
Defined in tensorflow/python/ops/gen_data_flow_ops.py
.
See the guide: Tensor Transformations > Slicing and Joining
Interleave the values from the data
tensors into a single tensor.
Builds a merged tensor such that
merged[indices[m][i, ..., j], ...] = data[m][i, ..., j, ...]
For example, if each indices[m]<