tf.TensorArray.gather(indices, name=None)
Return selected values in the TensorArray as a packed Tensor.
All of selected values must have been written and their shapes must all match.
Args:
-
indices: A1-DTensortaking values in[0, max_value). If theTensorArrayis not dynamic,max_value=size(). -
name: A name for the operation (optional).
Returns:
The in the TensorArray selected by indices, packed into one tensor.
Please login to continue.