Concat the elements from the TensorArray into value value.
tf.raw_ops.TensorArrayConcatV3(
    handle, flow_in, dtype, element_shape_except0=None, name=None
)
Takes T elements of shapes
  (n0 x d0 x d1 x ...), (n1 x d0 x d1 x ...), ..., (n(T-1) x d0 x d1 x ...)
and concatenates them into a Tensor of shape:
```(n0 + n1 + ... + n(T-1) x d0 x d1 x ...)```
All elements must have the same shape (excepting the first dimension).
Returns | |
|---|---|
  A tuple of Tensor objects (value, lengths).
   | 
  |
  value
   | 
  
  A Tensor of type dtype.
   | 
  
  lengths
   | 
  
  A Tensor of type int64.
   |