tf.TensorArray.flow

tf.TensorArray.flow The flow Tensor forcing ops leading to this TensorArray state.

tf.TensorArray.handle

tf.TensorArray.handle The reference to the TensorArray.

tf.TensorArray.grad()

tf.TensorArray.grad(source, flow=None, name=None)

tf.TensorArray.read()

tf.TensorArray.read(index, name=None) Read the value at location index in the TensorArray. Args: index: 0-D. int32 tensor with the index to read from. name: A name for the operation (optional). Returns: The tensor at index index.

tf.TensorArray.scatter()

tf.TensorArray.scatter(indices, value, name=None) Scatter the values of a Tensor in specific indices of a TensorArray. Args: indices: A 1-D Tensor taking values in [0, max_value). If the TensorArray is not dynamic, max_value=size(). value: (N+1)-D. Tensor of type dtype. The Tensor to unpack. name: A name for the operation (optional). Returns: A new TensorArray object with flow that ensures the scatter occurs. Use this object all for subsequent operations. Raises: ValueError: if the shape

tf.TensorArray.pack()

tf.TensorArray.pack(name=None) Return the values in the TensorArray as a packed Tensor. All of the values must have been written and their shapes must all match. Args: name: A name for the operation (optional). Returns: All the tensors in the TensorArray packed into one tensor.

tf.TensorArray.concat()

tf.TensorArray.concat(name=None) Return the values in the TensorArray as a concatenated Tensor. All of the values must have been written, their ranks must match, and and their shapes must all match for all dimensions except the first. Args: name: A name for the operation (optional). Returns: All the tensors in the TensorArray concatenated into one tensor.

tf.TensorArray.close()

tf.TensorArray.close(name=None) Close the current TensorArray.

tf.tan()

tf.tan(x, name=None) Computes tan of x element-wise. Args: x: A Tensor. Must be one of the following types: half, float32, float64, int32, int64, complex64, complex128. name: A name for the operation (optional). Returns: A Tensor. Has the same type as x.

tf.TensorArray.dtype

tf.TensorArray.dtype The data type of this TensorArray.