AnonymousMutableHashTable

public final class AnonymousMutableHashTable

Creates an empty anonymous mutable hash table.

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 scalar. 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.

Public Methods

Output<Object>
asOutput()
Returns the symbolic handle of a tensor.
static <T, U> AnonymousMutableHashTable
create(Scope scope, Class<T> keyDtype, Class<U> valueDtype)
Factory method to create a class wrapping a new AnonymousMutableHashTable operation.
Output<?>
tableHandle()
The resource handle to the newly created hash-table resource.

Inherited Methods

Public Methods

public Output<Object> asOutput ()

Returns the symbolic handle of a tensor.

Inputs to TensorFlow operations are outputs of another TensorFlow operation. This method is used to obtain a symbolic handle that represents the computation of the input.

public static AnonymousMutableHashTable create (Scope scope, Class<T> keyDtype, Class<U> valueDtype)

Factory method to create a class wrapping a new AnonymousMutableHashTable operation.

Parameters
scope current scope
keyDtype Type of the table keys.
valueDtype Type of the table values.
Returns
  • a new instance of AnonymousMutableHashTable

public Output<?> tableHandle ()

The resource handle to the newly created hash-table resource.