tf.raw_ops.AnonymousMutableHashTableOfTensors

Creates an empty anonymous mutable hash table of vector values.

This op creates a new anonymous mutable hash table (as a resource) everytime it is executed, with the specified dtype of its keys and values, returning the resource handle. Each value must be a vector. Data can be inserted into the table using the insert operations. It does not support the initialization operation. The table is anonymous in the sense that it can only be accessed by the returned resource handle (e.g. it cannot be looked up by a name in a resource manager). The table will be automatically deleted when all resource handles pointing to it are gone.

key_dtype A tf.DType. Type of the table keys.
value_dtype A tf.DType. Type of the table values.
value_shape An optional tf.TensorShape or list of ints. Defaults to [].
name A name for the operation (optional).

A Tensor of type resource.