Creates and returns an empty tensor list.
tf.raw_ops.EmptyTensorList(
    element_shape, max_num_elements, element_dtype, name=None
)
All list elements must be tensors of dtype element_dtype and shape compatible with element_shape.
handle: an empty tensor list. element_dtype: the type of elements in the list. element_shape: a shape compatible with that of elements in the list.
Args | |
|---|---|
element_shape
 | 
A Tensor. Must be one of the following types: int32, int64.
 | 
max_num_elements
 | 
A Tensor of type int32.
 | 
element_dtype
 | 
A tf.DType.
 | 
name
 | 
A name for the operation (optional). | 
Returns | |
|---|---|
A Tensor of type variant.
 |