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

org.tensorflow.op.PrimitiveOp
final boolean
equals(Object obj)
final int
Operation
op()
Returns the underlying Operation
final String
boolean
equals(Object arg0)
final Class<?>
getClass()
int
hashCode()
final void
notify()
final void
notifyAll()
String
toString()
final void
wait(long arg0, int arg1)
final void
wait(long arg0)
final void
wait()
org.tensorflow.Operand
abstract Output<Object>
asOutput()
Returns the symbolic handle of a tensor.

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.