Scatters tensor at indices in an input list.
tf.raw_ops.TensorListScatterIntoExistingList(
input_handle, tensor, indices, name=None
)
Each member of the TensorList corresponds to one row of the input tensor,
specified by the given index (see tf.gather
).
input_handle: The list to scatter into. tensor: The input tensor. indices: The indices used to index into the list. output_handle: The TensorList.
Args | |
---|---|
input_handle
|
A Tensor of type variant .
|
tensor
|
A Tensor .
|
indices
|
A Tensor of type int32 .
|
name
|
A name for the operation (optional). |
Returns | |
---|---|
A Tensor of type variant .
|