tf.TensorArray.handle The reference to the TensorArray.
class tf.TensorArray Class wrapping dynamic-sized, per-time-step, write-once Tensor arrays. This
tf.TensorArray.size(name=None) Return the size of the TensorArray.
tf.TensorArray.scatter(indices, value, name=None) Scatter the values of a Tensor in specific indices of a TensorArray
tf.TensorArray.read(index, name=None) Read the value at location index in the TensorArray.
tf.TensorArray.concat(name=None) Return the values in the TensorArray as a concatenated Tensor. All
tf.TensorArray.__init__(dtype, size=None, dynamic_size=None, clear_after_read=None, tensor_array_name=None, handle=None, flow=None, infer_shape=True, name=None)
tf.TensorArray.grad(source, flow=None, name=None)
tf.TensorArray.split(value, lengths, name=None) Split the values of a Tensor into the TensorArray.
tf.TensorArray.pack(name=None) Return the values in the TensorArray as a packed Tensor. All
Page 1 of 2