Scatter the data from the input value into specific TensorArray elements.
tf.raw_ops.TensorArrayScatterV3(
handle, indices, value, flow_in, name=None
)
indices must be a vector, its length must match the first dim of value.
Args |
|---|
handle
Tensor of type resource. The handle to a TensorArray.
indices
Tensor of type int32.
The locations at which to write the tensor elements.
value
Tensor. The concatenated tensor to write to the TensorArray.
flow_in
Tensor of type float32.
A float scalar that enforces proper chaining of operations.
name
Returns | |
|---|---|
A Tensor of type float32.
|